Update jquery.ime from upstream
* Fixed Arabic keyboard name.
* Renamed Akan keyboard and made it usable also for Twi.
* Added Ga keyboard.
* Added Dinka keyboard.
Updating to
e3a6368df0
Change-Id: I310fb8e33555a704ea23bbbf1ba720b46158323b
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
var defs = {
|
||||
id: 'ak-qx',
|
||||
name: 'Akan - QX replacement',
|
||||
name: 'QX replacement',
|
||||
description: 'Akan input method with Q and X replaced by Ɛ and Ɔ',
|
||||
date: '2016-06-23',
|
||||
URL: 'http://www.kasahorow.org/node/260',
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
var arKbd = {
|
||||
id: 'ar-kbd',
|
||||
name: 'kbd',
|
||||
description: 'Arabic keyboard layout',
|
||||
description: 'PC Arabic keyboard layout',
|
||||
date: '2013-02-09',
|
||||
URL: 'http://github.com/wikimedia/jquery.ime',
|
||||
author: 'Parag Nemade',
|
||||
|
||||
49
lib/jquery.ime/rules/din/din-fqsx.js
Normal file
49
lib/jquery.ime/rules/din/din-fqsx.js
Normal file
@@ -0,0 +1,49 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var defs = {
|
||||
id: 'din-fqsx',
|
||||
name: 'FQSX replacement',
|
||||
description: 'Dinka input method with F, Q, S and X replaced by Ɣ, Ŋ, Ɛ, and Ɔ',
|
||||
date: '2017-04-26',
|
||||
URL: 'http://keymanweb.com/#dib,Keyboard_dinkaweb11',
|
||||
author: 'Amir E. Aharoni, based on Keyman',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
contextLength: 2,
|
||||
maxKeyLength: 2,
|
||||
patterns: [
|
||||
[ '\\\\F', 'F' ],
|
||||
[ '\\\\f', 'f' ],
|
||||
[ '\\\\Q', 'Q' ],
|
||||
[ '\\\\q', 'q' ],
|
||||
[ '\\\\S', 'S' ],
|
||||
[ '\\\\s', 's' ],
|
||||
[ '\\\\X', 'X' ],
|
||||
[ '\\\\x', 'x' ],
|
||||
[ '\\\\;', ';' ],
|
||||
[ 'A;', 'Ä' ],
|
||||
[ 'a;', 'ä' ],
|
||||
[ 'E;', 'Ë' ],
|
||||
[ 'e;', 'ë' ],
|
||||
[ 'Ɛ;', 'Ɛ̈' ],
|
||||
[ 'ɛ;', 'ɛ̈' ],
|
||||
[ 'I;', 'Ï' ],
|
||||
[ 'i;', 'ï' ],
|
||||
[ 'O;', 'Ö' ],
|
||||
[ 'o;', 'ö' ],
|
||||
[ 'Ɔ;', 'Ɔ̈' ],
|
||||
[ 'ɔ;', 'ɔ̈' ],
|
||||
[ 'F', 'Ɣ' ],
|
||||
[ 'f', 'ɣ' ],
|
||||
[ 'Q', 'Ŋ' ],
|
||||
[ 'q', 'ŋ' ],
|
||||
[ 'S', 'Ɛ' ],
|
||||
[ 's', 'ɛ' ],
|
||||
[ 'X', 'Ɔ' ],
|
||||
[ 'x', 'ɔ' ]
|
||||
],
|
||||
};
|
||||
|
||||
$.ime.register( defs );
|
||||
}( jQuery ) );
|
||||
26
lib/jquery.ime/rules/gaa/gaa-cqx.js
Normal file
26
lib/jquery.ime/rules/gaa/gaa-cqx.js
Normal file
@@ -0,0 +1,26 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var defs = {
|
||||
id: 'gaa-cqx',
|
||||
name: 'Ga - CQX replacement',
|
||||
description: 'Ga input method with C, Q and X replaced by Ŋ, Ɛ and Ɔ',
|
||||
date: '2016-06-23',
|
||||
URL: 'http://www.kasahorow.org/node/260',
|
||||
author: 'Amir E. Aharoni, based on Kasahorow Akan',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
contextLength: 1,
|
||||
maxKeyLength: 1,
|
||||
patterns: [
|
||||
[ 'C', 'Ŋ' ],
|
||||
[ 'c', 'ŋ' ],
|
||||
[ 'Q', 'Ɛ' ],
|
||||
[ 'q', 'ɛ' ],
|
||||
[ 'X', 'Ɔ' ],
|
||||
[ 'x', 'ɔ' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( defs );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user