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

	var woAlt = {
		id: 'wo-alt',
		name: 'Wolof Alt',
		description: 'Wolof Alt',
		date: '2017-05-27',
		URL: 'http://github.com/wikimedia/jquery.ime',
		author: 'Amir E. Aharoni',
		license: 'GPLv3',
		version: '1.0',
		contextLength: 0,
		maxKeyLength: 2,
		patterns: [
			[ 'n~', 'ñ' ],
			[ 'N~', 'Ñ' ],
			[ 'ñ~', 'n~' ],
			[ 'Ñ~', 'N~' ]
		],
		patterns_x: [
			[ 'E', 'Ë' ],
			[ 'e', 'ë' ],
			[ 'N', 'Ŋ' ],
			[ 'n', 'ŋ' ],
			[ '/', '́' ], // Combining acute accent
			[ '\\\\', '̀' ] // Combining grave accent
		]
	};

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