Update jquery.ime and jquery.uls from upstream
ime: * Add keyboards for Basaa and Kom **e2548891a9uls: * Update language-data: add bas, bkm, bzj **4495850b9cChange-Id: If0c6a6eca32319082fad954103b35c89164ab251
This commit is contained in:
29
lib/jquery.ime/rules/bas/bas-tilde.js
Normal file
29
lib/jquery.ime/rules/bas/bas-tilde.js
Normal file
@@ -0,0 +1,29 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var basTilde = {
|
||||
id: 'bas-tilde',
|
||||
name: 'bas-tilde',
|
||||
description: 'Basaa tilde keyboard',
|
||||
date: '2021-03-31',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~B', 'Ɓ' ],
|
||||
[ '~b', 'ɓ' ],
|
||||
[ '~E', 'Ɛ' ],
|
||||
[ '~e', 'ɛ' ],
|
||||
[ '~N', 'Ŋ' ],
|
||||
[ '~n', 'ŋ' ],
|
||||
[ '~O', 'Ɔ' ],
|
||||
[ '~o', 'ɔ' ],
|
||||
[ '~\\\\', '\u0300' ], // Combining grave accent
|
||||
[ '~/', '\u0301' ], // Combining acute accent
|
||||
[ '~\\^', '\u0302' ] // Combining circumflex accent
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( basTilde );
|
||||
}( jQuery ) );
|
||||
41
lib/jquery.ime/rules/bkm/bkm-tilde.js
Normal file
41
lib/jquery.ime/rules/bkm/bkm-tilde.js
Normal file
@@ -0,0 +1,41 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var bkmTilde = {
|
||||
id: 'bkm-tilde',
|
||||
name: 'bkm-tilde',
|
||||
description: 'Kom tilde keyboard',
|
||||
date: '2021-03-31',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
maxKeyLength: 2,
|
||||
patterns: [
|
||||
[ 'AE', 'Æ' ],
|
||||
[ 'Ae', 'Æ' ],
|
||||
[ 'ae', 'æ' ],
|
||||
[ 'A~E', 'AE' ],
|
||||
[ 'A~e', 'Ae' ],
|
||||
[ 'a~e', 'ae' ],
|
||||
[ '~A', 'Æ' ],
|
||||
[ '~a', 'æ' ],
|
||||
[ '~I', 'Ɨ' ],
|
||||
[ '~i', 'ɨ' ],
|
||||
[ '~N', 'Ŋ' ],
|
||||
[ '~n', 'ŋ' ],
|
||||
[ 'OE', 'Œ' ],
|
||||
[ 'Oe', 'Œ' ],
|
||||
[ 'oe', 'œ' ],
|
||||
[ 'O~E', 'OE' ],
|
||||
[ 'O~e', 'Oe' ],
|
||||
[ 'o~e', 'oe' ],
|
||||
[ '~O', 'Œ' ],
|
||||
[ '~o', 'œ' ],
|
||||
[ '~\\\\', '\u0300' ], // Combining grave accent
|
||||
[ '~\\^', '\u0302' ] // Combining circumflex accent
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( bkmTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user