summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UniversalLanguageSelector/lib/jquery.ime/rules/eo/eo-h.js
blob: fe6dcabfd57096410851db57c4210fa95a0e2327 (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
50
51
52
53
54
( function ( $ ) {
	'use strict';

	var eoH = {
		id: 'eo-h',
		name: 'Esperanto h',
		description: 'writing Esperanto-letters adding h\'s.',
		date: '2013-02-12',
		URL: 'http://github.com/wikimedia/jquery.ime',
		author: 'Parag Nemade',
		license: 'GPLv3',
		version: '1.0',
		patterns: [
			[ 'ĉh', 'ch' ],
			[ 'ĝh', 'gh' ],
			[ 'ĥh', 'hh' ],
			[ 'ĵh', 'jh' ],
			[ 'ŝh', 'sh' ],
			[ 'ŭh', 'uh' ],
			[ 'Ĉh', 'Ch' ],
			[ 'Ĝh', 'Gh' ],
			[ 'Ĥh', 'Hh' ],
			[ 'Ĵh', 'Jh' ],
			[ 'Ŝh', 'Sh' ],
			[ 'Ŭh', 'Uh' ],
			[ 'ĈH', 'CH' ],
			[ 'ĜH', 'GH' ],
			[ 'ĤH', 'HH' ],
			[ 'ĴH', 'JH' ],
			[ 'ŜH', 'SH' ],
			[ 'ŬH', 'UH' ],

			[ 'ch', 'ĉ' ],
			[ 'gh', 'ĝ' ],
			[ 'hh', 'ĥ' ],
			[ 'jh', 'ĵ' ],
			[ 'sh', 'ŝ' ],
			[ 'uh', 'ŭ' ],
			[ 'Ch', 'Ĉ' ],
			[ 'Gh', 'Ĝ' ],
			[ 'Hh', 'Ĥ' ],
			[ 'Jh', 'Ĵ' ],
			[ 'Sh', 'Ŝ' ],
			[ 'Uh', 'Ŭ' ],
			[ 'CH', 'Ĉ' ],
			[ 'GH', 'Ĝ' ],
			[ 'HH', 'Ĥ' ],
			[ 'JH', 'Ĵ' ],
			[ 'SH', 'Ŝ' ],
			[ 'UH', 'Ŭ' ] ]
	};

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