summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UniversalLanguageSelector/lib/jquery.ime/rules/ak/ak-qx.js
blob: 529e4df444e4f0cf30c6b62e4919b5534f94eae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
( 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 ) );