Update jquery.ime and jquery.uls from upstream

jquery.ime:
* Add Nuer keyboard

Updating to
2c27ec2da3

jquery.uls
* Localization updates: de-formal, kcg, nap, pt-br, sl
* language-data updates:
** Add languages nus, rhg, rmc
** Add variants pap-aw, tly-cyrl
** Update Talysh (tly) autonym (see I552e07967 for details)
** Add Rohingya Hanifi script

Updating to
1bed61638b

Change-Id: I4412ccf4e1ce01718d55490a5d938e981da25a40
This commit is contained in:
Amir Aharoni
2021-03-01 12:39:51 +02:00
parent bb815d5d0d
commit 1414007810
8 changed files with 87 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20210115
/*! jquery.ime - v0.2.0+20210301
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2021 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -2219,6 +2219,10 @@
name: 'Sesotho sa Leboa tilde',
source: 'rules/nso/nso-tilde.js'
},
'nus-tilde': {
name: 'Thok Naath tilde',
source: 'rules/nus/nus-tilde.js'
},
'or-inscript': {
name: 'ଇନସ୍କ୍ରିପ୍ଟ',
source: 'rules/or/or-inscript.js'
@@ -2859,6 +2863,10 @@
autonym: 'Sesotho sa Leboa',
inputmethods: [ 'nso-tilde' ]
},
nus: {
autonym: 'Thok Naath',
inputmethods: [ 'nus-tilde' ]
},
or: {
autonym: 'ଓଡ଼ିଆ',
inputmethods: [ 'or-phonetic', 'or-transliteration', 'or-inscript', 'or-inscript2', 'or-lekhani', 'or-OdiScript' ]

View File

@@ -0,0 +1,28 @@
( function ( $ ) {
'use strict';
var nusTilde = {
id: 'nus-tilde',
name: 'nus-tilde',
description: 'Nuer input keyboard',
date: '2021-01-18',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~:', '\u0308' ], // Combining diaeresis
[ '~_', '\u0331' ] // Combining macron below
]
};
$.ime.register( nusTilde );
}( jQuery ) );