Update jquery.ime and jquery.uls from upstream
jquery.ime: * Add Nawdm tilde keyboard. Updating toe81108e70cjquery.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 tobc2f80a811Change-Id: If5efad6835b5550ffabe58e624177cbe80906557
This commit is contained in:
@@ -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' ]
|
||||
|
||||
29
lib/jquery.ime/rules/nmz/nmz-tilde.js
Normal file
29
lib/jquery.ime/rules/nmz/nmz-tilde.js
Normal 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 ) );
|
||||
Reference in New Issue
Block a user