Update jquery.ime and jquery.uls from upstream

jquery.ime
* Add layouts for Nyanja/Chichewa (ny) and Tumbuka (tum).
* Fix layout name for Bura (bwr)
* Add macron to the Ewe (ee) keyboard
Updating to:
fa2fb33e12

jquery.uls
* Localization updates
Updating to:
5ad9937ac6

Change-Id: Id599d7ce882ae6c2a744a15691a9e56059d7dac9
This commit is contained in:
Amir E. Aharoni
2022-06-27 13:24:25 +03:00
parent 321f9ab395
commit 6d8bda5553
7 changed files with 102 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
( function ( $ ) {
'use strict';
var tumTilde = {
id: 'tum-tilde',
name: 'tum-tilde',
description: 'ChiTumbuka tilde keyboard',
date: '2022-06-16',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~W', 'Ŵ' ],
[ '~w', 'ŵ' ],
[ '~\\^', '\u0302' ] // Combining circumflex
]
};
$.ime.register( tumTilde );
}( jQuery ) );