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
26 lines
544 B
JavaScript
26 lines
544 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var lnTilde = {
|
|
id: 'ln-tilde',
|
|
name: 'ln-tilde',
|
|
description: 'Lingala tilde keyboard',
|
|
date: '2019-03-28',
|
|
URL: 'https://github.com/wikimedia/jquery.ime',
|
|
author: 'Amir E. Aharoni',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
patterns: [
|
|
[ '~E', 'Ɛ' ],
|
|
[ '~e', 'ɛ' ],
|
|
[ '~O', 'Ɔ' ],
|
|
[ '~o', 'ɔ' ],
|
|
[ '~/', '\u0301' ], // Combining acute
|
|
[ '~\\^', '\u0302' ], // Combining circumflex
|
|
[ '~v', '\u030C' ] // Combining caron
|
|
]
|
|
};
|
|
|
|
$.ime.register( lnTilde );
|
|
}( jQuery ) );
|