summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UniversalLanguageSelector/lib/jquery.ime/rules/be/be-latin.js
blob: ca6c9954bb2b3a106fec52403d91491f1afac510 (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
( function ( $ ) {
	'use strict';

	var beLatin = {
		id: 'be-latin',
		name: 'Belarusian Łacinka',
		description: 'Belarusian Latin alphabet input method',
		date: '2012-11-06',
		URL: 'http://github.com/wikimedia/jquery.ime',
		author: 'Pavel Selitskas',
		license: 'GPLv3',
		version: '1.0',
		contextLength: 1,
		maxKeyLength: 1,
		patterns: [
			[ '=S', 'Š' ],
			[ '=U', 'Ŭ' ],
			[ '-S', 'Ś' ],
			[ '-L', 'Ł' ],
			[ '-Z', 'Ź' ],
			[ '=Z', 'Ž' ],
			[ '-C', 'Ć' ],
			[ '=C', 'Č' ],
			[ '-N', 'Ń' ],
			[ '=s', 'š' ],
			[ '=u', 'ŭ' ],
			[ '-s', 'ś' ],
			[ '-l', 'ł' ],
			[ '-z', 'ź' ],
			[ '=z', 'ž' ],
			[ '-c', 'ć' ],
			[ '=c', 'č' ],
			[ '-n', 'ń' ]
		]
	};

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