Update jquery.ime from upstream

Changes:
* Change label from National to Jatiyo for bn-nkb keyboard.
* Add diacritics to the Ga keyboard.
* Fixed el-kbd keyboard.

Bug: T299328
Change-Id: I947397af089fc6f5ef87ea2efc9273fde4990b54
This commit is contained in:
Kartik Mistry
2022-01-17 16:54:04 +05:30
parent f3255fac17
commit 3fea8984d1
4 changed files with 11 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
/*! jquery.ime - v0.2.0+20211115 /*! jquery.ime - v0.2.0+20220117
* https://github.com/wikimedia/jquery.ime * https://github.com/wikimedia/jquery.ime
* Copyright (c) 2021 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */ * Copyright (c) 2022 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) { ( function ( $ ) {
'use strict'; 'use strict';

View File

@@ -3,10 +3,10 @@
var bnNkb = { var bnNkb = {
id: 'bn-nkb', id: 'bn-nkb',
name: 'National Keyboard', name: 'Jatiyo Keyboard',
description: 'Bengali National Keyboard input method', description: 'Bengali Jatiyo Keyboard input method',
date: '2012-10-10', date: '2012-10-10',
URL: 'http://github.com/wikimedia/jquery.ime', URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Junaid P V', author: 'Junaid P V',
license: 'GPLv3', license: 'GPLv3',
version: '1.0', version: '1.0',

View File

@@ -10,6 +10,7 @@
author: 'Parag Nemade', author: 'Parag Nemade',
license: 'GPLv3', license: 'GPLv3',
version: '1.0', version: '1.0',
maxKeyLength: 2,
patterns: [ patterns: [
[ '΄¨i', 'ΐ' ], [ '΄¨i', 'ΐ' ],
[ ΄i', 'ΐ' ], [ ΄i', 'ΐ' ],

View File

@@ -9,7 +9,7 @@
URL: 'https://github.com/wikimedia/jquery.ime', URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni', author: 'Amir E. Aharoni',
license: 'GPLv3', license: 'GPLv3',
version: '1.0', version: '1.1',
maxKeyLength: 2, maxKeyLength: 2,
patterns: [ patterns: [
[ '~E', 'Ɛ' ], [ '~E', 'Ɛ' ],
@@ -17,7 +17,10 @@
[ '~N', 'Ŋ' ], [ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ], [ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ], [ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ] [ '~o', 'ɔ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\{', '\u0303' ] // Combining tilde
] ]
}; };