Update jquery.ime from upstream

* Remove Akan as a language and unify related code

Updating to
0baa262cc6

Previous commit: I23a2ed7cf0812fc8b192b4cc6c766e34a9d1a7e7

Bug: T347847
Change-Id: Ia084f0ad368088637d8aad3c0fd07c549e13aff3
This commit is contained in:
Abijeet
2023-10-25 16:10:26 +05:30
parent 56f585541b
commit 3cfecb4ece
2 changed files with 2 additions and 33 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20230731
/*! jquery.ime - v0.2.0+20231025
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2023 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -2328,10 +2328,6 @@
name: 'Chichewa / Nyanja tilde',
source: 'rules/ny/ny-tilde.js'
},
'nzi-tilde': {
name: 'Nzema tilde',
source: 'rules/nzi/nzi-tilde.js'
},
'or-inscript': {
name: 'ଇନସ୍କ୍ରିପ୍ଟ',
source: 'rules/or/or-inscript.js'
@@ -2628,10 +2624,6 @@
autonym: 'ajagbe',
inputmethods: [ 'ajg-tilde' ]
},
ak: {
autonym: 'Akan',
inputmethods: [ 'ak-qx', 'ak-tilde' ]
},
am: {
autonym: 'አማርኛ',
inputmethods: [ 'am-transliteration' ]
@@ -3090,7 +3082,7 @@
},
nzi: {
autonym: 'Nzema',
inputmethods: [ 'nzi-tilde' ]
inputmethods: [ 'ak-tilde' ]
},
or: {
autonym: 'ଓଡ଼ିଆ',

View File

@@ -1,23 +0,0 @@
( function ( $ ) {
'use strict';
var nziTilde = {
id: 'nzi-tilde',
name: 'Nzema tilde',
description: 'Nzema tilde',
date: '2022-12-07',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
maxKeyLength: 2,
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ]
]
};
$.ime.register( nziTilde );
}( jQuery ) );