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:
28
lib/jquery.ime/rules/ve/ve-tilde.js
Normal file
28
lib/jquery.ime/rules/ve/ve-tilde.js
Normal file
@@ -0,0 +1,28 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var veTilde = {
|
||||
id: 've-tilde',
|
||||
name: 've-tilde',
|
||||
description: 'Venda input keyboard',
|
||||
date: '2018-12-02',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~D', 'Ḓ' ],
|
||||
[ '~d', 'ḓ' ],
|
||||
[ '~L', 'Ḽ' ],
|
||||
[ '~l', 'ḽ' ],
|
||||
[ '~N', 'Ṋ' ],
|
||||
[ '~n', 'ṋ' ],
|
||||
[ '~T', 'Ṱ' ],
|
||||
[ '~t', 'ṱ' ],
|
||||
[ '`N', 'Ṅ' ],
|
||||
[ '`n', 'ṅ' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( veTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user