Update jquery.ime from upstream

* Fixed Arabic keyboard name.
* Renamed Akan keyboard and made it usable also for Twi.
* Added Ga keyboard.
* Added Dinka keyboard.

Updating to
e3a6368df0

Change-Id: I310fb8e33555a704ea23bbbf1ba720b46158323b
This commit is contained in:
Amire80
2017-05-04 09:33:57 +03:00
parent b118f44c0f
commit 1d855d5f6e
5 changed files with 100 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
( function ( $ ) {
'use strict';
var defs = {
id: 'gaa-cqx',
name: 'Ga - CQX replacement',
description: 'Ga input method with C, Q and X replaced by Ŋ, Ɛ and Ɔ',
date: '2016-06-23',
URL: 'http://www.kasahorow.org/node/260',
author: 'Amir E. Aharoni, based on Kasahorow Akan',
license: 'GPLv3',
version: '1.0',
contextLength: 1,
maxKeyLength: 1,
patterns: [
[ 'C', 'Ŋ' ],
[ 'c', 'ŋ' ],
[ 'Q', 'Ɛ' ],
[ 'q', 'ɛ' ],
[ 'X', 'Ɔ' ],
[ 'x', 'ɔ' ]
]
};
$.ime.register( defs );
}( jQuery ) );