summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UniversalLanguageSelector/lib/jquery.ime/rules/bm/bm-alt.js
blob: 791467b9e717bfeaca143c13d6735be96fc6e653 (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 defs = {
		id: 'bm-alt',
		name: 'Bamanankan Alt',
		description: 'Bambara input method with Alt-H/B/E/J/N/O combinations',
		date: '2017-05-29',
		URL: 'http://www.mali-pense.net/Ressources-pour-la-pratique-du.html',
		author: 'Amir E. Aharoni, based on mali-pense.net',
		license: 'GPLv3',
		version: '1.0',
		contextLength: 1,
		maxKeyLength: 1,
		patterns_x: [
			[ 'H', '̂' ], // Combining circumflex
			[ 'h', '́' ], // Combining acute accent
			[ 'B', '̌' ], // Combining caron
			[ 'b', '̀' ], // Combining grave accent
			[ 'E', 'Ɛ' ],
			[ 'e', 'ɛ' ],
			[ 'J', 'Ɲ' ],
			[ 'j', 'ɲ' ],
			[ 'N', 'Ŋ' ],
			[ 'n', 'ŋ' ],
			[ 'O', 'Ɔ' ],
			[ 'o', 'ɔ' ]
		]
	};

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