Update jquery.ime from upstream

Add Nias tilde keyboard.

Updating to
4fe35290e1

Change-Id: Id91e2040c226330fad247fa9a595da5ffa1e54b9
This commit is contained in:
Amir Aharoni
2021-01-15 16:14:58 +02:00
parent e086cf7f92
commit 7559bc51d1
2 changed files with 32 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
/*! jquery.ime - v0.2.0+20201223 /*! jquery.ime - v0.2.0+20210115
* https://github.com/wikimedia/jquery.ime * https://github.com/wikimedia/jquery.ime
* Copyright (c) 2020 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */ * Copyright (c) 2021 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) { ( function ( $ ) {
'use strict'; 'use strict';
@@ -2203,6 +2203,10 @@
name: 'ट्रांस्लितेरेशन', name: 'ट्रांस्लितेरेशन',
source: 'rules/ne/ne-transliteration.js' source: 'rules/ne/ne-transliteration.js'
}, },
'nia-tilde': {
name: 'Li Niha tilde',
source: 'rules/nia/nia-tilde.js'
},
'nqo-standard-qwerty': { 'nqo-standard-qwerty': {
name: "N'Ko standard QWERTY", name: "N'Ko standard QWERTY",
source: 'rules/nqo/nqo-standard-qwerty.js' source: 'rules/nqo/nqo-standard-qwerty.js'
@@ -2839,6 +2843,10 @@
autonym: 'नेपाल भाषा', autonym: 'नेपाल भाषा',
inputmethods: [ 'hi-transliteration', 'hi-inscript' ] inputmethods: [ 'hi-transliteration', 'hi-inscript' ]
}, },
nia: {
autonym: 'li niha',
inputmethods: [ 'nia-tilde' ]
},
nn: { nn: {
autonym: 'Norsk (nynorsk)', autonym: 'Norsk (nynorsk)',
inputmethods: [ 'nb-normforms', 'nb-tildeforms' ] inputmethods: [ 'nb-normforms', 'nb-tildeforms' ]

View File

@@ -0,0 +1,22 @@
( function ( $ ) {
'use strict';
var niaTilde = {
id: 'nia-tilde',
name: 'nia-tilde',
description: 'Nias tilde keyboard',
date: '2021-01-13',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1',
patterns: [
[ '~O', 'Ö' ],
[ '~o', 'ö' ],
[ '~W', 'Ŵ' ],
[ '~w', 'ŵ' ]
]
};
$.ime.register( niaTilde );
}( jQuery ) );