summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UniversalLanguageSelector/lib/jquery.ime/rules/din/din-fqsx.js
blob: 715a96fcb67dfb2966c718f51ceb4bdf23999a94 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
( function ( $ ) {
	'use strict';

	var defs = {
		id: 'din-fqsx',
		name: 'FQSX replacement',
		description: 'Dinka input method with F, Q, S and X replaced by Ɣ, Ŋ, Ɛ, and Ɔ',
		date: '2017-04-26',
		URL: 'http://keymanweb.com/#dib,Keyboard_dinkaweb11',
		author: 'Amir E. Aharoni, based on Keyman',
		license: 'GPLv3',
		version: '1.0',
		contextLength: 2,
		maxKeyLength: 2,
		patterns: [
			[ '\\\\F', 'F' ],
			[ '\\\\f', 'f' ],
			[ '\\\\Q', 'Q' ],
			[ '\\\\q', 'q' ],
			[ '\\\\S', 'S' ],
			[ '\\\\s', 's' ],
			[ '\\\\X', 'X' ],
			[ '\\\\x', 'x' ],
			[ '\\\\;', ';' ],
			[ 'A;', 'Ä' ],
			[ 'a;', 'ä' ],
			[ 'E;', 'Ë' ],
			[ 'e;', 'ë' ],
			[ 'Ɛ;', 'Ɛ̈' ],
			[ 'ɛ;', 'ɛ̈' ],
			[ 'I;', 'Ï' ],
			[ 'i;', 'ï' ],
			[ 'O;', 'Ö' ],
			[ 'o;', 'ö' ],
			[ 'Ɔ;', 'Ɔ̈' ],
			[ 'ɔ;', 'ɔ̈' ],
			[ 'F', 'Ɣ' ],
			[ 'f', 'ɣ' ],
			[ 'Q', 'Ŋ' ],
			[ 'q', 'ŋ' ],
			[ 'S', 'Ɛ' ],
			[ 's', 'ɛ' ],
			[ 'X', 'Ɔ' ],
			[ 'x', 'ɔ' ]
		]
	};

	$.ime.register( defs );
}( jQuery ) );