Update jquery.ime and jquery.uls from upstream

jquery.ime:
* Add Nawdm tilde keyboard.
Updating to
e81108e70c

jquery.uls:
* Add languages: agq, gpe, mcn, nmz
* Split nod to nod (Tai Tham) and nod-thai, and add Tai Tham support
* Change Cyrillic-alphabet languages to lowercase
* Update autonym: ksw
Updating to
bc2f80a811

Change-Id: If5efad6835b5550ffabe58e624177cbe80906557
This commit is contained in:
Amir E. Aharoni
2021-11-10 12:31:33 +02:00
parent 10e15cf0f8
commit 6a68fd98b0
11 changed files with 193 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20211011
/*! jquery.ime - v0.2.0+20211110
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2021 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -2226,6 +2226,10 @@
name: 'Li Niha tilde',
source: 'rules/nia/nia-tilde.js'
},
'nmz-tilde': {
name: 'Nawdm tilde',
source: 'rules/nmz/nmz-tilde.js'
},
'nqo-standard-qwerty': {
name: "N'Ko standard QWERTY",
source: 'rules/nqo/nqo-standard-qwerty.js'
@@ -2886,6 +2890,10 @@
autonym: 'li niha',
inputmethods: [ 'nia-tilde' ]
},
nmz: {
autonym: 'nawdm',
inputmethods: [ 'nmz-tilde' ]
},
nn: {
autonym: 'Norsk (nynorsk)',
inputmethods: [ 'nb-normforms', 'nb-tildeforms' ]

View File

@@ -0,0 +1,29 @@
( function ( $ ) {
'use strict';
var nmzTilde = {
id: 'nmz-tilde',
name: 'nmz-tilde',
description: 'Nawdm tilde keyboard',
date: '2021-11-01',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~H', 'Ĥ' ],
[ '~h', 'ɦ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~:', '\u0308' ] // Combining diaeresis
]
};
$.ime.register( nmzTilde );
}( jQuery ) );