Update jquery.ime and jquery.uls from upstream
jquery.ime: * Add tilde layouts for: Edo (bin), Ekpeye (ekp), Jakaltek (jac), and Wali (wlx). Updating to9a413337e5jquery.uls: * Update language-data. Add bin, ekp, hke, isv/isv-cyrl/isv-latn, jac, lue, toi, wlx * Update autonym: ku-arab, tdd Updating to:0c657dceafChange-Id: I66e90fb414f032d0c6a5a8aa238e1663f8874381
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*! jquery.ime - v0.2.0+20240513
|
||||
/*! jquery.ime - v0.2.0+20240703
|
||||
* https://github.com/wikimedia/jquery.ime
|
||||
* Copyright (c) 2024 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
|
||||
( function ( $ ) {
|
||||
@@ -1746,6 +1746,10 @@
|
||||
name: 'روچ کپتین بلوچی',
|
||||
source: 'rules/bgn/bgn-kbd.js'
|
||||
},
|
||||
'bin-tilde': {
|
||||
name: 'Edo tilde',
|
||||
source: 'rules/bin/bin-tilde.js'
|
||||
},
|
||||
'bkm-tilde': {
|
||||
name: 'Kom tilde',
|
||||
source: 'rules/bkm/bkm-tilde.js'
|
||||
@@ -1886,6 +1890,10 @@
|
||||
name: 'Efik - tilde',
|
||||
source: 'rules/efi/efi-tilde.js'
|
||||
},
|
||||
'ekp-tilde': {
|
||||
name: 'Ẹkpeye',
|
||||
source: 'rules/ekp/ekp-tilde.js'
|
||||
},
|
||||
'el-kbd': {
|
||||
name: 'Τυπική πληκτρολόγιο',
|
||||
source: 'rules/el/el-kbd.js'
|
||||
@@ -2066,6 +2074,10 @@
|
||||
name: 'Esan Awain tilde',
|
||||
source: 'rules/ish/ish-tilde.js'
|
||||
},
|
||||
'jac-tilde': {
|
||||
name: 'Jakaltek tilde',
|
||||
source: 'rules/jac/jac-tilde.js'
|
||||
},
|
||||
'jv-transliteration': {
|
||||
name: 'Transliteration',
|
||||
source: 'rules/jv/jv-transliteration.js'
|
||||
@@ -2592,6 +2604,10 @@
|
||||
name: 'Vèneto',
|
||||
source: 'rules/vec/vec-GVU.js'
|
||||
},
|
||||
'wlx-tilde': {
|
||||
name: 'Waale tilde',
|
||||
source: 'rules/wlx/wlx-tilde.js'
|
||||
},
|
||||
'wo-alt': {
|
||||
name: 'Wolof Alt',
|
||||
source: 'rules/wo/wo-alt.js'
|
||||
@@ -2692,6 +2708,10 @@
|
||||
autonym: 'روچ کپتین بلوچی',
|
||||
inputmethods: [ 'bgn-kbd' ]
|
||||
},
|
||||
bin: {
|
||||
autonym: 'Ẹdo',
|
||||
inputmethods: [ 'bin-tilde' ]
|
||||
},
|
||||
bho: {
|
||||
autonym: 'भोजपुरी',
|
||||
inputmethods: [ 'hi-transliteration' ]
|
||||
@@ -2804,6 +2824,10 @@
|
||||
autonym: 'efịk',
|
||||
inputmethods: [ 'efi-tilde' ]
|
||||
},
|
||||
ekp: {
|
||||
autonym: 'ẹkpeye',
|
||||
inputmethods: [ 'ekp-tilde' ]
|
||||
},
|
||||
el: {
|
||||
autonym: 'Ελληνικά',
|
||||
inputmethods: [ 'el-kbd' ]
|
||||
@@ -2912,6 +2936,10 @@
|
||||
autonym: 'awain',
|
||||
inputmethods: [ 'ish-tilde' ]
|
||||
},
|
||||
jac: {
|
||||
autonym: 'Abꞌxubꞌal Poptiꞌ',
|
||||
inputmethods: [ 'jac-tilde' ]
|
||||
},
|
||||
jv: {
|
||||
autonym: 'ꦧꦱꦗꦮ (Basa Jawa)',
|
||||
inputmethods: [ 'jv-transliteration', 'jv-keyboard' ]
|
||||
@@ -3264,6 +3292,10 @@
|
||||
autonym: 'Vèneto',
|
||||
inputmethods: [ 'vec-GVU' ]
|
||||
},
|
||||
wlx: {
|
||||
autonym: 'Waale',
|
||||
inputmethods: [ 'wlx-tilde' ]
|
||||
},
|
||||
wo: {
|
||||
autonym: 'Wolof',
|
||||
inputmethods: [ 'wo-alt', 'wo-tilde' ]
|
||||
|
||||
22
lib/jquery.ime/rules/bin/bin-tilde.js
Normal file
22
lib/jquery.ime/rules/bin/bin-tilde.js
Normal file
@@ -0,0 +1,22 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var binTilde = {
|
||||
id: 'bin-tilde',
|
||||
name: 'bin-tilde',
|
||||
description: 'Edo input keyboard - tilde',
|
||||
date: '2024-07-01',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~E', 'Ẹ' ],
|
||||
[ '~e', 'ẹ' ],
|
||||
[ '~O', 'Ọ' ],
|
||||
[ '~o', 'ọ' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( binTilde );
|
||||
}( jQuery ) );
|
||||
29
lib/jquery.ime/rules/ekp/ekp-tilde.js
Normal file
29
lib/jquery.ime/rules/ekp/ekp-tilde.js
Normal file
@@ -0,0 +1,29 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var ekpTilde = {
|
||||
id: 'ekp-tilde',
|
||||
name: 'ekp-tilde',
|
||||
description: 'Ekpeye input keyboard - tilde',
|
||||
date: '2024-05-17',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~E', 'Ẹ' ],
|
||||
[ '~e', 'ẹ' ],
|
||||
[ '~I', 'Ị' ],
|
||||
[ '~i', 'ị' ],
|
||||
[ '~O', 'Ọ' ],
|
||||
[ '~o', 'ọ' ],
|
||||
[ '~U', 'Ụ' ],
|
||||
[ '~u', 'ụ' ],
|
||||
[ '~\\\\', '\u0300' ], // Combining grave
|
||||
[ '~\\^', '\u0302' ], // Combining circumflex
|
||||
[ '~-', '\u0304' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( ekpTilde );
|
||||
}( jQuery ) );
|
||||
23
lib/jquery.ime/rules/jac/jac-tilde.js
Normal file
23
lib/jquery.ime/rules/jac/jac-tilde.js
Normal file
@@ -0,0 +1,23 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var jacTilde = {
|
||||
id: 'jac-tilde',
|
||||
name: 'jac-tilde',
|
||||
description: 'Jakaltek input keyboard',
|
||||
date: '2024-07-03',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~\'', 'ꞌ' ], // Saltillo
|
||||
[ '~n', 'n̈' ],
|
||||
[ '~N', 'N̈' ],
|
||||
[ '~x', 'ẍ' ],
|
||||
[ '~X', 'Ẍ' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( jacTilde );
|
||||
}( jQuery ) );
|
||||
25
lib/jquery.ime/rules/wlx/wlx-tilde.js
Normal file
25
lib/jquery.ime/rules/wlx/wlx-tilde.js
Normal file
@@ -0,0 +1,25 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var wlxTilde = {
|
||||
id: 'wlx-tilde',
|
||||
name: 'Waale tilde',
|
||||
description: 'Waale tilde',
|
||||
date: '2024-07-03',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
maxKeyLength: 2,
|
||||
patterns: [
|
||||
[ '~E', 'Ɛ' ],
|
||||
[ '~e', 'ɛ' ],
|
||||
[ '~N', 'Ŋ' ],
|
||||
[ '~n', 'ŋ' ],
|
||||
[ '~O', 'Ɔ' ],
|
||||
[ '~o', 'ɔ' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( wlxTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user