Major update of jquery.ime from upstream
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
This commit is contained in:
40
lib/jquery.ime/rules/ses/ses-tilde.js
Normal file
40
lib/jquery.ime/rules/ses/ses-tilde.js
Normal file
@@ -0,0 +1,40 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var sesTilde = {
|
||||
id: 'ses-tilde',
|
||||
name: 'ses-tilde',
|
||||
description: 'Koyraboro Senni Songhay input keyboard - tilde',
|
||||
date: '2019-01-22',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~A', 'Ã' ],
|
||||
[ '~a', 'ã' ],
|
||||
[ '~E', 'Ẽ' ],
|
||||
[ '~e', 'ẽ' ],
|
||||
[ '~I', 'Ĩ' ],
|
||||
[ '~i', 'ĩ' ],
|
||||
[ '~O', 'Õ' ],
|
||||
[ '~o', 'õ' ],
|
||||
[ '~U', 'Ũ' ],
|
||||
[ '~u', 'ũ' ],
|
||||
[ '~G', 'Ŋ' ],
|
||||
[ '~g', 'ŋ' ],
|
||||
[ '~Y', 'Ɲ' ],
|
||||
[ '~y', 'ɲ' ],
|
||||
[ '~S', 'Š' ],
|
||||
[ '~s', 'š' ],
|
||||
[ '~Z', 'Ž' ],
|
||||
[ '~z', 'ž' ],
|
||||
[ '~\\\\', '\u0300' ], // Combining grave
|
||||
[ '~/', '\u0301' ], // Combining acute
|
||||
[ '~\\^', '\u0302' ], // Combining circumflex
|
||||
[ '~v', '\u030C' ] // Combining caron
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( sesTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user