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:
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