summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/UniversalLanguageSelector/lib/jquery.ime/rules/he/he-standard-2012-extonly.js
blob: 5810dacc4e9107dae392ad7c27d5aa3840414871 (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
55
56
57
58
59
60
61
62
63
64
65
66
( function ( $ ) {
	'use strict';

	var heStandardExtOnly = {
		id: 'he-standard-2012-extonly',
		name: 'Hebrew 2012',
		description: 'Hebrew keyboard according to Israeli Standard 1452',
		date: '2012-10-15',
		URL: 'http://www.lingnu.com/he/howto/78-si1452.html',
		author: 'Amir E. Aharoni (אָמִיר אֱלִישָׁע אַהֲרוֹנִי, [[User:Amire80]])',
		license: 'GPLv3',
		version: '1.0',
		patterns: [], // Empty, because the assumption is that the user is using a Hebrew keyboard already
		patterns_x: [
			[ '\u05E9', 'ְ' ],       // Sheva, ש

			[ '\u05E7', 'ָ' ],       // Qamats, ק
			[ '\u05E8', 'ֳ' ],       // Hataf qamats, ר
			[ '\u05E4', 'ַ' ],       // Patah, פ
			[ '\\]', 'ֲ' ],          // Hataf patah, ]

			[ '\u05E6', 'ֵ' ],       // Tsere, צ
			[ '\u05E1', 'ֶ' ],       // Segol, ס
			[ '\u05D1', 'ֱ' ],       // Hataf segol, ב

			[ '\u05D7', 'ִ' ],       // Hiriq, ח

			[ '\u05D5', 'ֹ' ],       // Holam, ו

			[ '\\\\', 'ֻ' ],         // Qubuts, \

			[ '\u05D3', 'ּ' ],       // Dagesh, ד

			[ '/', 'ׂ' ],            // Sin dot
			[ '\'', 'ׁ' ],           // Shin dot

			[ '-', '\u05BE' ],      // Maqaf
			[ '=', '–' ],           // Qav mafrid - en dash
			[ '\\[', 'ֿ' ],          // Rafe
			[ '1', 'ֽ' ],            // Meteg
			[ '3', '€' ],           // Euro sign
			[ '4', '₪' ],           // Sheqel sign
			[ '5', '°' ],           // Degree
			[ '6', '֫' ],           // Ole
			[ '8', '×' ],           // Multiplication
			[ '9', '\u200e' ],      // LRM
			[ '0', '\u200f' ],      // RLM
			[ '\\.', '÷' ],         // Division

			[ '\u05D8', 'װ' ],      // Double vav, ט
			[ '\u05D9', 'ײ' ],      // Double yod, י
			[ '\u05E2', 'ױ' ],      // Vav-yod, ע

			// Some source code editors may show the next two lines
			// in a weird way because of auto-directionality.
			[ ';', '׳' ],      // Geresh, ';'
			[ ',', '״' ],      // Gershayim, ','
			[ '\u05E3', '„' ],      // Opening double quote, ף
			[ '\u05DA', '”' ],      // Closing double quote, ך
			[ '\u05E5', '‚' ],      // Opening single quote, ץ
			[ '\u05EA', '’' ]       // Closing single quote, ת
		]
	};

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