Update jquery.ime and jquery.uls from upstream

jquery.ime
* Add Chinook Wawa keyboard.
* Update Mon autonym.
Updating to
dc51208212

jquery.uls:
* Updating language-data, adding Ebira (igb),
  Nupe (nup), Petjoh (pey).
* Localization updates.
Updating to
dedb291973

Bug: T352776
Bug: T355277
Bug: T356104
Bug: T356248
Bug: T356616
Change-Id: Id828963bcc9b02b1c2aafa83b96e7c12e9b4fcf3
This commit is contained in:
Amir E. Aharoni
2024-02-17 16:13:54 -05:00
parent 9f51218bd5
commit 5050b1fff5
6 changed files with 67 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
( function ( $ ) {
'use strict';
var chnTilde = {
id: 'chn-tilde',
name: 'chn-tilde',
description: 'Chinook Jargon input keyboard - tilde',
date: '2024-02-07',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ə' ],
[ '~e', 'ə' ],
[ '~h', 'ʰ' ],
[ '~H', 'ʰ' ],
[ '~L', 'Ɬ' ],
[ '~l', 'ɬ' ],
[ '~X', 'X̣' ],
[ '~x', 'x̣' ],
[ '~\\?', 'ʔ' ]
]
};
$.ime.register( chnTilde );
}( jQuery ) );