Changes:
* New tilde-based layouts for several languages of Africa:
Kabyle, Kabiye, Kikuyu, Luganda, Lingala, Malagasy,
Northern Sotho, Koyraboro Senni, Sango, Sotho, Venda
* Latin Pinyin transliteration keyboard
https://github.com/wikimedia/jquery.ime/pull/545
* CSS and JS cleanup, to switch to stylelint and eslint.
Updating to
22407cf992
Bug: T212637
Change-Id: I167e572a6cc0f7c1c727e87e8ff361d88f87b40f
50 lines
1018 B
JavaScript
50 lines
1018 B
JavaScript
( 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 ) );
|