Update jquery.ime from upstream

* Add Obolo keyboard

Updating to
c794c46252

Change-Id: I3b11cdf10f6c2d122177879f9f27612cc319cb22
This commit is contained in:
Amir Aharoni
2020-11-04 14:22:43 +02:00
parent 50b3e3ccc9
commit 43deb543b7
2 changed files with 39 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20201002
/*! jquery.ime - v0.2.0+20201104
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2020 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -1645,6 +1645,10 @@
name: 'ትራንስልተራትዖን',
source: 'rules/am/am-transliteration.js'
},
'ann-tilde': {
name: 'Obolo tilde',
source: 'rules/ann/ann-tilde.js'
},
'ar-kbd': {
name: 'لوحة المفاتيح العربية',
source: 'rules/ar/ar-kbd.js'
@@ -2491,6 +2495,10 @@
autonym: 'አማርኛ',
inputmethods: [ 'am-transliteration' ]
},
ann: {
autonym: 'Obolo',
inputmethods: [ 'ann-tilde' ]
},
ar: {
autonym: 'العربية',
inputmethods: [ 'ar-kbd' ]

View File

@@ -0,0 +1,30 @@
( function ( $ ) {
'use strict';
var annTilde = {
id: 'ann-tilde',
name: 'ann-tilde',
description: 'Obolo input keyboard',
date: '2020-11-03',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.1',
patterns: [
[ '~N', 'N̄' ],
[ '~n', 'n̄' ],
[ '~O', 'Ọ' ],
[ '~o', 'ọ' ],
[ '~S', 'Ṣ' ],
[ '~s', 'ṣ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ], // Combining caron
[ '~\\.', '\u0323' ] // Combining dot below
]
};
$.ime.register( annTilde );
}( jQuery ) );