* 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
25 lines
487 B
JavaScript
25 lines
487 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var defs = {
|
|
id: 'ak-qx',
|
|
name: 'QX replacement',
|
|
description: 'Akan input method with Q and X replaced by Ɛ and Ɔ',
|
|
date: '2016-06-23',
|
|
URL: 'http://www.kasahorow.org/node/260',
|
|
author: 'Amir E. Aharoni, based on Kasahorow',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
contextLength: 1,
|
|
maxKeyLength: 1,
|
|
patterns: [
|
|
[ 'Q', 'Ɛ' ],
|
|
[ 'q', 'ɛ' ],
|
|
[ 'X', 'Ɔ' ],
|
|
[ 'x', 'ɔ' ]
|
|
]
|
|
};
|
|
|
|
$.ime.register( defs );
|
|
}( jQuery ) );
|