Update jquery.ime to 839fa42
Changes: * Fix bug T102455 in Punjabi. * Add Akan language keyboard. Bug: T102455 Change-Id: I144e1cde2bb2bc7fa38a7620ef621f7ec0a32285
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
/*! jquery.ime - v0.1.0+20160620
|
/*! jquery.ime - v0.1.0+20160712
|
||||||
* https://github.com/wikimedia/jquery.ime
|
* https://github.com/wikimedia/jquery.ime
|
||||||
* Copyright (c) 2016 Santhosh Thottingal; Licensed GPL, MIT */
|
* Copyright (c) 2016 Santhosh Thottingal; Licensed GPL, MIT */
|
||||||
( function ( $ ) {
|
( function ( $ ) {
|
||||||
@@ -1690,6 +1690,10 @@
|
|||||||
name: 'ትራንስልተራትዖን',
|
name: 'ትራንስልተራትዖን',
|
||||||
source: 'rules/am/am-transliteration.js'
|
source: 'rules/am/am-transliteration.js'
|
||||||
},
|
},
|
||||||
|
'ak-qx': {
|
||||||
|
name: 'Akan - QX replacement',
|
||||||
|
source: 'rules/ak/ak-qx.js'
|
||||||
|
},
|
||||||
'ar-kbd': {
|
'ar-kbd': {
|
||||||
name: 'أرابيك',
|
name: 'أرابيك',
|
||||||
source: 'rules/ar/ar-kbd.js'
|
source: 'rules/ar/ar-kbd.js'
|
||||||
@@ -2318,6 +2322,10 @@
|
|||||||
autonym: 'अहिराणी',
|
autonym: 'अहिराणी',
|
||||||
inputmethods: [ 'mr-transliteration', 'mr-inscript' ]
|
inputmethods: [ 'mr-transliteration', 'mr-inscript' ]
|
||||||
},
|
},
|
||||||
|
ak: {
|
||||||
|
autonym: 'Akan',
|
||||||
|
inputmethods: [ 'ak-qx' ]
|
||||||
|
},
|
||||||
am: {
|
am: {
|
||||||
autonym: 'አማርኛ',
|
autonym: 'አማርኛ',
|
||||||
inputmethods: [ 'am-transliteration' ]
|
inputmethods: [ 'am-transliteration' ]
|
||||||
|
|||||||
24
lib/jquery.ime/rules/ak/ak-qx.js
Normal file
24
lib/jquery.ime/rules/ak/ak-qx.js
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
( function ( $ ) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var defs = {
|
||||||
|
id: 'ak-qx',
|
||||||
|
name: 'Akan - QX replacement',
|
||||||
|
description: 'Akan input method with Q and X replaced by Ɛ and Ɔ',
|
||||||
|
date: '2016-06-23',
|
||||||
|
URL: 'http://www.kasahorow.org/node/260',
|
||||||
|
author: 'Amir E. Aharoni, based on Kasahorow',
|
||||||
|
license: 'GPLv3',
|
||||||
|
version: '1.0',
|
||||||
|
contextLength: 1,
|
||||||
|
maxKeyLength: 1,
|
||||||
|
patterns: [
|
||||||
|
[ 'Q', 'Ɛ' ],
|
||||||
|
[ 'q', 'ɛ' ],
|
||||||
|
[ 'X', 'Ɔ' ],
|
||||||
|
[ 'x', 'ɔ' ]
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
$.ime.register( defs );
|
||||||
|
}( jQuery ) );
|
||||||
@@ -65,8 +65,8 @@
|
|||||||
[ 'L', 'ਲ਼' ],
|
[ 'L', 'ਲ਼' ],
|
||||||
[ 'l', 'ਲ' ],
|
[ 'l', 'ਲ' ],
|
||||||
[ '\\', 'ਙ' ],
|
[ '\\', 'ਙ' ],
|
||||||
[ '\\~', '?ੱ' ],
|
[ '\\~', 'ੱ' ],
|
||||||
[ '\\`', '?੍ ' ],
|
[ '\\`', '੍' ],
|
||||||
[ 'Z', 'ਗ਼' ],
|
[ 'Z', 'ਗ਼' ],
|
||||||
[ 'z', 'ਜ਼' ],
|
[ 'z', 'ਜ਼' ],
|
||||||
[ 'X', 'ਯ' ],
|
[ 'X', 'ਯ' ],
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
[ 'm', 'ਮ' ],
|
[ 'm', 'ਮ' ],
|
||||||
[ '\\<', 'ਖ਼' ],
|
[ '\\<', 'ਖ਼' ],
|
||||||
[ '\\>', 'ੴ' ],
|
[ '\\>', 'ੴ' ],
|
||||||
[ '\\.', '?਼' ],
|
[ '\\.', '।' ],
|
||||||
[ '\\?', '?' ],
|
[ '\\?', '?' ],
|
||||||
[ '\\/', 'ਞ' ],
|
[ '\\/', 'ਞ' ],
|
||||||
[ '%', '੫' ],
|
[ '%', '੫' ],
|
||||||
|
|||||||
Reference in New Issue
Block a user