Update jquery.ime and jquery.uls from upstream
jquery.ime * Add Esan keyboard Updating todffaad798ajquery.uls * Localization updates Updating to9b4ee4c2d3Change-Id: Id43d1166144a55ead02aa831b620bd2c158416c0
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*! jquery.ime - v0.2.0+20220720
|
||||
/*! jquery.ime - v0.2.0+20220805
|
||||
* https://github.com/wikimedia/jquery.ime
|
||||
* Copyright (c) 2022 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
|
||||
( function ( $ ) {
|
||||
@@ -2018,6 +2018,10 @@
|
||||
name: 'Venjuleg eyðublöð',
|
||||
source: 'rules/is/is-normforms.js'
|
||||
},
|
||||
'ish-tilde': {
|
||||
name: 'Esan Awain tilde',
|
||||
source: 'rules/ish/ish-tilde.js'
|
||||
},
|
||||
'jv-transliteration': {
|
||||
name: 'Transliteration',
|
||||
source: 'rules/jv/jv-transliteration.js'
|
||||
@@ -2812,6 +2816,10 @@
|
||||
autonym: 'Íslenska',
|
||||
inputmethods: [ 'is-normforms' ]
|
||||
},
|
||||
ish: {
|
||||
autonym: 'awain',
|
||||
inputmethods: [ 'ish-tilde' ]
|
||||
},
|
||||
jv: {
|
||||
autonym: 'ꦧꦱꦗꦮ',
|
||||
inputmethods: [ 'jv-transliteration' ]
|
||||
|
||||
22
lib/jquery.ime/rules/ish/ish-tilde.js
Normal file
22
lib/jquery.ime/rules/ish/ish-tilde.js
Normal file
@@ -0,0 +1,22 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var ishTilde = {
|
||||
id: 'ish-tilde',
|
||||
name: 'ish-tilde',
|
||||
description: 'Esan input keyboard - tilde',
|
||||
date: '2022-08-01',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~E', 'Ẹ' ],
|
||||
[ '~e', 'ẹ' ],
|
||||
[ '~O', 'Ọ' ],
|
||||
[ '~o', 'ọ' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( ishTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user