Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ak/ak-qx.js
Amire80 13a81d89f8 Update jquery.ime to 839fa42
Changes:
* Fix bug T102455 in Punjabi.
* Add Akan language keyboard.

Bug: T102455
Change-Id: I144e1cde2bb2bc7fa38a7620ef621f7ec0a32285
2016-07-12 10:43:35 +00:00

25 lines
494 B
JavaScript

( function ( $ ) {
'use strict';
var defs = {
id: 'ak-qx',
name: 'Akan - 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 ) );