Update jquery.ime and jquery.uls from upstream

Updating jquery.ime to
b8e2488a1f

Updating jquery.uls to
1b3e4265e6

Change-Id: Ie3083acd3f2e70fe7898231ed0328d88f88576cd
This commit is contained in:
Amir E. Aharoni
2021-10-11 10:52:27 +03:00
parent b3c18c5f8e
commit 23396f2016
5 changed files with 125 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20210524
/*! jquery.ime - v0.2.0+20211011
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2021 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -1924,6 +1924,10 @@
name: 'લિપ્યંતરણ',
source: 'rules/gu/gu-transliteration.js'
},
'gur-tilde': {
name: 'Farefare tilde',
source: 'rules/gur/gur-tilde.js'
},
'ha-tilde': {
name: 'Hausa - tilde',
source: 'rules/ha/ha-tilde.js'
@@ -2706,6 +2710,10 @@
autonym: 'ગુજરાતી',
inputmethods: [ 'gu-transliteration', 'gu-inscript', 'gu-inscript2', 'gu-phonetic' ]
},
gur: {
autonym: 'farefare',
inputmethods: [ 'gur-tilde' ]
},
he: {
autonym: 'עברית',
inputmethods: [ 'he-standard-2012-extonly', 'he-standard-2012' ]

View File

@@ -0,0 +1,36 @@
( function ( $ ) {
'use strict';
var gurTilde = {
id: 'gur-tilde',
name: 'gur-tilde',
description: 'Farefare input keyboard',
date: '2021-09-25',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~I', 'Ɩ' ],
[ '~i', 'ɩ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~U', 'Ʋ' ],
[ '~u', 'ʋ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~\\{', '\u0303' ], // Combining tilde
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( gurTilde );
}( jQuery ) );