1 | /* $Id: keyboard-layouts.h 108636 2025-03-20 12:03:19Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox/Frontends/Common - X11 keyboard driver translation tables (keyboard layouts).
|
---|
4 | *
|
---|
5 | * This file was generated by successively loading each of the keyboard
|
---|
6 | * layouts listed in the file keyboard-list.h into the X server and
|
---|
7 | * reading and dumping the values associated with each key. The format
|
---|
8 | * of the dumped data is chosen to be compatible with the keyboard code
|
---|
9 | * in keyboard-new.c, which is based on code from the Wine project.
|
---|
10 | */
|
---|
11 |
|
---|
12 | /*
|
---|
13 | * This library is free software; you can redistribute it and/or
|
---|
14 | * modify it under the terms of the GNU Lesser General Public
|
---|
15 | * License as published by the Free Software Foundation; either
|
---|
16 | * version 2.1 of the License, or (at your option) any later version.
|
---|
17 | *
|
---|
18 | * This library is distributed in the hope that it will be useful,
|
---|
19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | * Lesser General Public License for more details.
|
---|
22 | *
|
---|
23 | * You should have received a copy of the GNU Lesser General Public
|
---|
24 | * License along with this library; if not, write to the Free Software
|
---|
25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
26 | */
|
---|
27 |
|
---|
28 | /*
|
---|
29 | * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
30 | * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
|
---|
31 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
32 | * a choice of LGPL license versions is made available with the language indicating
|
---|
33 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
34 | * of the LGPL is applied is otherwise unspecified.
|
---|
35 | */
|
---|
36 |
|
---|
37 | #ifndef ___VBox_keyboard_tables_h
|
---|
38 | # error This file must be included from within keyboard-tables.h
|
---|
39 | #endif /* !___VBox_keyboard_tables_h */
|
---|
40 |
|
---|
41 | /* This file contains a more or less complete dump of all keyboard
|
---|
42 | layouts known to my version of X.org. Duplicate layouts have
|
---|
43 | been removed to save space and lookup time, and the Japanese
|
---|
44 | layout has been manually corrected, due to differences in handling
|
---|
45 | between 105 and 106-key keyboards.
|
---|
46 |
|
---|
47 | Note that contrary to the original tables in the Wine source code,
|
---|
48 | these tables simply contain the X keysym values truncated to the
|
---|
49 | least significant byte. In fact, there is no need to do any
|
---|
50 | additional translation of the values (the original code translated
|
---|
51 | them to whatever character set was deemed appropriate, rather
|
---|
52 | inconsistently) as long as we use the same algorithm for creating
|
---|
53 | the tables and doing the lookups.
|
---|
54 |
|
---|
55 | The last three entries in the tables are respectively the 102nd
|
---|
56 | key on 102/105/106 key keyboards, the extra key on Brazilian and
|
---|
57 | Japanese keyboards and the Yen key on Japanese keyboards.
|
---|
58 | The layout-switching keys on Japanese and Korean keyboards are
|
---|
59 | dealt with elsewhere. */
|
---|
60 |
|
---|
61 | /** @todo r=aeichner Someone needs to check whether the warnings are indeed valid. */
|
---|
62 | #ifdef __clang__
|
---|
63 | # pragma clang diagnostic push
|
---|
64 | # pragma clang diagnostic ignored "-Wstring-concatenation"
|
---|
65 | #endif
|
---|
66 |
|
---|
67 | /* U.S. English */
|
---|
68 | static const char main_key_us[MAIN_LEN][2] =
|
---|
69 | {
|
---|
70 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
71 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
72 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
73 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
74 | };
|
---|
75 |
|
---|
76 | /* U.S. English, International (with dead keys) */
|
---|
77 | static const char main_key_us_intl[MAIN_LEN][2] =
|
---|
78 | {
|
---|
79 | "PS","1!","2@","3#","4$","5%","6R","7&","8*","9(","0)","-_","=+",
|
---|
80 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
81 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","QW","\\|",
|
---|
82 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
83 | };
|
---|
84 |
|
---|
85 | /* U.S. English, International, alternative 102nd key */
|
---|
86 | static const char main_key_us_intl_alt102[MAIN_LEN][2] =
|
---|
87 | {
|
---|
88 | "PS","1!","2@","3#","4$","5%","6R","7&","8*","9(","0)","-_","=+",
|
---|
89 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
90 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","QW","\\|",
|
---|
91 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\\|","\x0\x0","\x0\x0"
|
---|
92 | };
|
---|
93 |
|
---|
94 | /* U.S. English, Dvorak */
|
---|
95 | static const char main_key_us_dvorak[MAIN_LEN][2] =
|
---|
96 | {
|
---|
97 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","[{","]}",
|
---|
98 | "'\"",",<",".>","pP","yY","fF","gG","cC","rR","lL","/?","=+",
|
---|
99 | "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","\\|",
|
---|
100 | ";:","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","<>","\x0\x0","\x0\x0"
|
---|
101 | };
|
---|
102 |
|
---|
103 | /* U.S. English, Left handed Dvorak */
|
---|
104 | static const char main_key_us_dvorak_l[MAIN_LEN][2] =
|
---|
105 | {
|
---|
106 | "`~","[{","]}","/?","pP","fF","mM","lL","jJ","4$","3#","2@","1!",
|
---|
107 | ";:","qQ","bB","yY","uU","rR","sS","oO",".>","6^","5%","=+",
|
---|
108 | "-_","kK","cC","dD","tT","hH","eE","aA","zZ","8*","7&","\\|",
|
---|
109 | "'\"","xX","gG","vV","wW","nN","iI",",<","0)","9(","<>","\x0\x0","\x0\x0"
|
---|
110 | };
|
---|
111 |
|
---|
112 | /* U.S. English, Right handed Dvorak */
|
---|
113 | static const char main_key_us_dvorak_r[MAIN_LEN][2] =
|
---|
114 | {
|
---|
115 | "`~","1!","2@","3#","4$","jJ","lL","mM","fF","pP","/?","[{","]}",
|
---|
116 | "5%","6^","qQ",".>","oO","rR","sS","uU","yY","bB",";:","=+",
|
---|
117 | "7&","8*","zZ","aA","eE","hH","tT","dD","cC","kK","-_","\\|",
|
---|
118 | "9(","0)","xX",",<","iI","nN","wW","vV","gG","'\"","<>","\x0\x0","\x0\x0"
|
---|
119 | };
|
---|
120 |
|
---|
121 | /* U.S. English, Classic Dvorak */
|
---|
122 | static const char main_key_us_dvorak_classic[MAIN_LEN][2] =
|
---|
123 | {
|
---|
124 | "`~","[{","7&","5%","3#","1!","9(","0)","2@","4$","6^","8*","]}",
|
---|
125 | "/?",",<",".>","pP","yY","fF","gG","cC","rR","lL","'\"","=+",
|
---|
126 | "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","\\|",
|
---|
127 | ";:","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","<>","\x0\x0","\x0\x0"
|
---|
128 | };
|
---|
129 |
|
---|
130 | /* U.S. English, Russian phonetic */
|
---|
131 | static const char main_key_us_rus[MAIN_LEN][2] =
|
---|
132 | {
|
---|
133 | "\xa3\xb3","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","\xdf\xff",
|
---|
134 | "\xd1\xf1","\xd7\xf7","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xd9\xf9","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xdd\xfd",
|
---|
135 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xca\xea","\xcb\xeb","\xcc\xec","\xde\xfe","\xc0\xe0","\xdc\xfc",
|
---|
136 | "\xda\xfa","\xd8\xf8","\xc3\xe3","\xd6\xf6","\xc2\xe2","\xce\xee","\xcd\xed",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
137 | };
|
---|
138 |
|
---|
139 | /* U.S. English, Colemak */
|
---|
140 | static const char main_key_us_col[MAIN_LEN][2] =
|
---|
141 | {
|
---|
142 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
143 | "qQ","wW","fF","pP","gG","jJ","lL","uU","yY",";:","[{","]}",
|
---|
144 | "aA","rR","sS","tT","dD","hH","nN","eE","iI","oO","'\"","\\|",
|
---|
145 | "zZ","xX","cC","vV","bB","kK","mM",",<",".>","/?","-_","\x0\x0","\x0\x0"
|
---|
146 | };
|
---|
147 |
|
---|
148 | /* Afghanistan */
|
---|
149 | static const char main_key_af[MAIN_LEN][2] =
|
---|
150 | {
|
---|
151 | "\xd\xf7","\xf1!","\xf2l","\xf3k","\xf4\xb","\xf5j","\xf6\xd7","\xf7\xac","\xf8*","\xf9)","\xf0(","-\xe0","+=",
|
---|
152 | "\xd6\xf2","\xd5\xec","\xcb\xed","\xe2\xeb","\xe1\xef","\xda\xf0","\xd9\xee","\xe7\xf1","\xce]","\xcd[","\xcc}","\x86{",
|
---|
153 | "\xd4\xc4","\xd3\xc6","\xcc\xea","\xc8\xc5","\xe4\xc3","\xc7\xc2","\xca\xc9","\xe6\xbb","\xe5\xab","\xa9:","\xaf\xbb","\\|",
|
---|
154 | "\xd8\xe3","\xd7S","\xd2\x98","\xd1p","\xd0\xc","\xcfT","~\xc1","\xe8>",".<","/\xbf","<>","\x0\x0","\x0\x0"
|
---|
155 | };
|
---|
156 |
|
---|
157 | /* Afghanistan, Pashto */
|
---|
158 | static const char main_key_af_ps[MAIN_LEN][2] =
|
---|
159 | {
|
---|
160 | "\xd\xf7","\xf1!","\xf2l","\xf3k","\xf4\xb","\xf5j","\xf6\xd7","\xf7\xbb","\xf8\xab","\xf9)","\xf0(","-\xe0","+=",
|
---|
161 | "\xd6\xf2","\xd5\xec","\xcb\xed","\xe2\xeb","\xe1\xef","\xda\xf0","\xd9\xee","\xe7\xf1","\xce\x81","\xcd\x85","\xcc]","\x86[",
|
---|
162 | "\xd4\x9a","\xd3\xc6","\xcc\xea","\xc8~","\xe4\xc3","\xc7\xc2","\xca|","\xe6\xbc","\xe5)","\xa9:","\xab\xbb","\\*",
|
---|
163 | "\xcd""8","\xd0""7","\xd2\x98","\xd1!","\xd0\xc","\xcf\x89","\x93$","\xe8\xc","\x96.","/\xbf","<>","\x0\x0","\x0\x0"
|
---|
164 | };
|
---|
165 |
|
---|
166 | /* Afghanistan, Southern Uzbek */
|
---|
167 | static const char main_key_af_uz[MAIN_LEN][2] =
|
---|
168 | {
|
---|
169 | "\xd\xf7","\xf1!","\xf2l","\xf3k","\xf4\xb","\xf5j","\xf6\xd7","\xf7\xac","\xf8*","\xf9)","\xf0(","-\xe0","+=",
|
---|
170 | "\xd6\xf2","\xd5\xec","\xcb\xed","\xe2\xeb","\xe1\xef","\xda\xf0","\xd9\xee","\xe7\xf1","\xce]","\xcd[","\xcc}","\x86{",
|
---|
171 | "\xd4\xc4","\xd3\xc6","\xcc\xea","\xc8\xd0","\xe4\xc3","\xc7\xc2","\xca\xc9","\xe6\xbb","\xe5\xab","\xa9:","\xaf\xbb","\\|",
|
---|
172 | "\xd8\xc9","\xd7\xc7","\xd2\x98","\xd1%","\xd0\xc","\xcfT","~\xc1","\xe8>",".<","/\xbf","<>","\x0\x0","\x0\x0"
|
---|
173 | };
|
---|
174 |
|
---|
175 | /* Arabic */
|
---|
176 | static const char main_key_ara[MAIN_LEN][2] =
|
---|
177 | {
|
---|
178 | "\xd0\xf1","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
179 | "\xd6\xee","\xd5\xeb","\xcb\xef","\xe2\xec","\xe1\xf9","\xda\xc5","\xd9`","\xe7\xf7","\xce\xd7","\xcd\xbb","\xcc{","\xcf}",
|
---|
180 | "\xd4\\","\xd3S","\xea[","\xc8]","\xe4\xf7","\xc7\xc3","\xca\xe0","\xe6\xac","\xe5/","\xe3:","\xd7\"","<>",
|
---|
181 | "\xc6~","\xc1\xf2","\xc4\xf0","\xd1\xed","\xfb\xf5","\xe9\xc2","\xc9'","\xe8,","\xd2.","\xd8\xbf","|\xa6","\x0\x0","\x0\x0"
|
---|
182 | };
|
---|
183 |
|
---|
184 | /* Arabic, azerty */
|
---|
185 | static const char main_key_ara_azerty[MAIN_LEN][2] =
|
---|
186 | {
|
---|
187 | "\xd0\xf1","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
188 | "\xd6\xee","\xd5\xeb","\xcb\xef","\xe2\xec","\xe1\xf9","\xda\xc5","\xd9`","\xe7\xf7","\xce\xd7","\xcd\xbb","\xcc{","\xcf}",
|
---|
189 | "\xd4\\","\xd3S","\xea[","\xc8]","\xe4\xf7","\xc7\xc3","\xca\xe0","\xe6\xac","\xe5/","\xe3:","\xd7\"","<>",
|
---|
190 | "\xc6~","\xc1\xf2","\xc4\xf0","\xd1\xed","\xfb\xf5","\xe9\xc2","\xc9'","\xe8,","\xd2.","\xd8\xbf","|\xa6","\x0\x0","\x0\x0"
|
---|
191 | };
|
---|
192 |
|
---|
193 | /* Arabic, azerty/digits */
|
---|
194 | static const char main_key_ara_azerty_digits[MAIN_LEN][2] =
|
---|
195 | {
|
---|
196 | "\xd0\xf1","&a","\xe9""b","\"c","'d","(e","-f","\xe8g","_h","\xe7i","\xe0`",")\xb0","=+",
|
---|
197 | "\xd6\xee","\xd5\xeb","\xcb\xef","\xe2\xec","\xe1\xf9","\xda\xc5","\xd9`","\xe7\xf7","\xce\xd7","\xcd\xbb","\xcc{","\xcf}",
|
---|
198 | "\xd4\\","\xd3S","\xea[","\xc8]","\xe4\xf7","\xc7\xc3","\xca\xe0","\xe6\xac","\xe5/","\xe3:","\xd7\"","<>",
|
---|
199 | "\xc6~","\xc1\xf2","\xc4\xf0","\xd1\xed","\xfb\xf5","\xe9\xc2","\xc9'","\xe8,","\xd2.","\xd8\xbf","|\xa6","\x0\x0","\x0\x0"
|
---|
200 | };
|
---|
201 |
|
---|
202 | /* Arabic, digits */
|
---|
203 | static const char main_key_ara_digits[MAIN_LEN][2] =
|
---|
204 | {
|
---|
205 | "\xd0\xf1","a!","b@","c#","d$","e%","f^","g&","h*","i(","`)","-_","=+",
|
---|
206 | "\xd6\xee","\xd5\xeb","\xcb\xef","\xe2\xec","\xe1\xf9","\xda\xc5","\xd9`","\xe7\xf7","\xce\xd7","\xcd\xbb","\xcc{","\xcf}",
|
---|
207 | "\xd4\\","\xd3S","\xea[","\xc8]","\xe4\xf7","\xc7\xc3","\xca\xe0","\xe6\xac","\xe5/","\xe3:","\xd7\"","<>",
|
---|
208 | "\xc6~","\xc1\xf2","\xc4\xf0","\xd1\xed","\xfb\xf5","\xe9\xc2","\xc9'","\xe8,","\xd2.","\xd8\xbf","|\xa6","\x0\x0","\x0\x0"
|
---|
209 | };
|
---|
210 |
|
---|
211 | /* Arabic, Buckwalter */
|
---|
212 | static const char main_key_ara_buckwalter[MAIN_LEN][2] =
|
---|
213 | {
|
---|
214 | "p\xf1","a\xff","b\xff","c\xff","d\xd4","ej","f\xff","g\xc4","h\xd0","i>","`?","-\xe0","=+",
|
---|
215 | "\xe2\xff","\xe8\xc4","\xff\xd9","\xd1\xff","\xca\xd7","\xea\xe9","\xef\xff","\xf0\xc5","\xf2\xc3","\xc9\xff","\xffq","\xff\xc6",
|
---|
216 | "\xee\xc7","\xd3\xd5","\xcf\xd6","\xe1\xeb","\xda\xff","\xe7\xcd","\xcc\xff","\xe3\xed","\xe4\xff","\xbb\xff","\xc1\xff","\xff\xc2",
|
---|
217 | "\xd2\xd8","\xce\xff","\xff\xff","\xcb\xff","\xc8\xff","\xe6\xec","\xe5\xff","\xac\xc5","\xd4\xc3","\xff\xbf","<>","\x0\x0","\x0\x0"
|
---|
218 | };
|
---|
219 |
|
---|
220 | /* Albania */
|
---|
221 | static const char main_key_al[MAIN_LEN][2] =
|
---|
222 | {
|
---|
223 | "\\|","1!","2\"","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
224 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xe7\xc7","@'",
|
---|
225 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xeb\xcb","[{","]}",
|
---|
226 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","/?","<>","\x0\x0","\x0\x0"
|
---|
227 | };
|
---|
228 |
|
---|
229 | /* Armenia */
|
---|
230 | static const char main_key_am[MAIN_LEN][2] =
|
---|
231 | {
|
---|
232 | "]\\","\x86V","qA","\x13\x14",",$","\x89&","^%","$\x87","[\xbc",")(","\x85U","g7","rB",
|
---|
233 | "sC","\x83S","b2","}M","tD","xH","\x82R","o?","h8","i9","n>","\x81Q",
|
---|
234 | "{K","~N","c3","e5","a1","vF","k;","\x7fO","p@","zJ","\x80P","\xbb\xab",
|
---|
235 | "j:","d4","yI","uE","f6","l<","\x84T","m=","wG","|L","?\x8a","\x0\x0","\x0\x0"
|
---|
236 | };
|
---|
237 |
|
---|
238 | /* Armenia, Phonetic */
|
---|
239 | static const char main_key_am_phonetic[MAIN_LEN][2] =
|
---|
240 | {
|
---|
241 | "]\\","g7","i9","\x83S","qA","{K","\x82R","\x87\x87","\x80P","yI","sC","-\x15","j:",
|
---|
242 | "\x84T","xH","e5","|L","\x7fO","h8","\x82R","k;","\x85U","zJ","m=","n>",
|
---|
243 | "a1","}M","d4","\x86V","c3","p@","uE","o?","l<",";\x89","[\"","wG",
|
---|
244 | "f6","rB","\x81Q","~N","b2","vF","tD",",\xab","$\xbb","/^","?\x8a","\x0\x0","\x0\x0"
|
---|
245 | };
|
---|
246 |
|
---|
247 | /* Armenia, Eastern */
|
---|
248 | static const char main_key_am_eastern[MAIN_LEN][2] =
|
---|
249 | {
|
---|
250 | "]\\","\x89\xb1","qA","uE","[\xb3",",\xb4","-\xb9",".\x87","\xab(","\xbb)","\x85U","|L","j:",
|
---|
251 | "m=","\x82R","g7","\x80P","\x7fO","e5","h8","k;","xH","zJ","yI","{K",
|
---|
252 | "a1","}M","d4","\x86V","c3","p@","sC","o?","l<","i9","\x83S","'^",
|
---|
253 | "f6","\x81Q","\x84T","~N","b2","vF","tD","wG","rB","n>","<>","\x0\x0","\x0\x0"
|
---|
254 | };
|
---|
255 |
|
---|
256 | /* Armenia, Western */
|
---|
257 | static const char main_key_am_western[MAIN_LEN][2] =
|
---|
258 | {
|
---|
259 | "]\\","\x89\xb1","qA","uE","[\xb3",",\xb4","-\xb9",".\x87","\xab(","\xbb)","\x85U","|L","j:",
|
---|
260 | "m=","~N","g7","\x80P","d4","e5","h8","k;","xH","b2","yI","{K",
|
---|
261 | "a1","}M","\x7fO","\x86V","o?","p@","sC","\x84T","l<","i9","\x83S","'^",
|
---|
262 | "f6","\x81Q","c3","\x82R","zJ","vF","tD","wG","rB","n>","<>","\x0\x0","\x0\x0"
|
---|
263 | };
|
---|
264 |
|
---|
265 | /* Armenia, Alternative Eastern */
|
---|
266 | static const char main_key_am_eastern_alt[MAIN_LEN][2] =
|
---|
267 | {
|
---|
268 | "]\\","\x89\xb1","qA","uE","[\xb3",",\xb4","-\xb9",".\x87","\xab(","\xbb)","\x85U","|L","j:",
|
---|
269 | "m=","\x82R","g7","\x80P","\x7fO","e5","h8","k;","xH","zJ","yI","{K",
|
---|
270 | "a1","}M","d4","\x86V","\x84T","p@","sC","o?","l<","i9","\x83S","'^",
|
---|
271 | "f6","\x81Q","c3","~N","b2","vF","tD","wG","rB","n>","<>","\x0\x0","\x0\x0"
|
---|
272 | };
|
---|
273 |
|
---|
274 | /* Azerbaijan */
|
---|
275 | static const char main_key_az[MAIN_LEN][2] =
|
---|
276 | {
|
---|
277 | "`~","1!","2@","3#","4$","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
278 | "qQ","\xfc\xdc","eE","rR","tT","yY","uU","i\xa9","oO","pP","\xf6\xd6","\xbb\xab",
|
---|
279 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xb9I","Y\x8f","\\|",
|
---|
280 | "zZ","xX","cC","vV","bB","nN","mM","\xe7\xc7","\xba\xaa",".,","<>","\x0\x0","\x0\x0"
|
---|
281 | };
|
---|
282 |
|
---|
283 | /* Azerbaijan, Cyrillic */
|
---|
284 | static const char main_key_az_cyrillic[MAIN_LEN][2] =
|
---|
285 | {
|
---|
286 | "\x0\x0","\x0\x0","2\"","3#","4;","\x0\x0","6:","7?","8*","9(","0)","-_","\x0\x0",
|
---|
287 | "\xa8\xb8","\xaf\xae","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xbb\xba","\xda\xfa","\xc8\xe8","\xb9\xb8",
|
---|
288 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\x9d\x9c","\\|",
|
---|
289 | "\xd9\xd8","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\x93\x92","\xc2\xe2","\xe9\xe8",".,","<>","\x0\x0","\x0\x0"
|
---|
290 | };
|
---|
291 |
|
---|
292 | /* Belarus */
|
---|
293 | static const char main_key_by[MAIN_LEN][2] =
|
---|
294 | {
|
---|
295 | "\xa3\xb3","\x0\x0","2\"","\x0\x0","4;","5%","6:","7?","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
296 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xae\xbe","\xda\xfa","\xc8\xe8","''",
|
---|
297 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","/|",
|
---|
298 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xa6\xb6","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","|\xa6","\x0\x0","\x0\x0"
|
---|
299 | };
|
---|
300 |
|
---|
301 | /* Belarus, Winkeys */
|
---|
302 | static const char main_key_by_winkeys[MAIN_LEN][2] =
|
---|
303 | {
|
---|
304 | "\xa3\xb3","\x0\x0","2\"","3#","4;","5%","6:","7?","8*","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
305 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xae\xbe","\xda\xfa","\xc8\xe8","''",
|
---|
306 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","/|",
|
---|
307 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xa6\xb6","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","|\xa6","\x0\x0","\x0\x0"
|
---|
308 | };
|
---|
309 |
|
---|
310 | /* Belgium */
|
---|
311 | static const char main_key_be[MAIN_LEN][2] =
|
---|
312 | {
|
---|
313 | "\xb2\xb3","&1","\xe9""2","\"3","'4","(5","\xa7""6","\xe8""7","!8","\xe7""9","\xe0""0",")\xb0","-_",
|
---|
314 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","RW","$*",
|
---|
315 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","\xb5\xa3",
|
---|
316 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","=+","<>","\x0\x0","\x0\x0"
|
---|
317 | };
|
---|
318 |
|
---|
319 | /* Belgium, Eliminate dead keys */
|
---|
320 | static const char main_key_be_nodeadkeys[MAIN_LEN][2] =
|
---|
321 | {
|
---|
322 | "\xb2\xb3","&1","\xe9""2","\"3","'4","(5","\xa7""6","\xe8""7","!8","\xe7""9","\xe0""0",")\xb0","-_",
|
---|
323 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","^\xa8","$*",
|
---|
324 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","\xb5\xa3",
|
---|
325 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","=+","<>","\x0\x0","\x0\x0"
|
---|
326 | };
|
---|
327 |
|
---|
328 | /* Belgium, Sun dead keys */
|
---|
329 | static const char main_key_be_sundeadkeys[MAIN_LEN][2] =
|
---|
330 | {
|
---|
331 | "\xb2\xb3","&1","\xe9""2","\"3","'4","(5","\xa7""6","\xe8""7","!8","\xe7""9","\xe0""0",")\xb0","-_",
|
---|
332 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","\x1\x4","$*",
|
---|
333 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","\xb5\xa3",
|
---|
334 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","=+","<>","\x0\x0","\x0\x0"
|
---|
335 | };
|
---|
336 |
|
---|
337 | /* Bangladesh */
|
---|
338 | static const char main_key_bd[MAIN_LEN][2] =
|
---|
339 | {
|
---|
340 | "`~","\xe7!","\xe8@","\xe9#","\xea$","\xeb%","\xec^","\xed&","\xee*","\xef(","\xe6)","-_","=+",
|
---|
341 | "\x99\x82","\xaf\xdf","\xa1\xa2","\xaa\xab","\x9f\xa0","\x9a\x9b","\x9c\x9d","\xb9\x9e","\x97\x98","\xdc\xdd","[{","]}",
|
---|
342 | "\xc3\xd7","\xc1\xc2","\xbf\xc0","\xac\xad","\xcd""d","\xbe\x85","\x95\x96","\xa4\xa5","\xa6\xa7",";:","'\"","\\|",
|
---|
343 | "\x81\x83","\xcb\xcc","\xc7\xc8","\xb0\xb2","\xa8\xa3","\xb8\xb7","\xae\xb6",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
344 | };
|
---|
345 |
|
---|
346 | /* Bangladesh, Probhat */
|
---|
347 | static const char main_key_bd_probhat[MAIN_LEN][2] =
|
---|
348 | {
|
---|
349 | "`~","\xe7!","\xe8@","\xe9#","\xea\xf3","\xeb%","\xec^","\xed\x9e","\xee\xce","\xef(","\xe6)","\xc_","=\xd",
|
---|
350 | "\xa6\xa7","\xc2\x8a","\xc0\x88","\xb0\xdc","\x9f\xa0","\x8f\x90","\xc1\x89","\xbf\x87","\x93\x94","\xaa\xab","\xc7\xc8","\xcb\xcc",
|
---|
351 | "\xbe\x85","\xb8\xb7","\xa1\xa2","\xa4\xa5","\x97\x98","\xb9\x83","\x9c\x9d","\x95\x96","\xb2\x82",";:","'\"","\\e",
|
---|
352 | "\xdf\xaf","\xb6\xdd","\x9a\x9b","\x86\x8b","\xac\xad","\xa8\xa3","\xae\x99",",\xc3","d\x81","\xcd?","<>","\x0\x0","\x0\x0"
|
---|
353 | };
|
---|
354 |
|
---|
355 | /* India */
|
---|
356 | static const char main_key_in[MAIN_LEN][2] =
|
---|
357 | {
|
---|
358 | "J\x12","g\xd","hE","ii","jj","kk","ll","mm","nn","o(","f)","\x3\x3","C\xb",
|
---|
359 | "L\x14","H\x10",">\x6","@\x8","B\xa",",-","9\x19","\x17\x18","&'","\x1c\x1d","!\"","<\x1e",
|
---|
360 | "K\x13","G\xf","M\x5","?\x7","A\x9","*+","01","\x15\x16","$%","\x1a\x1b","\x1f\x20","I\x11",
|
---|
361 | "F\xe","\x2\x1",".#","()","54","23","86",",7",".d","/?","<>","\x0\x0","\x0\x0"
|
---|
362 | };
|
---|
363 |
|
---|
364 | /* India, Bengali */
|
---|
365 | static const char main_key_in_ben[MAIN_LEN][2] =
|
---|
366 | {
|
---|
367 | "\x0\x0","\xe7\xe7","\xe8\xe8","\xe9\xe9","\xea\xea","\xeb\xeb","\xec\xec","\xed\xed","\xee\xee","\xef(","\xe6)","-\x83","\x8b\xc3",
|
---|
368 | "\xcc\x94","\xc8\x90","\xbe\x86","\xc0\x88","\xc2\x8a","\xac\xad","\xb9\x99","\x97\x98","\xa6\xa7","\x9c\x9d","\xa1\xa2","\xbc\x9e",
|
---|
369 | "\xcb\x93","\xc7\x8f","\xcd\x85","\xbf\x87","\xc1\x89","\xaa\xab","\xb0\xdd","\x95\x96","\xa4\xa5","\x9a\x9b","\x9f\xa0","\\|",
|
---|
370 | "zZ","\x82\x81","\xae\xa3","\xa8\xa8","\xac\xac","\xb2\xb2","\xb8\xb6",",\xb7",".d","\xdf\xaf","<>","\x0\x0","\x0\x0"
|
---|
371 | };
|
---|
372 |
|
---|
373 | /* India, Gujarati */
|
---|
374 | static const char main_key_in_guj[MAIN_LEN][2] =
|
---|
375 | {
|
---|
376 | "\x0\x0","\xe7\x8d","\xe8\xc5","\xe9\xe9","\xea\xea","\xeb\xeb","\xec\xec","\xed\xed","\xee\xee","\xef(","\xe6)","-\x83","\x8b\xc3",
|
---|
377 | "\xcc\x94","\xc8\x90","\xbe\x86","\xc0\x88","\xc2\x8a","\xac\xad","\xb9\x99","\x97\x98","\xa6\xa7","\x9c\x9d","\xa1\xa2","\xbc\x9e",
|
---|
378 | "\xcb\x93","\xc7\x8f","\xcd\x85","\xbf\x87","\xc1\x89","\xaa\xab","\xb0\xb0","\x95\x96","\xa4\xa5","\x9a\x9b","\x9f\xa0","\xc9\x91",
|
---|
379 | "zZ","\x82\x81","\xae\xa3","\xa8\xa8","\xb5\xb5","\xb2\xb3","\xb8\xb6",",\xb7",".d","\xaf?","<>","\x0\x0","\x0\x0"
|
---|
380 | };
|
---|
381 |
|
---|
382 | /* India, Gurmukhi */
|
---|
383 | static const char main_key_in_guru[MAIN_LEN][2] =
|
---|
384 | {
|
---|
385 | "\x0\x0","gg","hh","ii","jj","kk","ll","mm","nn","o(","f)","\x0\x0","\x0\x0",
|
---|
386 | "L\x14","H\x10",">\x6","@\x8","B\xa",",-","9\x19","\x17\x18","&'","\x1c\x1d","!\"","<\x1e",
|
---|
387 | "K\x13","G\xf","M\x5","?\x7","A\x9","*+","00","\x15\x16","$%","\x1a\x1b","\x1f\x20","\\|",
|
---|
388 | "zZ","\x2p",".#","((","55","23","86",",<",".d","/?","<>","\x0\x0","\x0\x0"
|
---|
389 | };
|
---|
390 |
|
---|
391 | /* India, Kannada */
|
---|
392 | static const char main_key_in_kan[MAIN_LEN][2] =
|
---|
393 | {
|
---|
394 | "\xca\x92","\xe7\xe7","\xe8\xe8","\xe9\xe9","\xea\xea","\xeb\xeb","\xec\xec","\xed\xed","\xee\xee","\xef\xef","\xe6\xe6","\x83\x83","\xc3\x8b",
|
---|
395 | "\xcc\x94","\xc8\x90","\xbe\x86","\xc0\x88","\xc2\x8a","\xac\xad","\xb9\x99","\x97\x98","\xa6\xa7","\x9c\x9d","\xa1\xa2","\xbc\x9e",
|
---|
396 | "\xcb\x93","\xc7\x8f","\xcd\x85","\xbf\x87","\xc1\x89","\xaa\xab","\xb0\xb1","\x95\x96","\xa4\xa5","\x9a\x9b","\x9f\xa0","\\|",
|
---|
397 | "\xc6\x8e","\x82\x82","\xae\xa3","\xa8\xa8","\xb5\xb4","\xb2\xb3","\xb8\xb6",",\xb7","..","\xaf@","<>","\x0\x0","\x0\x0"
|
---|
398 | };
|
---|
399 |
|
---|
400 | /* India, Malayalam */
|
---|
401 | static const char main_key_in_mal[MAIN_LEN][2] =
|
---|
402 | {
|
---|
403 | "J\x12","g!","h@","i#","j$","k%","l^","m&","n*","o(","f)","-\x3","C\xb",
|
---|
404 | "L\x14","H\x10",">\x6","@\x8","B\xa",",-","9\x19","\x17\x18","&'","\x1c\x1d","!\"","\xd\x1e",
|
---|
405 | "K\x13","G\xf","M\x5","?\x7","A\x9","*+","01","\x15\x16","$%","\x1a\x1b","\x1f\x20","\\|",
|
---|
406 | "F\xe","\x2\x2",".#","((","54","23","86",",7","..","/?","<>","\x0\x0","\x0\x0"
|
---|
407 | };
|
---|
408 |
|
---|
409 | /* India, Oriya */
|
---|
410 | static const char main_key_in_ori[MAIN_LEN][2] =
|
---|
411 | {
|
---|
412 | "\x0\x0","gg","hh","ii","jj","kk","ll","mm","nn","oo","ff","\x3\x3","C\xb",
|
---|
413 | "L\x14","H\x10",">\x6","@\x8","B\xa",",-","9\x19","\x17\x18","&'","\x1c\x1d","!\"","<\x1e",
|
---|
414 | "K\x13","G\xf","M\x5","?\x7","A\x9","*+","00","\x15\x16","$%","\x1a\x1b","\x1f\x20","\\|",
|
---|
415 | "\x0\x0","\x2\x1",".#","((","55","23","86",",7","..","/@","<>","\x0\x0","\x0\x0"
|
---|
416 | };
|
---|
417 |
|
---|
418 | /* India, Tamil Unicode */
|
---|
419 | static const char main_key_in_tam_unicode[MAIN_LEN][2] =
|
---|
420 | {
|
---|
421 | "\x0\x0","\x83\x83","\x0\x0","\x9c\x9c","\xb7\xb7","\xb8\xb8","\xb9\xb9","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
422 | "\x9e\x9e","\xb1\xb1","\xa8\xa8","\x9a\x9a","\xb5\xb5","\xb2\xb2","\xb0\xb0","\xc8\x90","\xca\xcb","\xbf\xc0","\xc1\xc2","\x0\x0",
|
---|
423 | "\xaf\xaf","\xb3\xb3","\xa9\xa9","\x95\x95","\xaa\xaa","\xbe\xb4","\xa4\xa4","\xae\xae","\x9f\x9f","\xcd\xcd","\x99\x99","\\|",
|
---|
424 | "\xa3\xa3","\x92\x93","\x89\x8a","\x8e\x8f","\xc6\xc7","\x94\xcc","\x85\x86","\x87\x88","\x0\x0","\x0\x0","<>","\x0\x0","\x0\x0"
|
---|
425 | };
|
---|
426 |
|
---|
427 | /* India, Tamil TAB Typewriter */
|
---|
428 | static const char main_key_in_tam_TAB[MAIN_LEN][2] =
|
---|
429 | {
|
---|
430 | "\x0\x0","\xe7\xa7","\xfa\xa8","\xfb\xfb","\xfc\xfc","\xfd\xfd","\xfe\xfe","\xff\xff","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
431 | "\xeb\xb3","\xf8\xc1","\xef\xb8","\xea\xb2","\xf5\xbe","\xf4\xbd","\xf3\xbc","\xac\xe4","\xae\xaf","\xa4\xa6","R\xa6","\x0\x0",
|
---|
432 | "\xf2\xbb","\xf7\xc0","\xf9\xc2","\xe8\xb0","\xf0\xb9","\xa2\xa3","\xee\xb6","\xf1\xba","\xec\xb4","\xf6\xbf","\xe9\xb1","\\|",
|
---|
433 | "\xed\xb5","\xe5\xe6","\xe0\xe1","\xe2\xe3","\xaa\xab","\xac\xa3","\xdc\xdd","\xde\xdf","\x0\x0","\x0\x0","<>","\x0\x0","\x0\x0"
|
---|
434 | };
|
---|
435 |
|
---|
436 | /* India, Tamil TSCII Typewriter */
|
---|
437 | static const char main_key_in_tam_TSCII[MAIN_LEN][2] =
|
---|
438 | {
|
---|
439 | "\x0\x0","\xb7\xa4","\x82\xa5","\x83\x88","\x84\x89","\x85\x8a","\x86\x8b","\x87\x8c","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
440 | "\xbb\x9a","\xc8\xda","\xbf\xd1","\xba\xcd","\xc5\xd7","\xc4\xd6","\xc3\xd5","\xa8\xb3","\xca\xcb","\xa2\xa3","Q\xa3","\x0\x0",
|
---|
441 | "\xc2\xd4","\xc7\xd9","\xc9\xdb","\xb8\xcc","\xc0\xd2","P\xa1","\xbe\xd0","\xc1\xd3","\xbc\xce","\xc6\xd8","\xb9\x99","\\|",
|
---|
442 | "\xbd\xcf","\xb4\xb5","\xaf\xb0","\xb1\xb2","\xa6\xa7","\xb6\xaa","\xab\xac","\xfe\xae","\x0\x0","\x0\x0","<>","\x0\x0","\x0\x0"
|
---|
443 | };
|
---|
444 |
|
---|
445 | /* India, Tamil */
|
---|
446 | static const char main_key_in_tam[MAIN_LEN][2] =
|
---|
447 | {
|
---|
448 | "\xca\x92","\xe7\xe7","\xe8\xe8","\xe9\xe9","\xea\xea","\xeb\xeb","\xec\xec","\xed\xed","\xee\xee","\xef(","\xf0)","\xf1\x83","\xf2+",
|
---|
449 | "\xcc\x94","\xc8\x90","\xbe\x86","\xc0\x88","\xc2\x8a","\x0\x0","\xb9\x99","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x9e\x9e",
|
---|
450 | "\xcb\x93","\xc7\x8f","\xcd\x85","\xbf\x87","\xc1\x89","\xaa\xaa","\xb0\xb1","\x95\x95","\xa4\xa4","\x9a\x9a","\x9f\x9f","\\|",
|
---|
451 | "\xc6\x8e","\x82\x82","\xae\xa3","\xa8\xa9","\xb5\xb4","\xb2\xb3","\xb8\xb8",",\xb7",".d","\xaf?","<>","\x0\x0","\x0\x0"
|
---|
452 | };
|
---|
453 |
|
---|
454 | /* India, Telugu */
|
---|
455 | static const char main_key_in_tel[MAIN_LEN][2] =
|
---|
456 | {
|
---|
457 | "J\x12","gg","hh","i#","j$","k%","l^","m&","n*","o(","f)","\x3_","C\xb",
|
---|
458 | "L\x14","H\x10",">\x6","@\x8","B\xa",",-","9\x19","\x17\x18","&'","\x1c\x1d","!\"","\x1e\x1e",
|
---|
459 | "K\x13","G\xf","M\x5","?\x7","A\x9","*+","01","\x15\x16","$%","\x1a\x1b","\x1f\x20","\\|",
|
---|
460 | "F\xe","\x2\x1",".#","((","55","23","86",",7","..","/@","<>","\x0\x0","\x0\x0"
|
---|
461 | };
|
---|
462 |
|
---|
463 | /* India, Urdu */
|
---|
464 | static const char main_key_in_urd[MAIN_LEN][2] =
|
---|
465 | {
|
---|
466 | "\xd4\xd4","a!","b@","c#","\xf4$","\xf5%","f^","g&","h*","i(","`)","-_","=+",
|
---|
467 | "\xe2\xe1","H\xf9","9\xf7","1\x91","\xcay","\xd2|","!L","\xccV","G)","~O","[{","]}",
|
---|
468 | "'\"","\xd3""5","/\x88","Ap","\xaf:","\xbe-",",6","\xa9.","D\x12","\x1b:","''","\\|",
|
---|
469 | "\xd2\xd0","4\x98","\x86+","78","((","F\xba","EE","\xcN","\xd4P","/\xbf","<>","\x0\x0","\x0\x0"
|
---|
470 | };
|
---|
471 |
|
---|
472 | /* Bosnia and Herzegovina */
|
---|
473 | static const char main_key_ba[MAIN_LEN][2] =
|
---|
474 | {
|
---|
475 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
476 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xb9\xa9","\xf0\xd0",
|
---|
477 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe8\xc8","\xe6\xc6","\xbe\xae",
|
---|
478 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
479 | };
|
---|
480 |
|
---|
481 | /* Bosnia and Herzegovina, Use Bosnian digraphs */
|
---|
482 | static const char main_key_ba_unicode[MAIN_LEN][2] =
|
---|
483 | {
|
---|
484 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
485 | "\xc9\xc8","\xcc\xcb","eE","rR","tT","zZ","uU","iI","oO","pP","\xb9\xa9","\xf0\xd0",
|
---|
486 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe8\xc8","\xe6\xc6","\xbe\xae",
|
---|
487 | "\xbe\xae","\xc6\xc5","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
488 | };
|
---|
489 |
|
---|
490 | /* Bosnia and Herzegovina, US keyboard with Bosnian digraphs */
|
---|
491 | static const char main_key_ba_unicodeus[MAIN_LEN][2] =
|
---|
492 | {
|
---|
493 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
494 | "\xc9\xc8","\xcc\xcb","eE","rR","tT","\xbe\xae","uU","iI","oO","pP","\xb9\xa9","\xf0\xd0",
|
---|
495 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe8\xc8","\xe6\xc6","\xbe\xae",
|
---|
496 | "zZ","\xc6\xc5","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
497 | };
|
---|
498 |
|
---|
499 | /* Bosnia and Herzegovina, US keyboard with Bosnian letters */
|
---|
500 | static const char main_key_ba_us[MAIN_LEN][2] =
|
---|
501 | {
|
---|
502 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
503 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xb9\xa9","\xf0\xd0",
|
---|
504 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe8\xc8","\xe6\xc6","\xbe\xae",
|
---|
505 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
506 | };
|
---|
507 |
|
---|
508 | /* Brazil */
|
---|
509 | static const char main_key_br[MAIN_LEN][2] =
|
---|
510 | {
|
---|
511 | "'\"","1!","2@","3#","4$","5%","6W","7&","8*","9(","0)","-_","=+",
|
---|
512 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","QP","[{",
|
---|
513 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","SR","]}",
|
---|
514 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>",";:","\\|","/?","\x0\x0"
|
---|
515 | };
|
---|
516 |
|
---|
517 | /* Brazil, Eliminate dead keys */
|
---|
518 | static const char main_key_br_nodeadkeys[MAIN_LEN][2] =
|
---|
519 | {
|
---|
520 | "'\"","1!","2@","3#","4$","5%","6\xa8","7&","8*","9(","0)","-_","=+",
|
---|
521 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","'`","[{",
|
---|
522 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","~^","]}",
|
---|
523 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>",";:","\\|","/?","\x0\x0"
|
---|
524 | };
|
---|
525 |
|
---|
526 | /* Brazil with alternative 102 */
|
---|
527 | static const char main_key_br_alt_102[MAIN_LEN][2] =
|
---|
528 | {
|
---|
529 | "'\"","1!","2@","3#","4$","5%","6W","7&","8*","9(","0)","-_","=+",
|
---|
530 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","QP","[{",
|
---|
531 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","SR","]}",
|
---|
532 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>",";:","<>","/?","\x0\x0"
|
---|
533 | };
|
---|
534 |
|
---|
535 | /* Brazil with alternative 102, Eliminate dead keys */
|
---|
536 | static const char main_key_br_alt_102_nodeadkeys[MAIN_LEN][2] =
|
---|
537 | {
|
---|
538 | "'\"","1!","2@","3#","4$","5%","6\xa8","7&","8*","9(","0)","-_","=+",
|
---|
539 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","'`","[{",
|
---|
540 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","~^","]}",
|
---|
541 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>",";:","<>","/?","\x0\x0"
|
---|
542 | };
|
---|
543 |
|
---|
544 | /* Bulgaria */
|
---|
545 | static const char main_key_bg[MAIN_LEN][2] =
|
---|
546 | {
|
---|
547 | "()","1!","2?","3+","4\"","5%","6=","7:","8/","9\xa9","0\xb0","-I",".V",
|
---|
548 | ",\xd9","\xd5\xf5","\xc5\xe5","\xc9\xe9","\xdb\xfb","\xdd\xfd","\xcb\xeb","\xd3\xf3","\xc4\xe4","\xda\xfa","\xc3\xe3",";\xa7",
|
---|
549 | "\xd8\xf8","\xd1\xf1","\xc1\xe1","\xcf\xef","\xd6\xf6","\xc7\xe7","\xd4\xf4","\xce\xee","\xd7\xf7","\xcd\xed","\xde\xfe","'\xf9",
|
---|
550 | "\xc0\xe0","\xca\xea","\xdf\xff","\xdc\xfc","\xc6\xe6","\xc8\xe8","\xd0\xf0","\xd2\xf2","\xcc\xec","\xc2\xe2","<>","\x0\x0","\x0\x0"
|
---|
551 | };
|
---|
552 |
|
---|
553 | /* Bulgaria, Phonetic */
|
---|
554 | static const char main_key_bg_phonetic[MAIN_LEN][2] =
|
---|
555 | {
|
---|
556 | "\xde\xfe","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
557 | "\xd1\xf1","\xd7\xf7","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xdf\xff","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xdd\xfd",
|
---|
558 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xca\xea","\xcb\xeb","\xcc\xec",";:","'\"","\xc0\xe0",
|
---|
559 | "\xda\xfa","\xd8\xf8","\xc3\xe3","\xd6\xf6","\xc2\xe2","\xce\xee","\xcd\xed",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
560 | };
|
---|
561 |
|
---|
562 | /* Myanmar */
|
---|
563 | static const char main_key_mm[MAIN_LEN][2] =
|
---|
564 | {
|
---|
565 | "\x0\x0","A!","BB","CC","DD","EE","FF","GG","HH","I(","@)","-8","RV",
|
---|
566 | "**","22",",!",".$","0&","\x17\x18","\x1f\x4","\x2\x3","\x12\x13","\x7\x8","\xd\xe","\xa\x9",
|
---|
567 | "))","''","9!","-#","/%","\x15\x16","\x1b\x1b","\x0\x1","\x10\x11","\x5\x6","\xb\xc","NO",
|
---|
568 | "LM","76","\x19\xf","\x14\x14","\x17\x17","\x1c\x1c","\x1eP",",Q",".J","/\x1a","<>","\x0\x0","\x0\x0"
|
---|
569 | };
|
---|
570 |
|
---|
571 | /* Canada */
|
---|
572 | static const char main_key_ca[MAIN_LEN][2] =
|
---|
573 | {
|
---|
574 | "#|","1!","2\"","3/","4$","5%","6?","7&","8*","9(","0)","-_","=+",
|
---|
575 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","RR","[W",
|
---|
576 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","PP","<>",
|
---|
577 | "zZ","xX","cC","vV","bB","nN","mM",",'","..","\xe9\xc9","\xab\xbb","\x0\x0","\x0\x0"
|
---|
578 | };
|
---|
579 |
|
---|
580 | /* Canada, French Dvorak */
|
---|
581 | static const char main_key_ca_fr_dvorak[MAIN_LEN][2] =
|
---|
582 | {
|
---|
583 | "#|","1!","2\"","3/","4$","5%","6?","7&","8*","9(","0)","RR","[W",
|
---|
584 | "PP",",'","..","pP","yY","fF","gG","cC","rR","lL","\xe9\xc9","=+",
|
---|
585 | "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","<>",
|
---|
586 | ";:","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","\xab\xbb","\x0\x0","\x0\x0"
|
---|
587 | };
|
---|
588 |
|
---|
589 | /* Canada, French (legacy) */
|
---|
590 | static const char main_key_ca_fr_legacy[MAIN_LEN][2] =
|
---|
591 | {
|
---|
592 | "\xb0\xb0","1!","2\"","3#","4$","5%","6?","7&","8*","9(","0)","-_","=+",
|
---|
593 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","RR","\xe7\xc7",
|
---|
594 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","\xe8\xc8","\xe0\xc0",
|
---|
595 | "zZ","xX","cC","vV","bB","nN","mM",",'","..","\xe9\xc9","\xf9\xd9","\x0\x0","\x0\x0"
|
---|
596 | };
|
---|
597 |
|
---|
598 | /* Canada, Multilingual */
|
---|
599 | static const char main_key_ca_multix[MAIN_LEN][2] =
|
---|
600 | {
|
---|
601 | "/\\","1!","2@","3#","4$","5%","6?","7&","8*","9(","0)","-_","=+",
|
---|
602 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","RW","\xe7\xc7",
|
---|
603 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","\xe8\xc8","\xe0\xc0",
|
---|
604 | "zZ","xX","cC","vV","bB","nN","mM",",'",".\"","\xe9\xc9","\xf9\xd9","\x0\x0","\x0\x0"
|
---|
605 | };
|
---|
606 |
|
---|
607 | /* Canada, Multilingual, second part */
|
---|
608 | static const char main_key_ca_multi_2gr[MAIN_LEN][2] =
|
---|
609 | {
|
---|
610 | "\x0\xad","\xb9\xa1","\xb2\xb2","\xb3\xa3","\xbc\xa4","\xbd\xc4","\xbe\xc5","\x0\xc6","\x0\xc9","\x0\xb1","\x0\x0","\x0\xbf","[\\",
|
---|
611 | "\x0\xd9","\xb3\xa3","\xbd\xbc","\xb6\xae","\xbc\xac","\xfb\xa5","\xfe\xfc","\xfd\xb9","\xf8\xd8","\xfe\xde","\x0X","ST",
|
---|
612 | "\xe6\xc6","\xdf\xa7","\xf0\xd0","\x0\xaa","\xbf\xbd","\xb1\xa1","32","\xa2\xa2","@?","QY","\x0Z","\\U",
|
---|
613 | "\x0\x0","\x0\x0","\xa2\xa9","\xd2\xd0","\xd3\xd1","Ij","\xb5\xba","\xaf\xd7","\xb7\xf7","\x0V","<\xa6","\x0\x0","\x0\x0"
|
---|
614 | };
|
---|
615 |
|
---|
616 | /* Canada, Inuktitut */
|
---|
617 | static const char main_key_ca_ike[MAIN_LEN][2] =
|
---|
618 | {
|
---|
619 | "{u","\x95""1","I2","P3","\x83""4","f5","\x85""6","\xbb""7","\xd0""8","\xea""9",">0","-_","]=",
|
---|
620 | "\x8f\x8b","\x3""1","\x7f""F","m\x96","Nq","\xefs","\xa5u","\xc2\xa4","\xd5\xa0","(\xa6","\xa1\x5","V\x1e",
|
---|
621 | "\x91\x8d","\x5""3","\x81H","oU","P(","\xf1)","\xa7*","\xc4W","\xd7\xa2",";:","'\"","\\|",
|
---|
622 | "\x93\x90","\xa""8","\x83K","r?","U|","\xf4\xc7","\xaa\xda",",<",".>","-Y","yw","\x0\x0","\x0\x0"
|
---|
623 | };
|
---|
624 |
|
---|
625 | /* Congo, Democratic Republic of the */
|
---|
626 | static const char main_key_cd[MAIN_LEN][2] =
|
---|
627 | {
|
---|
628 | "`~","&1","\x1""2","\x0""3","(4","{5","}6",")7","\x2""8","\xc""9","\x8""0","-_","=+",
|
---|
629 | "aA","wW","eE","rR","tT","yY","uU","iI","oO","pP","[\x90","*^",
|
---|
630 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","T\x86","\"\\",
|
---|
631 | "zZ","xX","cC","vV","bB","nN",",.",";:","!?","'/","\\|","\x0\x0","\x0\x0"
|
---|
632 | };
|
---|
633 |
|
---|
634 | /* Czechia */
|
---|
635 | static const char main_key_cz[MAIN_LEN][2] =
|
---|
636 | {
|
---|
637 | ";X","+1","\xec""2","\xb9""3","\xe8""4","\xf8""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
638 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfa/",")(",
|
---|
639 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf9\"","\xa7!","W'",
|
---|
640 | "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
641 | };
|
---|
642 |
|
---|
643 | /* Czechia, With <|> key */
|
---|
644 | static const char main_key_cz_bksl[MAIN_LEN][2] =
|
---|
645 | {
|
---|
646 | ";X","+1","\xec""2","\xb9""3","\xe8""4","\xf8""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
647 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfa/",")(",
|
---|
648 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf9\"","\xa7!","\\|",
|
---|
649 | "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
650 | };
|
---|
651 |
|
---|
652 | /* Czechia, qwerty */
|
---|
653 | static const char main_key_cz_qwerty[MAIN_LEN][2] =
|
---|
654 | {
|
---|
655 | ";X","+1","\xec""2","\xb9""3","\xe8""4","\xf8""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
656 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfa/",")(",
|
---|
657 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf9\"","\xa7!","W'",
|
---|
658 | "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
659 | };
|
---|
660 |
|
---|
661 | /* Czechia, qwerty, extended Backslash */
|
---|
662 | static const char main_key_cz_qwerty_bksl[MAIN_LEN][2] =
|
---|
663 | {
|
---|
664 | ";X","+1","\xec""2","\xb9""3","\xe8""4","\xf8""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
665 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfa/",")(",
|
---|
666 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf9\"","\xa7!","\\|",
|
---|
667 | "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
668 | };
|
---|
669 |
|
---|
670 | /* Denmark */
|
---|
671 | static const char main_key_dk[MAIN_LEN][2] =
|
---|
672 | {
|
---|
673 | "\xbd\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","QP",
|
---|
674 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","WR",
|
---|
675 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe6\xc6","\xf8\xd8","'*",
|
---|
676 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
677 | };
|
---|
678 |
|
---|
679 | /* Denmark, Eliminate dead keys */
|
---|
680 | static const char main_key_dk_nodeadkeys[MAIN_LEN][2] =
|
---|
681 | {
|
---|
682 | "\xbd\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","\xb4`",
|
---|
683 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xa8^",
|
---|
684 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe6\xc6","\xf8\xd8","'*",
|
---|
685 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
686 | };
|
---|
687 |
|
---|
688 | /* Netherlands */
|
---|
689 | static const char main_key_nl[MAIN_LEN][2] =
|
---|
690 | {
|
---|
691 | "@\xa7","1!","2\"","3#","4$","5%","6&","7_","8(","9)","0'","/?","\xb0S",
|
---|
692 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","WR","*|",
|
---|
693 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","+\xb1","'`","<>",
|
---|
694 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-=","][","\x0\x0","\x0\x0"
|
---|
695 | };
|
---|
696 |
|
---|
697 | /* Bhutan */
|
---|
698 | static const char main_key_bt[MAIN_LEN][2] =
|
---|
699 | {
|
---|
700 | "\x9\xa","!\x4","\"\x5","#\x6","$H","%p","&\x8","'8","(4",")<","\x20=","\x14\x7f","\xd\x11",
|
---|
701 | "@\x90","A\x91","B\x92","D\x94","r\x80","t\x84","z{","|}","E\x95","F\x96","G\x97","I\x99",
|
---|
702 | "O\x9f","P\xa0","Q\xa1","S\xa3","T\xa4","U\xa5","V\xa6","X\xa8","Y\xa9","Z\xaa","[\xab","]\xad",
|
---|
703 | "^\xae","_\xaf","`q","a\xb1","b\xb2","c\xb3","d\xb4","f\xb6","g\xb7","h\xb8","\xd\x11","\x0\x0","\x0\x0"
|
---|
704 | };
|
---|
705 |
|
---|
706 | /* Estonia */
|
---|
707 | static const char main_key_ee[MAIN_LEN][2] =
|
---|
708 | {
|
---|
709 | "ZS","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","QP",
|
---|
710 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfc\xdc","\xf5\xd5",
|
---|
711 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","'*",
|
---|
712 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
713 | };
|
---|
714 |
|
---|
715 | /* Estonia, Eliminate dead keys */
|
---|
716 | static const char main_key_ee_nodeadkeys[MAIN_LEN][2] =
|
---|
717 | {
|
---|
718 | "^~","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","'`",
|
---|
719 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfc\xdc","\xf5\xd5",
|
---|
720 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","'*",
|
---|
721 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
722 | };
|
---|
723 |
|
---|
724 | /* Iran */
|
---|
725 | static const char main_key_ir[MAIN_LEN][2] =
|
---|
726 | {
|
---|
727 | "\xd\xf7","\xf1!","\xf2l","\xf3k","\xf4\xfc","\xf5j","\xf6\xd7","\xf7\xac","\xf8*","\xf9)","\xf0(","-\xe0","=+",
|
---|
728 | "\xd6\xf2","\xd5\xec","\xcb\xed","\xe2\xeb","\xe1\xef","\xda\xf0","\xd9\xee","\xe7\xf1","\xce]","\xcd[","\xcc}","\x86{",
|
---|
729 | "\xd4\xc4","\xd3\xc6","\xcc\xea","\xc8\xc5","\xe4\xc3","\xc7\xc2","\xca\xc9","\xe6\xbb","\xe5\xab","\xa9:","\xaf\xbb","\\|",
|
---|
730 | "\xd8\xe3","\xd7S","\xd2\x98","\xd1p","\xd0\xc","\xcfT","~\xc1","\xe8>",".<","/\xbf","<>","\x0\x0","\x0\x0"
|
---|
731 | };
|
---|
732 |
|
---|
733 | /* Iran, Kurdish, Latin Q */
|
---|
734 | static const char main_key_ir_ku[MAIN_LEN][2] =
|
---|
735 | {
|
---|
736 | "\"\\","1!","2'","3^","4+","5%","6&","7/","8(","9)","0=","*?","-_",
|
---|
737 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","xX","\xfb\xdb",
|
---|
738 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xba\xaa","\xee\xce",",;",
|
---|
739 | "zZ","xX","cC","vV","bB","nN","mM","\xea\xca","\xe7\xc7",".:","<>","\x0\x0","\x0\x0"
|
---|
740 | };
|
---|
741 |
|
---|
742 | /* Iran, Kurdish, (F) */
|
---|
743 | static const char main_key_ir_ku_f[MAIN_LEN][2] =
|
---|
744 | {
|
---|
745 | "+*","1!","2\"","3^","4$","5%","6&","7'","8(","9)","0=","/?","-_",
|
---|
746 | "fF","gG","xX","iI","oO","dD","rR","nN","hH","pP","qQ","wW",
|
---|
747 | "\xfb\xdb","\xee\xce","eE","aA","uU","tT","kK","mM","lL","yY","\xba\xaa","xX",
|
---|
748 | "jJ","\xea\xca","vV","cC","\xe7\xc7","zZ","sS","bB",".:",",;","<>","\x0\x0","\x0\x0"
|
---|
749 | };
|
---|
750 |
|
---|
751 | /* Iran, Kurdish, Arabic-Latin */
|
---|
752 | static const char main_key_ir_ku_ara[MAIN_LEN][2] =
|
---|
753 | {
|
---|
754 | "\xd\xf7","1!","2@","3#","4$","5%","6^","7&","8*","9)","0(","-\xe0","=+",
|
---|
755 | "\xe2X","\xe8X","\xd5\xe7","\xd1\x95","\xca\xd7","\xcc\xce","\xc6\xc1","\xcd\xd9","\xc6\xc4","~\xcb","]}","[{",
|
---|
756 | "\xc7\xc2","\xd3\xd4","\xcf\xd0","\xe1\xc5","\xaf\xda","\xe7\xc","\x98\xc3","\xa9\xe3","\xe4\xb5","\xbb:","'\"","\\|",
|
---|
757 | "\xd2\xd6","\xce\xd5","\xcc\x86","\xa4\xd8","\xc8I","\xe6\xc9","\xe5\xe0","\xac>",".<","/\xbf","<>","\x0\x0","\x0\x0"
|
---|
758 | };
|
---|
759 |
|
---|
760 | /* Faroe Islands */
|
---|
761 | static const char main_key_fo[MAIN_LEN][2] =
|
---|
762 | {
|
---|
763 | "\xbd\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","QP",
|
---|
764 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xf0\xd0",
|
---|
765 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe6\xc6","\xf8\xd8","'*",
|
---|
766 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
767 | };
|
---|
768 |
|
---|
769 | /* Finland */
|
---|
770 | static const char main_key_fi[MAIN_LEN][2] =
|
---|
771 | {
|
---|
772 | "\xa7\xbd","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","QP",
|
---|
773 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","WR",
|
---|
774 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","'*",
|
---|
775 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
776 | };
|
---|
777 |
|
---|
778 | /* Finland, Eliminate dead keys */
|
---|
779 | static const char main_key_fi_nodeadkeys[MAIN_LEN][2] =
|
---|
780 | {
|
---|
781 | "\xa7\xbd","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","\xb4`",
|
---|
782 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xa8^",
|
---|
783 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","'*",
|
---|
784 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
785 | };
|
---|
786 |
|
---|
787 | /* Finland, Northern Saami */
|
---|
788 | static const char main_key_fi_smi[MAIN_LEN][2] =
|
---|
789 | {
|
---|
790 | "|\xa7","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","+?","\\`",
|
---|
791 | "\xe1\xc1","\xb9\xa9","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xbf\xbd",
|
---|
792 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","\xf0\xd0",
|
---|
793 | "zZ","\xe8\xc8","cC","vV","bB","nN","mM",",;",".:","-_","\xbe\xae","\x0\x0","\x0\x0"
|
---|
794 | };
|
---|
795 |
|
---|
796 | /* Finland, Macintosh */
|
---|
797 | static const char main_key_fi_mac[MAIN_LEN][2] =
|
---|
798 | {
|
---|
799 | "\xa7\xb0","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","\xb4`",
|
---|
800 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xa8^",
|
---|
801 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","'*",
|
---|
802 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
803 | };
|
---|
804 |
|
---|
805 | /* France */
|
---|
806 | static const char main_key_fr[MAIN_LEN][2] =
|
---|
807 | {
|
---|
808 | "\xb2~","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
809 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","RW","$\xa3",
|
---|
810 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
811 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
812 | };
|
---|
813 |
|
---|
814 | /* France, Eliminate dead keys */
|
---|
815 | static const char main_key_fr_nodeadkeys[MAIN_LEN][2] =
|
---|
816 | {
|
---|
817 | "\xb2~","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
818 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","^\xa8","$\xa3",
|
---|
819 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
820 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
821 | };
|
---|
822 |
|
---|
823 | /* France, Sun dead keys */
|
---|
824 | static const char main_key_fr_sundeadkeys[MAIN_LEN][2] =
|
---|
825 | {
|
---|
826 | "\xb2~","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
827 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","\x1\x4","$\xa3",
|
---|
828 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
829 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
830 | };
|
---|
831 |
|
---|
832 | /* France, Alternative */
|
---|
833 | static const char main_key_fr_oss[MAIN_LEN][2] =
|
---|
834 | {
|
---|
835 | "\xf8\xd8","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
836 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","RW","$\xa3",
|
---|
837 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
838 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
839 | };
|
---|
840 |
|
---|
841 | /* France, Alternative, eliminate dead keys */
|
---|
842 | static const char main_key_fr_oss_nodeadkeys[MAIN_LEN][2] =
|
---|
843 | {
|
---|
844 | "\xf8\xd8","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
845 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","^\xa8","$\xa3",
|
---|
846 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
847 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
848 | };
|
---|
849 |
|
---|
850 | /* France, Alternative, Sun dead keys */
|
---|
851 | static const char main_key_fr_oss_sundeadkeys[MAIN_LEN][2] =
|
---|
852 | {
|
---|
853 | "\xf8\xd8","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
854 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","\x1\x4","$\xa3",
|
---|
855 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
856 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
857 | };
|
---|
858 |
|
---|
859 | /* France, (Legacy) Alternative */
|
---|
860 | static const char main_key_fr_latin9[MAIN_LEN][2] =
|
---|
861 | {
|
---|
862 | "\xbd\xbc","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
863 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","RW","$\xa3",
|
---|
864 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
865 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
866 | };
|
---|
867 |
|
---|
868 | /* France, (Legacy) Alternative, eliminate dead keys */
|
---|
869 | static const char main_key_fr_latin9_nodeadkeys[MAIN_LEN][2] =
|
---|
870 | {
|
---|
871 | "\xbd\xbc","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
872 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","^\xa8","$\xa3",
|
---|
873 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
874 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
875 | };
|
---|
876 |
|
---|
877 | /* France, (Legacy) Alternative, Sun dead keys */
|
---|
878 | static const char main_key_fr_latin9_sundeadkeys[MAIN_LEN][2] =
|
---|
879 | {
|
---|
880 | "\xbd\xbc","&1","\xe9""2","\"3","'4","(5","-6","\xe8""7","_8","\xe7""9","\xe0""0",")\xb0","=+",
|
---|
881 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","\x1\x4","$\xa3",
|
---|
882 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","*\xb5",
|
---|
883 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","!\xa7","<>","\x0\x0","\x0\x0"
|
---|
884 | };
|
---|
885 |
|
---|
886 | /* France, Bepo */
|
---|
887 | static const char main_key_fr_bepo[MAIN_LEN][2] =
|
---|
888 | {
|
---|
889 | "$#","\"1","\xab""2","\xbb""3","(4",")5","@6","+7","-8","/9","*0","=\xb0","%`",
|
---|
890 | "bB","\xe9\xc9","pP","oO","\xe8\xc8","^!","vV","dD","lL","jJ","zZ","wW",
|
---|
891 | "aA","uU","iI","eE",",;","cC","tT","sS","rR","nN","mM","\xe7\xc7",
|
---|
892 | "\xe0\xc0","yY","xX",".:","kK","'?","qQ","gG","hH","fF","\xea\xca","\x0\x0","\x0\x0"
|
---|
893 | };
|
---|
894 |
|
---|
895 | /* France, Dvorak */
|
---|
896 | static const char main_key_fr_dvorak[MAIN_LEN][2] =
|
---|
897 | {
|
---|
898 | "\xbd\xbc","/1","+2","-3","*4","=5","\\6","(7","`8",")9","\"0","[{","]}",
|
---|
899 | ":?","\xe0\xc0","\xe9\xc9","gG",".!","hH","vV","cC","mM","kK","\xe8\xc8","zZ",
|
---|
900 | "oO","aA","uU","eE","bB","fF","sS","tT","nN","dD","wW","\xf9\xd9",
|
---|
901 | "'_","qQ",",;","iI","yY","xX","rR","lL","pP","jJ","\xe7\xc7","\x0\x0","\x0\x0"
|
---|
902 | };
|
---|
903 |
|
---|
904 | /* France, Macintosh */
|
---|
905 | static const char main_key_fr_mac[MAIN_LEN][2] =
|
---|
906 | {
|
---|
907 | "@#","&1","\xe9""2","\"3","'4","(5","\xa7""6","\xe8""7","!8","\xe7""9","\xe0""0",")\xb0","-_",
|
---|
908 | "aA","zZ","eE","rR","tT","yY","uU","iI","oO","pP","RW","$*",
|
---|
909 | "qQ","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","P\xa3",
|
---|
910 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","=+","<>","\x0\x0","\x0\x0"
|
---|
911 | };
|
---|
912 |
|
---|
913 | /* Ghana */
|
---|
914 | static const char main_key_gh[MAIN_LEN][2] =
|
---|
915 | {
|
---|
916 | "`~","1!","2@","3#","4\xb5","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
917 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
918 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
919 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
920 | };
|
---|
921 |
|
---|
922 | /* Ghana, Akan */
|
---|
923 | static const char main_key_gh_akan[MAIN_LEN][2] =
|
---|
924 | {
|
---|
925 | "`~","1!","2@","3#","4\xb5","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
926 | "[\x90","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
927 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
928 | "zZ","T\x86","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
929 | };
|
---|
930 |
|
---|
931 | /* Ghana, Ewe */
|
---|
932 | static const char main_key_gh_ewe[MAIN_LEN][2] =
|
---|
933 | {
|
---|
934 | "`~","1!","2@","3#","4\xb5","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
935 | "[\x90","wW","eE","rR","tT","yY","uU","iI","oO","pP","T\x86","\x8b\xb2",
|
---|
936 | "aA","sS","dD","fF","gG","hH","\x92\x91","kK","lL",";:","'\"","\\|",
|
---|
937 | "zZ","xX","KJ","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
938 | };
|
---|
939 |
|
---|
940 | /* Ghana, Fula */
|
---|
941 | static const char main_key_gh_fula[MAIN_LEN][2] =
|
---|
942 | {
|
---|
943 | "`~","1!","2@","3#","4\xb5","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
944 | "qQ","\xfc\xdc","eE","rR","tT","yY","uU","iI","oO","pP","\xb4\xb3","\xe7\xe6",
|
---|
945 | "aA","sS","W\x8a","fF","gG","hH","jJ","kK","lL","10","\xdd\x8e","\\|",
|
---|
946 | "r\x9d","xX","cC","vV","bB","nN","\xf1\xd1",",<","\xe7\xc7","\xba\xaa","<>","\x0\x0","\x0\x0"
|
---|
947 | };
|
---|
948 |
|
---|
949 | /* Ghana, Ga */
|
---|
950 | static const char main_key_gh_ga[MAIN_LEN][2] =
|
---|
951 | {
|
---|
952 | "`~","1!","2@","3#","4\xb5","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
953 | "[\x90","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
954 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
955 | "zZ","T\x86","KJ","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
956 | };
|
---|
957 |
|
---|
958 | /* Georgia */
|
---|
959 | static const char main_key_ge[MAIN_LEN][2] =
|
---|
960 | {
|
---|
961 | "\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
962 | "\xe5q","\xec\xed","\xd4""e","\xe0\xe6","\xe2\xd7","\xe7y","\xe3u","\xd8i","\xddo","\xdep","[{","]}",
|
---|
963 | "\xd0""a","\xe1\xe8","\xd3""d","\xe4""f","\xd2g","\xf0h","\xef\xdf","\xd9k","\xdal",";:","'\"","\\|",
|
---|
964 | "\xd6\xeb","\xeex","\xea\xe9","\xd5v","\xd1""b","\xdcn","\xdbm",",<",".>","/?","\xab\xbb","\x0\x0","\x0\x0"
|
---|
965 | };
|
---|
966 |
|
---|
967 | /* Georgia, Russian */
|
---|
968 | static const char main_key_ge_ru[MAIN_LEN][2] =
|
---|
969 | {
|
---|
970 | "^~","1!","2@","3#","4;","5:","6,","7.","8*","9(","0)","-_","#|",
|
---|
971 | "\xe6q","\xeaw","\xe3""e","\xd9r","\xd4t","\xdcy","\xd2u","\xe8i","\xeco","\xd6p","\xee[","\xef]",
|
---|
972 | "\xe4""a","\xd7s","\xd5""d","\xd0""f","\xdeg","\xe0h","\xddj","\xdak","\xd3l","\xdf;","\xeb%","\\|",
|
---|
973 | "\xedz","\xe9x","\xe1""c","\xdbv","\xd8""b","\xe2n","\xe5m","\xd1<","\xe7>","\xf0?","\xab\xbb","\x0\x0","\x0\x0"
|
---|
974 | };
|
---|
975 |
|
---|
976 | /* Germany */
|
---|
977 | static const char main_key_de[MAIN_LEN][2] =
|
---|
978 | {
|
---|
979 | "R\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","\xdf?","QP",
|
---|
980 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
981 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
982 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
983 | };
|
---|
984 |
|
---|
985 | /* Germany, Dead acute */
|
---|
986 | static const char main_key_de_deadacute[MAIN_LEN][2] =
|
---|
987 | {
|
---|
988 | "^\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","\xdf?","Q`",
|
---|
989 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
990 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
991 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
992 | };
|
---|
993 |
|
---|
994 | /* Germany, Dead grave acute */
|
---|
995 | static const char main_key_de_deadgraveacute[MAIN_LEN][2] =
|
---|
996 | {
|
---|
997 | "^\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","\xdf?","QP",
|
---|
998 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
999 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1000 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1001 | };
|
---|
1002 |
|
---|
1003 | /* Germany, Eliminate dead keys */
|
---|
1004 | static const char main_key_de_nodeadkeys[MAIN_LEN][2] =
|
---|
1005 | {
|
---|
1006 | "^\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","\xdf?","\xb4`",
|
---|
1007 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1008 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1009 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1010 | };
|
---|
1011 |
|
---|
1012 | /* Germany, Eliminate dead keys, acute replaced by apostrophe */
|
---|
1013 | static const char main_key_de_nodeadkeys_noacute[MAIN_LEN][2] =
|
---|
1014 | {
|
---|
1015 | "^\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","\xdf?","\x27`",
|
---|
1016 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1017 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1018 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1019 | };
|
---|
1020 |
|
---|
1021 | /* Germany, Dvorak */
|
---|
1022 | static const char main_key_de_dvorak[MAIN_LEN][2] =
|
---|
1023 | {
|
---|
1024 | "^\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","+*","<>",
|
---|
1025 | "\xfc\xdc",",;",".:","pP","yY","fF","gG","cC","tT","zZ","?\xdf","/\\",
|
---|
1026 | "aA","oO","eE","iI","uU","hH","dD","rR","nN","sS","lL","-_",
|
---|
1027 | "\xf6\xd6","qQ","jJ","kK","xX","bB","mM","wW","vV","#'","\xe4\xc4","\x0\x0","\x0\x0"
|
---|
1028 | };
|
---|
1029 |
|
---|
1030 | /* Germany, Neostyle */
|
---|
1031 | static const char main_key_de_neo[MAIN_LEN][2] =
|
---|
1032 | {
|
---|
1033 | "R\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","-_","QP",
|
---|
1034 | "qQ","vV","lL","cC","wW","kK","hH","gG","fF","jJ","\xdf?","+*",
|
---|
1035 | "uU","iI","aA","eE","oO","sS","nN","rR","tT","dD","yY","#'",
|
---|
1036 | "\xf6\xd6","\xfc\xdc","\xe4\xc4","pP","zZ","bB","mM",",;",".:","xX","<>","\x0\x0","\x0\x0"
|
---|
1037 | };
|
---|
1038 |
|
---|
1039 | /* Germany, paragraph */
|
---|
1040 | static const char main_key_de_para[MAIN_LEN][2] =
|
---|
1041 | {
|
---|
1042 | "R\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","\xdf?","QP",
|
---|
1043 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1044 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1045 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1046 | };
|
---|
1047 |
|
---|
1048 | /* Germany, Dead acute, paragraph */
|
---|
1049 | static const char main_key_de_deadacute_para[MAIN_LEN][2] =
|
---|
1050 | {
|
---|
1051 | "^\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","\xdf?","Q`",
|
---|
1052 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1053 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1054 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1055 | };
|
---|
1056 |
|
---|
1057 | /* Germany, Dead grave acute, paragraph */
|
---|
1058 | static const char main_key_de_deadgraveacute_para[MAIN_LEN][2] =
|
---|
1059 | {
|
---|
1060 | "^\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","\xdf?","QP",
|
---|
1061 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1062 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1063 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1064 | };
|
---|
1065 |
|
---|
1066 | /* Germany, Eliminate dead keys, paragraph */
|
---|
1067 | static const char main_key_de_nodeadkeys_para[MAIN_LEN][2] =
|
---|
1068 | {
|
---|
1069 | "^\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","\xdf?","\xb4`",
|
---|
1070 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1071 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1072 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1073 | };
|
---|
1074 |
|
---|
1075 | /* Germany, Eliminate dead keys, acute replaced by apostrophe, paragraph */
|
---|
1076 | static const char main_key_de_nodeadkeys_noacute_para[MAIN_LEN][2] =
|
---|
1077 | {
|
---|
1078 | "^\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","\xdf?","\x27`",
|
---|
1079 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1080 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1081 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1082 | };
|
---|
1083 |
|
---|
1084 | /* Germany, Dvorak, paragraph */
|
---|
1085 | static const char main_key_de_dvorak_para[MAIN_LEN][2] =
|
---|
1086 | {
|
---|
1087 | "^\xb0","1!","2\"","3\xb6","4$","5%","6&","7/","8(","9)","0=","+*","<>",
|
---|
1088 | "\xfc\xdc",",;",".:","pP","yY","fF","gG","cC","tT","zZ","?\xdf","/\\",
|
---|
1089 | "aA","oO","eE","iI","uU","hH","dD","rR","nN","sS","lL","-_",
|
---|
1090 | "\xf6\xd6","qQ","jJ","kK","xX","bB","mM","wW","vV","#'","\xe4\xc4","\x0\x0","\x0\x0"
|
---|
1091 | };
|
---|
1092 |
|
---|
1093 | /* Germany, Sun dead keys */
|
---|
1094 | static const char main_key_de_sun[MAIN_LEN][2] =
|
---|
1095 | {
|
---|
1096 | "^\xb0","1!","2\"","3\xa7","4$","5%","6&","7/","8(","9)","0=","\xdf?","\x3\x0",
|
---|
1097 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1098 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#'",
|
---|
1099 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1100 | };
|
---|
1101 |
|
---|
1102 | /* Greece */
|
---|
1103 | static const char main_key_gr[MAIN_LEN][2] =
|
---|
1104 | {
|
---|
1105 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1106 | ";:","\xf3\xd2","\xe5\xc5","\xf1\xd1","\xf4\xd4","\xf5\xd5","\xe8\xc8","\xe9\xc9","\xef\xcf","\xf0\xd0","[{","]}",
|
---|
1107 | "\xe1\xc1","\xf2\xd2","\xe4\xc4","\xf6\xd6","\xe3\xc3","\xe7\xc7","\xee\xce","\xea\xca","\xeb\xcb","QW","'\"","\\|",
|
---|
1108 | "\xe6\xc6","\xf7\xd7","\xf8\xd8","\xf9\xd9","\xe2\xc2","\xed\xcd","\xec\xcc",",<",".>","/?","\xab\xbb","\x0\x0","\x0\x0"
|
---|
1109 | };
|
---|
1110 |
|
---|
1111 | /* Greece, Eliminate dead keys */
|
---|
1112 | static const char main_key_gr_nodeadkeys[MAIN_LEN][2] =
|
---|
1113 | {
|
---|
1114 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1115 | ";:","\xf3\xd2","\xe5\xc5","\xf1\xd1","\xf4\xd4","\xf5\xd5","\xe8\xc8","\xe9\xc9","\xef\xcf","\xf0\xd0","[{","]}",
|
---|
1116 | "\xe1\xc1","\xf2\xd2","\xe4\xc4","\xf6\xd6","\xe3\xc3","\xe7\xc7","\xee\xce","\xea\xca","\xeb\xcb",";:","'\"","\\|",
|
---|
1117 | "\xe6\xc6","\xf7\xd7","\xf8\xd8","\xf9\xd9","\xe2\xc2","\xed\xcd","\xec\xcc",",<",".>","/?","\xab\xbb","\x0\x0","\x0\x0"
|
---|
1118 | };
|
---|
1119 |
|
---|
1120 | /* Greece, Polytonic */
|
---|
1121 | static const char main_key_gr_polytonic[MAIN_LEN][2] =
|
---|
1122 | {
|
---|
1123 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1124 | ";:","\xf3\xd2","\xe5\xc5","\xf1\xd1","\xf4\xd4","\xf5\xd5","\xe8\xc8","\xe9\xc9","\xef\xcf","\xf0\xd0","SW","]\xff",
|
---|
1125 | "\xe1\xc1","\xf2\xd2","\xe4\xc4","\xf6\xd6","\xe3\xc3","\xe7\xc7","\xee\xce","\xea\xca","\xeb\xcb","Q\x13","P\x14","\\|",
|
---|
1126 | "\xe6\xc6","\xf7\xd7","\xf8\xd8","\xf9\xd9","\xe2\xc2","\xed\xcd","\xec\xcc",",<",".>","/?","\xab\xbb","\x0\x0","\x0\x0"
|
---|
1127 | };
|
---|
1128 |
|
---|
1129 | /* Hungary */
|
---|
1130 | static const char main_key_hu[MAIN_LEN][2] =
|
---|
1131 | {
|
---|
1132 | "0\xa7","1'","2\"","3+","4!","5%","6/","7=","8(","9)","\xf6\xd6","\xfc\xdc","\xf3\xd3",
|
---|
1133 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xf5\xd5","\xfa\xda",
|
---|
1134 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xc9","\xe1\xc1","\xfb\xdb",
|
---|
1135 | "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_","\xed\xcd","\x0\x0","\x0\x0"
|
---|
1136 | };
|
---|
1137 |
|
---|
1138 | /* Hungary, qwerty */
|
---|
1139 | static const char main_key_hu_qwerty[MAIN_LEN][2] =
|
---|
1140 | {
|
---|
1141 | "\xed\xcd","1'","2\"","3+","4!","5%","6/","7=","8(","9)","\xf6\xd6","\xfc\xdc","\xf3\xd3",
|
---|
1142 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xf5\xd5","\xfa\xda",
|
---|
1143 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xc9","\xe1\xc1","\xfb\xdb",
|
---|
1144 | "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1145 | };
|
---|
1146 |
|
---|
1147 | /* Hungary, 101/qwertz/comma/Dead keys */
|
---|
1148 | static const char main_key_hu_101_qwertz_comma_dead[MAIN_LEN][2] =
|
---|
1149 | {
|
---|
1150 | "\xed\xcd","1'","2\"","3+","4!","5%","6/","7=","8(","9)","\xf6\xd6","\xfc\xdc","\xf3\xd3",
|
---|
1151 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xf5\xd5","\xfa\xda",
|
---|
1152 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xc9","\xe1\xc1","\xfb\xdb",
|
---|
1153 | "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1154 | };
|
---|
1155 |
|
---|
1156 | /* Hungary, 102/qwerty/comma/Dead keys */
|
---|
1157 | static const char main_key_hu_102_qwerty_comma_dead[MAIN_LEN][2] =
|
---|
1158 | {
|
---|
1159 | "0\xa7","1'","2\"","3+","4!","5%","6/","7=","8(","9)","\xf6\xd6","\xfc\xdc","\xf3\xd3",
|
---|
1160 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xf5\xd5","\xfa\xda",
|
---|
1161 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xc9","\xe1\xc1","\xfb\xdb",
|
---|
1162 | "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_","\xed\xcd","\x0\x0","\x0\x0"
|
---|
1163 | };
|
---|
1164 |
|
---|
1165 | /* Iceland */
|
---|
1166 | static const char main_key_is[MAIN_LEN][2] =
|
---|
1167 | {
|
---|
1168 | "\xb0\xa8","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","\xf6\xd6","-_",
|
---|
1169 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xf0\xd0","'?",
|
---|
1170 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe6\xc6","Q\xc4","+*",
|
---|
1171 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","\xfe\xde","<>","\x0\x0","\x0\x0"
|
---|
1172 | };
|
---|
1173 |
|
---|
1174 | /* Iceland, Sun dead keys */
|
---|
1175 | static const char main_key_is_Sundeadkeys[MAIN_LEN][2] =
|
---|
1176 | {
|
---|
1177 | "\x1\xb0","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","\xf6\xd6","\x3\x0",
|
---|
1178 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1179 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#\xb4",
|
---|
1180 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","\xfe\xde","<>","\x0\x0","\x0\x0"
|
---|
1181 | };
|
---|
1182 |
|
---|
1183 | /* Iceland, Eliminate dead keys */
|
---|
1184 | static const char main_key_is_nodeadkeys[MAIN_LEN][2] =
|
---|
1185 | {
|
---|
1186 | "^\xb0","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","\xf6\xd6","'`",
|
---|
1187 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfc\xdc","+*",
|
---|
1188 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xd6","\xe4\xc4","#\xb4",
|
---|
1189 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","\xfe\xde","<>","\x0\x0","\x0\x0"
|
---|
1190 | };
|
---|
1191 |
|
---|
1192 | /* Iceland, Macintosh */
|
---|
1193 | static const char main_key_is_mac[MAIN_LEN][2] =
|
---|
1194 | {
|
---|
1195 | "\xa3\xa7","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","\xf6\xd6","-_",
|
---|
1196 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xf0\xd0","'?",
|
---|
1197 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe6\xc6","QW","+*",
|
---|
1198 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","\xfe\xde","<>","\x0\x0","\x0\x0"
|
---|
1199 | };
|
---|
1200 |
|
---|
1201 | /* Israel */
|
---|
1202 | static const char main_key_il[MAIN_LEN][2] =
|
---|
1203 | {
|
---|
1204 | ";~","1!","2@","3#","4$","5%","6^","7&","8*","9)","0(","-_","=+",
|
---|
1205 | "/Q","'W","\xf7""E","\xf8R","\xe0T","\xe8Y","\xe5U","\xefI","\xedO","\xf4P","]}","[{",
|
---|
1206 | "\xf9""A","\xe3S","\xe2""D","\xeb""F","\xf2G","\xe9H","\xe7J","\xecK","\xeaL","\xf3:",",\"","\\\\",
|
---|
1207 | "\xe6Z","\xf1X","\xe1""C","\xe4V","\xf0""B","\xeeN","\xf6M","\xfa>","\xf5<",".?","<>","\x0\x0","\x0\x0"
|
---|
1208 | };
|
---|
1209 |
|
---|
1210 | /* Israel, lyx */
|
---|
1211 | static const char main_key_il_lyx[MAIN_LEN][2] =
|
---|
1212 | {
|
---|
1213 | ";~","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","9)","0(","-\xbe","\x0\x0",
|
---|
1214 | "//","''","\xf7\xb8","\xf8\xbc","\xe0\xe","\xe8\xf","\xe5\xb9","\xef\xef","\xed\xed","\xf4\xb7","]}","[{",
|
---|
1215 | "\xf9\xb0","\xe3\xbc","\xe2\xe2","\xeb\xeb","\xf2\xc2","\xe9\xc1","\xe7\xb4","\xec\xaa","\xea\xea","\xf3:",",\"","\\|",
|
---|
1216 | "\xe6\xe6","\xf1\xb6","\xe1\xbb","\xe4\xb1","\xf0\xb2","\xee\xb3","\xf6\xb5","\xfa>","\xf5<",".?","<>","\x0\x0","\x0\x0"
|
---|
1217 | };
|
---|
1218 |
|
---|
1219 | /* Israel, Phonetic */
|
---|
1220 | static const char main_key_il_phonetic[MAIN_LEN][2] =
|
---|
1221 | {
|
---|
1222 | "\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","=+",
|
---|
1223 | "\xf7\xf7","\xe5\xe5","\xe0\xe0","\xf8\xf8","\xfa\xe8","\xf2\xf2","\xe5\xe5","\xe9\xe9","\xf1\xf1","\xf4\xf3","\x0\x0","\x0\x0",
|
---|
1224 | "\xe0\xe0","\xf9\xf9","\xe3\xe3","\xf4\xf3","\xe2\xe2","\xe4\xe4","\xe9\xe9","\xeb\xea","\xec\xec","\x0\x0","\x0\x0","\\|",
|
---|
1225 | "\xe6\xe6","\xe7\xe7","\xf6\xf5","\xe5\xe5","\xe1\xe1","\xf0\xef","\xee\xed","\x0\x0","\x0\x0","\x0\x0","<>","\x0\x0","\x0\x0"
|
---|
1226 | };
|
---|
1227 |
|
---|
1228 | /* Italy */
|
---|
1229 | static const char main_key_it[MAIN_LEN][2] =
|
---|
1230 | {
|
---|
1231 | "\\|","1!","2\"","3\xa3","4$","5%","6&","7/","8(","9)","0=","'?","\xec^",
|
---|
1232 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe8\xe9","+*",
|
---|
1233 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf2\xe7","\xe0\xb0","\xf9\xa7",
|
---|
1234 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1235 | };
|
---|
1236 |
|
---|
1237 | /* Italy, Macintosh */
|
---|
1238 | static const char main_key_it_mac[MAIN_LEN][2] =
|
---|
1239 | {
|
---|
1240 | "@#","&1","\"2","'3","(4","\xe7""5","\xe8""6",")7","\xa3""8","\xe0""9","\xe9""0","-_","=+",
|
---|
1241 | "qQ","zZ","eE","rR","tT","yY","uU","iI","oO","pP","\xec^","$*",
|
---|
1242 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","mM","\xf9%","\xa7\xb0",
|
---|
1243 | "wW","xX","cC","vV","bB","nN",",?",";.",":/","\xf2!","<>","\x0\x0","\x0\x0"
|
---|
1244 | };
|
---|
1245 |
|
---|
1246 | /* Japan */
|
---|
1247 | static const char main_key_jp[MAIN_LEN][2] =
|
---|
1248 | {
|
---|
1249 | "\x0\x0","1!","2\"","3#","4$","5%","6&","7'","8(","9)","0~","-=","^~",
|
---|
1250 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","@`","[{",
|
---|
1251 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";+",":*","]}",
|
---|
1252 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\\_","\\|"
|
---|
1253 | };
|
---|
1254 |
|
---|
1255 | /* Kyrgyzstan */
|
---|
1256 | static const char main_key_kg[MAIN_LEN][2] =
|
---|
1257 | {
|
---|
1258 | "\xa3\xb3","1!","2\"","3\xb0","4;","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
1259 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1260 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","\\/",
|
---|
1261 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","/|","\x0\x0","\x0\x0"
|
---|
1262 | };
|
---|
1263 |
|
---|
1264 | /* Cambodia */
|
---|
1265 | static const char main_key_kh[MAIN_LEN][2] =
|
---|
1266 | {
|
---|
1267 | "\xab\xbb","\xe1!","\xe2\xd7","\xe3\"","\xe4\xdb","\xe5%","\xe6\xcd","\xe7\xd0","\xe8\xcf","\xe9(","\xe0)","\xa5\xcc","\xb2=",
|
---|
1268 | "\x86\x88","\xb9\xba","\xc1\xc2","\x9a\xac","\x8f\x91","\x99\xbd","\xbb\xbc","\xb7\xb8","\xc4\xc5","\x95\x97","\xc0\xbf","\xaa\xa7",
|
---|
1269 | "\xb6\xff","\x9f\xc3","\x8a\x8c","\x90\x92","\x84\xa2","\xa0\xc7","\xd2\x89","\x80\x82","\x9b\xa1","\xbe\xfe","\xcb\xc9","\xae\xad",
|
---|
1270 | "\x8b\x8d","\x81\x83","\x85\x87","\x9c\xfd","\x94\x96","\x93\x8e","\x98\xc6","\xfc\xfb","\xd4\xd5","\xca?","<>","\x0\x0","\x0\x0"
|
---|
1271 | };
|
---|
1272 |
|
---|
1273 | /* Kazakhstan */
|
---|
1274 | static const char main_key_kz[MAIN_LEN][2] =
|
---|
1275 | {
|
---|
1276 | "()","\xfe!","\xd9\xd8","\xa6\xb6","\xa3\xa2","\x93\x92",",;",".:","\xaf\xae","\xb1\xb0","\x9b\x9a","\xe9\xe8","\xbb\xba",
|
---|
1277 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1278 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","\\/",
|
---|
1279 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","\xb0?","<>","\x0\x0","\x0\x0"
|
---|
1280 | };
|
---|
1281 |
|
---|
1282 | /* Kazakhstan, Russian with Kazakh */
|
---|
1283 | static const char main_key_kz_ruskaz[MAIN_LEN][2] =
|
---|
1284 | {
|
---|
1285 | "\xa3\xb3","1!","2\"","3\xb0","4;","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
1286 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1287 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","\\/",
|
---|
1288 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","<>","\x0\x0","\x0\x0"
|
---|
1289 | };
|
---|
1290 |
|
---|
1291 | /* Kazakhstan, Kazakh with Russian */
|
---|
1292 | static const char main_key_kz_kazrus[MAIN_LEN][2] =
|
---|
1293 | {
|
---|
1294 | "\xa3\xb3","1!","2\"","3\xb0","4;","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
1295 | "\xca\xea","\xa3\xa2","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\x93\x92","\xda\xfa","\xc8\xe8","\xb1\xb0",
|
---|
1296 | "\xe9\xe8","\xd9\xf9","\x9b\x9a","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xd9\xd8","\\/",
|
---|
1297 | "\xd1\xf1","\xa6\xb6","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xaf\xae","\xc2\xe2","\xc0\xe0",".,","<>","\x0\x0","\x0\x0"
|
---|
1298 | };
|
---|
1299 |
|
---|
1300 | /* Laos */
|
---|
1301 | static const char main_key_la[MAIN_LEN][2] =
|
---|
1302 | {
|
---|
1303 | "\xd\xd","\xa2\xd1","\x9f\xd2","\xc2\xd3","\x96\xd4","\xb8\xcc","\xb9\xbc","\x84\xd5","\x95\xd6","\x88\xd7","\x82\xd8","\x8a\xd9","\xcd\xcd",
|
---|
1304 | "\xbb\xbb","\xc4\xd0","\xb3\xb3","\x9e_","\xb0+","\xb4\xb4","\xb5\xb5","\xa3\xae","\x99\x99","\x8d\xbd","\x9a-","\xa5}",
|
---|
1305 | "\xb1\xb1","\xab;","\x81.","\x94,","\xc0:","\xc9\xca","\xc8\xcb","\xb2!","\xaa?","\xa7%","\x87=","\xdc\xdd",
|
---|
1306 | "\x9c\xad","\x9b(","\xc1\xaf","\xad\xad","\xb6\xb6","\xb7\xb7","\x97\xc6","\xa1`","\xc3$","\x9d)","<>","\x0\x0","\x0\x0"
|
---|
1307 | };
|
---|
1308 |
|
---|
1309 | /* Latin American */
|
---|
1310 | static const char main_key_latam[MAIN_LEN][2] =
|
---|
1311 | {
|
---|
1312 | "|\xb0","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","\xbf\xa1",
|
---|
1313 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","QW","+*",
|
---|
1314 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf1\xd1","{[","}]",
|
---|
1315 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1316 | };
|
---|
1317 |
|
---|
1318 | /* Latin American, Eliminate dead keys */
|
---|
1319 | static const char main_key_latam_nodeadkeys[MAIN_LEN][2] =
|
---|
1320 | {
|
---|
1321 | "|\xb0","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","\xbf\xa1",
|
---|
1322 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","`^","+*",
|
---|
1323 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf1\xd1","\xb4\xa8","\xe7\xc7",
|
---|
1324 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1325 | };
|
---|
1326 |
|
---|
1327 | /* Latin American, Sun dead keys */
|
---|
1328 | static const char main_key_latam_sundeadkeys[MAIN_LEN][2] =
|
---|
1329 | {
|
---|
1330 | "|\xb0","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","\xbf\xa1",
|
---|
1331 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\x0\x1","+*",
|
---|
1332 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf1\xd1","\x3\x4","}]",
|
---|
1333 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1334 | };
|
---|
1335 |
|
---|
1336 | /* Lithuania */
|
---|
1337 | static const char main_key_lt[MAIN_LEN][2] =
|
---|
1338 | {
|
---|
1339 | "`~","\xb1\xa1","\xe8\xc8","\xea\xca","\xec\xcc","\xe7\xc7","\xb9\xa9","\xf9\xd9","\xfe\xde","\xfe(","\xd2)","-_","\xbe\xae",
|
---|
1340 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1341 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1342 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\xaa\xac","\x0\x0","\x0\x0"
|
---|
1343 | };
|
---|
1344 |
|
---|
1345 | /* Lithuania, Standard */
|
---|
1346 | static const char main_key_lt_std[MAIN_LEN][2] =
|
---|
1347 | {
|
---|
1348 | "`~","!1","-2","/3",";4",":5",",6",".7","=8","(9",")0","?+","xX",
|
---|
1349 | "\xb1\xa1","\xbe\xae","eE","rR","tT","yY","uU","iI","oO","pP","\xe7\xc7","wW",
|
---|
1350 | "aA","sS","dD","\xb9\xa9","gG","hH","jJ","kK","lL","\xf9\xd9","\xec\xcc","qQ",
|
---|
1351 | "zZ","\xfe\xde","cC","vV","bB","nN","mM","\xe8\xc8","fF","\xea\xca","<>","\x0\x0","\x0\x0"
|
---|
1352 | };
|
---|
1353 |
|
---|
1354 | /* Lithuania, US keyboard with Lithuanian letters */
|
---|
1355 | static const char main_key_lt_us[MAIN_LEN][2] =
|
---|
1356 | {
|
---|
1357 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1358 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1359 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1360 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\xaa\xac","\x0\x0","\x0\x0"
|
---|
1361 | };
|
---|
1362 |
|
---|
1363 | /* Lithuania, IBM (LST 1205-92) */
|
---|
1364 | static const char main_key_lt_ibm[MAIN_LEN][2] =
|
---|
1365 | {
|
---|
1366 | "`~","!1","\"2","/3",";4",":5",",6",".7","?8","(9",")0","_-","+=",
|
---|
1367 | "\xb1\xa1","\xbe\xae","eE","rR","tT","yY","uU","iI","oO","pP","\xe7\xc7","\xfe\xd2",
|
---|
1368 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf9\xd9","\xec\xcc","\\|",
|
---|
1369 | "zZ","\xfe\xde","cC","vV","bB","nN","mM","\xe8\xc8","\xb9\xa9","\xea\xca","<>","\x0\x0","\x0\x0"
|
---|
1370 | };
|
---|
1371 |
|
---|
1372 | /* Latvia, Apostrophe (') variant */
|
---|
1373 | static const char main_key_lv_apostrophe[MAIN_LEN][2] =
|
---|
1374 | {
|
---|
1375 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1376 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1377 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","\x4\"","\\|",
|
---|
1378 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
1379 | };
|
---|
1380 |
|
---|
1381 | /* Latvia, Tilde (~) variant */
|
---|
1382 | static const char main_key_lv_tilde[MAIN_LEN][2] =
|
---|
1383 | {
|
---|
1384 | "\x4~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1385 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1386 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1387 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
1388 | };
|
---|
1389 |
|
---|
1390 | /* Latvia, F-letter (F) variant */
|
---|
1391 | static const char main_key_lv_fkey[MAIN_LEN][2] =
|
---|
1392 | {
|
---|
1393 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1394 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1395 | "aA","sS","dD","\x4\x4","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1396 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
1397 | };
|
---|
1398 |
|
---|
1399 | /* Macedonia */
|
---|
1400 | static const char main_key_mk[MAIN_LEN][2] =
|
---|
1401 | {
|
---|
1402 | "P~","1!","2\xfe","3\xd2","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1403 | "\xa9\xb9","\xaa\xba","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xa5\xb5","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xa2\xb2",
|
---|
1404 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xa8\xb8","\xcb\xeb","\xcc\xec","\xde\xfe","\xac\xbc","\xd6\xf6",
|
---|
1405 | "\xda\xfa","\xaf\xbf","\xc3\xe3","\xd7\xf7","\xc2\xe2","\xce\xee","\xcd\xed",",;",".:","/?","<>","\x0\x0","\x0\x0"
|
---|
1406 | };
|
---|
1407 |
|
---|
1408 | /* Macedonia, Eliminate dead keys */
|
---|
1409 | static const char main_key_mk_nodeadkeys[MAIN_LEN][2] =
|
---|
1410 | {
|
---|
1411 | "`~","1!","2\xfe","3\xd2","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1412 | "\xa9\xb9","\xaa\xba","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xa5\xb5","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xa2\xb2",
|
---|
1413 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xa8\xb8","\xcb\xeb","\xcc\xec","\xde\xfe","\xac\xbc","\xd6\xf6",
|
---|
1414 | "\xda\xfa","\xaf\xbf","\xc3\xe3","\xd7\xf7","\xc2\xe2","\xce\xee","\xcd\xed",",;",".:","/?","<>","\x0\x0","\x0\x0"
|
---|
1415 | };
|
---|
1416 |
|
---|
1417 | /* Malta */
|
---|
1418 | static const char main_key_mt[MAIN_LEN][2] =
|
---|
1419 | {
|
---|
1420 | "\xe5\xc5","1!","2@","3\xac","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1421 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xf5\xd5","\xb1\xa1",
|
---|
1422 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1423 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\xbf\xaf","\x0\x0","\x0\x0"
|
---|
1424 | };
|
---|
1425 |
|
---|
1426 | /* Malta, Maltese keyboard with US layout */
|
---|
1427 | static const char main_key_mt_us[MAIN_LEN][2] =
|
---|
1428 | {
|
---|
1429 | "\xe5\xc5","1!","2@","3\xac","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1430 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xf5\xd5","\xb1\xa1",
|
---|
1431 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\xbf\xaf",
|
---|
1432 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\xbf\xaf","\x0\x0","\x0\x0"
|
---|
1433 | };
|
---|
1434 |
|
---|
1435 | /* Mongolia */
|
---|
1436 | static const char main_key_mn[MAIN_LEN][2] =
|
---|
1437 | {
|
---|
1438 | "=+","1\xb0","2-","3\"","4\xae","5:","6.","7_","8,","9%","0?","\xc5\xe5","\xdd\xfd",
|
---|
1439 | "\xc6\xe6","\xc3\xe3","\xd5\xf5","\xd6\xf6","\xdc\xfc","\xce\xee","\xc7\xe7","\xdb\xfb","\xaf\xae","\xda\xfa","\xcb\xeb","\xdf\xff",
|
---|
1440 | "\xca\xea","\xd9\xf9","\xc2\xe2","\xe9\xe8","\xc1\xe1","\xc8\xe8","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd0\xf0","!|",
|
---|
1441 | "\xd1\xf1","\xde\xfe","\xa3\xb3","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xd7\xf7","\xc0\xe0","()","\x0\x0","\x0\x0"
|
---|
1442 | };
|
---|
1443 |
|
---|
1444 | /* Norway */
|
---|
1445 | static const char main_key_no[MAIN_LEN][2] =
|
---|
1446 | {
|
---|
1447 | "|\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","\\P",
|
---|
1448 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","WR",
|
---|
1449 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf8\xd8","\xe6\xc6","'*",
|
---|
1450 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1451 | };
|
---|
1452 |
|
---|
1453 | /* Norway, Eliminate dead keys */
|
---|
1454 | static const char main_key_no_nodeadkeys[MAIN_LEN][2] =
|
---|
1455 | {
|
---|
1456 | "|\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","\\`",
|
---|
1457 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xa8^",
|
---|
1458 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf8\xd8","\xe6\xc6","'*",
|
---|
1459 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1460 | };
|
---|
1461 |
|
---|
1462 | /* Norway, Dvorak */
|
---|
1463 | static const char main_key_no_dvorak[MAIN_LEN][2] =
|
---|
1464 | {
|
---|
1465 | "|\xa7","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","+?","\\`",
|
---|
1466 | "\xe5\xc5",",;",".:","pP","yY","fF","gG","cC","rR","lL","'*","~^",
|
---|
1467 | "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","<>",
|
---|
1468 | "\xe6\xc6","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","\xf8\xd8","\x0\x0","\x0\x0"
|
---|
1469 | };
|
---|
1470 |
|
---|
1471 | /* Norway, Northern Saami */
|
---|
1472 | static const char main_key_no_smi[MAIN_LEN][2] =
|
---|
1473 | {
|
---|
1474 | "|\xa7","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","+?","\\`",
|
---|
1475 | "\xe1\xc1","\xb9\xa9","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xbf\xbd",
|
---|
1476 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf8\xd8","\xe6\xc6","\xf0\xd0",
|
---|
1477 | "zZ","\xe8\xc8","cC","vV","bB","nN","mM",",;",".:","-_","\xbe\xae","\x0\x0","\x0\x0"
|
---|
1478 | };
|
---|
1479 |
|
---|
1480 | /* Norway, Macintosh */
|
---|
1481 | static const char main_key_no_mac[MAIN_LEN][2] =
|
---|
1482 | {
|
---|
1483 | "|\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","PQ",
|
---|
1484 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xa8^",
|
---|
1485 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf8\xd8","\xe6\xc6","@*",
|
---|
1486 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1487 | };
|
---|
1488 |
|
---|
1489 | /* Norway, Macintosh, eliminate dead keys */
|
---|
1490 | static const char main_key_no_mac_nodeadkeys[MAIN_LEN][2] =
|
---|
1491 | {
|
---|
1492 | "|\xa7","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","`\xb4",
|
---|
1493 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe5\xc5","\xa8^",
|
---|
1494 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf8\xd8","\xe6\xc6","@*",
|
---|
1495 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1496 | };
|
---|
1497 |
|
---|
1498 | /* Poland, qwertz */
|
---|
1499 | static const char main_key_pl_qwertz[MAIN_LEN][2] =
|
---|
1500 | {
|
---|
1501 | "\xff\\","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","+?","'*",
|
---|
1502 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xbf\xf1","\xb6\xe6",
|
---|
1503 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xb3\xa3","\xb1\xea","\xf3\xbc",
|
---|
1504 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1505 | };
|
---|
1506 |
|
---|
1507 | /* Portugal */
|
---|
1508 | static const char main_key_pt[MAIN_LEN][2] =
|
---|
1509 | {
|
---|
1510 | "\\|","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","\xab\xbb",
|
---|
1511 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","+*","QP",
|
---|
1512 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","\xba\xaa","SR",
|
---|
1513 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1514 | };
|
---|
1515 |
|
---|
1516 | /* Portugal, Eliminate dead keys */
|
---|
1517 | static const char main_key_pt_nodeadkeys[MAIN_LEN][2] =
|
---|
1518 | {
|
---|
1519 | "\\|","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","\xab\xbb",
|
---|
1520 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","+*","\xb4`",
|
---|
1521 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","\xba\xaa","~^",
|
---|
1522 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1523 | };
|
---|
1524 |
|
---|
1525 | /* Portugal, Sun dead keys */
|
---|
1526 | static const char main_key_pt_sundeadkeys[MAIN_LEN][2] =
|
---|
1527 | {
|
---|
1528 | "\\|","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","\xab\xbb",
|
---|
1529 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","+*","\x3\x0",
|
---|
1530 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","\xba\xaa","\x2\x1",
|
---|
1531 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1532 | };
|
---|
1533 |
|
---|
1534 | /* Portugal, Macintosh */
|
---|
1535 | static const char main_key_pt_mac[MAIN_LEN][2] =
|
---|
1536 | {
|
---|
1537 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
1538 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xba\xaa","QP",
|
---|
1539 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","SR","\\|",
|
---|
1540 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1541 | };
|
---|
1542 |
|
---|
1543 | /* Portugal, Macintosh, eliminate dead keys */
|
---|
1544 | static const char main_key_pt_mac_nodeadkeys[MAIN_LEN][2] =
|
---|
1545 | {
|
---|
1546 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
1547 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xba\xaa","\xb4`",
|
---|
1548 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","~^","\\|",
|
---|
1549 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1550 | };
|
---|
1551 |
|
---|
1552 | /* Portugal, Macintosh, Sun dead keys */
|
---|
1553 | static const char main_key_pt_mac_sundeadkeys[MAIN_LEN][2] =
|
---|
1554 | {
|
---|
1555 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
1556 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xba\xaa","\x3\x0",
|
---|
1557 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe7\xc7","\x2\x1","\\|",
|
---|
1558 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1559 | };
|
---|
1560 |
|
---|
1561 | /* Romania */
|
---|
1562 | static const char main_key_ro[MAIN_LEN][2] =
|
---|
1563 | {
|
---|
1564 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1565 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1566 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1567 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\\|","\x0\x0","\x0\x0"
|
---|
1568 | };
|
---|
1569 |
|
---|
1570 | /* Romania, Standard */
|
---|
1571 | static const char main_key_ro_std[MAIN_LEN][2] =
|
---|
1572 | {
|
---|
1573 | "\xfe\xd3","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1574 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe3\xc3","\xee\xce",
|
---|
1575 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xba\xaa","\xfe\xde","\xe2\xc2",
|
---|
1576 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","/?","\\|","\x0\x0","\x0\x0"
|
---|
1577 | };
|
---|
1578 |
|
---|
1579 | /* Romania, Standard (Commabelow) */
|
---|
1580 | static const char main_key_ro_academic[MAIN_LEN][2] =
|
---|
1581 | {
|
---|
1582 | "\xfe\xd3","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1583 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xe3\xc3","\xee\xce",
|
---|
1584 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\x19\x18","\x1b\x1a","\xe2\xc2",
|
---|
1585 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","/?","\\|","\x0\x0","\x0\x0"
|
---|
1586 | };
|
---|
1587 |
|
---|
1588 | /* Romania, Winkeys */
|
---|
1589 | static const char main_key_ro_winkeys[MAIN_LEN][2] =
|
---|
1590 | {
|
---|
1591 | "][","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","'*",
|
---|
1592 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xe3\xc3","\xee\xce",
|
---|
1593 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xba\xaa","\xfe\xde","\xe2\xc2",
|
---|
1594 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1595 | };
|
---|
1596 |
|
---|
1597 | /* Russia */
|
---|
1598 | static const char main_key_ru[MAIN_LEN][2] =
|
---|
1599 | {
|
---|
1600 | "\xa3\xb3","1!","2\"","3#","4*","5:","6,","7.","8;","9(","0)","-_","=+",
|
---|
1601 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1602 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","\\|",
|
---|
1603 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","/?","/|","\x0\x0","\x0\x0"
|
---|
1604 | };
|
---|
1605 |
|
---|
1606 | /* Russia, Phonetic */
|
---|
1607 | static const char main_key_ru_phonetic[MAIN_LEN][2] =
|
---|
1608 | {
|
---|
1609 | "\xc0\xe0","1!","2@","3\xa3","4\xb3","5\xdf","6\xff","7&","8*","9(","0)","\x0\x0","\xde\xfe",
|
---|
1610 | "\xd1\xf1","\xd7\xf7","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xd9\xf9","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xdd\xfd",
|
---|
1611 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xca\xea","\xcb\xeb","\xcc\xec",";:","'\"","\xdc\xfc",
|
---|
1612 | "\xda\xfa","\xd8\xf8","\xc3\xe3","\xd6\xf6","\xc2\xe2","\xce\xee","\xcd\xed",",<",".>","/?","|\xa6","\x0\x0","\x0\x0"
|
---|
1613 | };
|
---|
1614 |
|
---|
1615 | /* Russia, Typewriter */
|
---|
1616 | static const char main_key_ru_typewriter[MAIN_LEN][2] =
|
---|
1617 | {
|
---|
1618 | "'\"","!1","\xb0""2","/3",";4",":5",",6",".7","_8","?9","%0","-_","=+",
|
---|
1619 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1620 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","()",
|
---|
1621 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","\xa3\xb3","/|","\x0\x0","\x0\x0"
|
---|
1622 | };
|
---|
1623 |
|
---|
1624 | /* Russia, Tatar */
|
---|
1625 | static const char main_key_ru_tt[MAIN_LEN][2] =
|
---|
1626 | {
|
---|
1627 | "\xbb\xba","1!","2\"","3\xb0","4;","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
1628 | "\xca\xea","\xe9\xe8","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xd9\xd8","\xda\xfa","\xc8\xe8","\xaf\xae",
|
---|
1629 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xa3\xa2","\xdc\xfc","\\/",
|
---|
1630 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\x97\x96","\xc2\xe2","\xc0\xe0",".,","/|","\x0\x0","\x0\x0"
|
---|
1631 | };
|
---|
1632 |
|
---|
1633 | /* Russia, Ossetian */
|
---|
1634 | static const char main_key_ru_os[MAIN_LEN][2] =
|
---|
1635 | {
|
---|
1636 | "\xdc\xfc","1!","2\"","3#","4*","5:","6,","7.","8;","9(","0)","-_","=+",
|
---|
1637 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1638 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xd5\xd4","\\|",
|
---|
1639 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","/?","/|","\x0\x0","\x0\x0"
|
---|
1640 | };
|
---|
1641 |
|
---|
1642 | /* Russia, Ossetian, Winkeys */
|
---|
1643 | static const char main_key_ru_os_winkeys[MAIN_LEN][2] =
|
---|
1644 | {
|
---|
1645 | "\xdc\xfc","1!","2\"","3\xb0","4;","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
1646 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1647 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xd5\xd4","\\/",
|
---|
1648 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","/|","\x0\x0","\x0\x0"
|
---|
1649 | };
|
---|
1650 |
|
---|
1651 | /* Serbia and Montenegro */
|
---|
1652 | static const char main_key_cs[MAIN_LEN][2] =
|
---|
1653 | {
|
---|
1654 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
1655 | "\xa9\xb9","\xaa\xba","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xda\xfa","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xa1\xb1",
|
---|
1656 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xa8\xb8","\xcb\xeb","\xcc\xec","\xde\xfe","\xab\xbb","\xd6\xf6",
|
---|
1657 | "\xd6\xf6","\xaf\xbf","\xc3\xe3","\xd7\xf7","\xc2\xe2","\xce\xee","\xcd\xed",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1658 | };
|
---|
1659 |
|
---|
1660 | /* Serbia and Montenegro, Z and ZHE swapped */
|
---|
1661 | static const char main_key_cs_yz[MAIN_LEN][2] =
|
---|
1662 | {
|
---|
1663 | "`~","1!","2\"","3#","4$","5%","6&","7/","8(","9)","0=","'?","+*",
|
---|
1664 | "\xa9\xb9","\xaa\xba","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xd6\xf6","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdb\xfb","\xa1\xb1",
|
---|
1665 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xa8\xb8","\xcb\xeb","\xcc\xec","\xde\xfe","\xab\xbb","\xd6\xf6",
|
---|
1666 | "\xda\xfa","\xaf\xbf","\xc3\xe3","\xd7\xf7","\xc2\xe2","\xce\xee","\xcd\xed",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1667 | };
|
---|
1668 |
|
---|
1669 | /* Slovakia */
|
---|
1670 | static const char main_key_sk[MAIN_LEN][2] =
|
---|
1671 | {
|
---|
1672 | ";X","+1","\xb5""2","\xb9""3","\xe8""4","\xbb""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
1673 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfa/","\xe4(",
|
---|
1674 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf4\"","\xa7!","\xf2)",
|
---|
1675 | "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
1676 | };
|
---|
1677 |
|
---|
1678 | /* Slovakia, Extended Backslash */
|
---|
1679 | static const char main_key_sk_bksl[MAIN_LEN][2] =
|
---|
1680 | {
|
---|
1681 | ";X","+1","\xb5""2","\xb9""3","\xe8""4","\xbb""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
1682 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfa/","\xe4(",
|
---|
1683 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf4\"","\xa7!","\\|",
|
---|
1684 | "yY","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
1685 | };
|
---|
1686 |
|
---|
1687 | /* Slovakia, qwerty */
|
---|
1688 | static const char main_key_sk_qwerty[MAIN_LEN][2] =
|
---|
1689 | {
|
---|
1690 | ";X","+1","\xb5""2","\xb9""3","\xe8""4","\xbb""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
1691 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfa/","\xe4(",
|
---|
1692 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf4\"","\xa7!","\xf2)",
|
---|
1693 | "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
1694 | };
|
---|
1695 |
|
---|
1696 | /* Slovakia, qwerty, extended Backslash */
|
---|
1697 | static const char main_key_sk_qwerty_bksl[MAIN_LEN][2] =
|
---|
1698 | {
|
---|
1699 | ";X","+1","\xb5""2","\xb9""3","\xe8""4","\xbb""5","\xbe""6","\xfd""7","\xe1""8","\xed""9","\xe9""0","=%","QZ",
|
---|
1700 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xfa/","\xe4(",
|
---|
1701 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf4\"","\xa7!","\\|",
|
---|
1702 | "zZ","xX","cC","vV","bB","nN","mM",",?",".:","-_","\\|","\x0\x0","\x0\x0"
|
---|
1703 | };
|
---|
1704 |
|
---|
1705 | /* Spain */
|
---|
1706 | static const char main_key_es[MAIN_LEN][2] =
|
---|
1707 | {
|
---|
1708 | "\xba\xaa","1!","2\"","3\xb7","4$","5%","6&","7/","8(","9)","0=","'?","\xa1\xbf",
|
---|
1709 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","PR","+*",
|
---|
1710 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf1\xd1","QW","\xe7\xc7",
|
---|
1711 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1712 | };
|
---|
1713 |
|
---|
1714 | /* Spain, Eliminate dead keys */
|
---|
1715 | static const char main_key_es_nodeadkeys[MAIN_LEN][2] =
|
---|
1716 | {
|
---|
1717 | "\xba\xaa","1!","2\"","3\xb7","4$","5%","6&","7/","8(","9)","0=","'?","\xa1\xbf",
|
---|
1718 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","`^","+*",
|
---|
1719 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf1\xd1","\xb4\xa8","\xe7\xc7",
|
---|
1720 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1721 | };
|
---|
1722 |
|
---|
1723 | /* Spain, Sun dead keys */
|
---|
1724 | static const char main_key_es_sundeadkeys[MAIN_LEN][2] =
|
---|
1725 | {
|
---|
1726 | "\xba\xaa","1!","2\"","3\xb7","4$","5%","6&","7/","8(","9)","0=","'?","\xa1\xbf",
|
---|
1727 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\x0\x1","+*",
|
---|
1728 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf1\xd1","\x3\x4","\xe7\xc7",
|
---|
1729 | "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1730 | };
|
---|
1731 |
|
---|
1732 | /* Spain, Dvorak */
|
---|
1733 | static const char main_key_es_dvorak[MAIN_LEN][2] =
|
---|
1734 | {
|
---|
1735 | "\xba\xaa","1!","2\"","3\xb7","4$","5%","6&","7/","8(","9)","0=","'?","\xa1\xbf",
|
---|
1736 | ".:",",;","\xf1\xd1","pP","yY","fF","gG","cC","hH","lL","PR","+*",
|
---|
1737 | "aA","oO","eE","uU","iI","dD","rR","tT","nN","sS","QW","\xe7\xc7",
|
---|
1738 | "-_","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","<>","\x0\x0","\x0\x0"
|
---|
1739 | };
|
---|
1740 |
|
---|
1741 | /* Sweden, Dvorak */
|
---|
1742 | static const char main_key_se_dvorak[MAIN_LEN][2] =
|
---|
1743 | {
|
---|
1744 | "\xa7\xbd","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","QP",
|
---|
1745 | "\xe5\xc5","\xe4\xc4","\xf6\xd6","pP","yY","fF","gG","cC","rR","lL",",;","WR",
|
---|
1746 | "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","'*",
|
---|
1747 | ".:","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","<>","\x0\x0","\x0\x0"
|
---|
1748 | };
|
---|
1749 |
|
---|
1750 | /* Sweden, Russian phonetic */
|
---|
1751 | static const char main_key_se_rus[MAIN_LEN][2] =
|
---|
1752 | {
|
---|
1753 | "\xa3\xb3","1!","2\"","3#","4\xa4","5%","6&","7/","8(","9)","0=","+?","\xdf\xff",
|
---|
1754 | "\xd1\xf1","\xd7\xf7","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xd9\xf9","\xd5\xf5","\xc9\xe9","\xcf\xef","\xd0\xf0","\xdc\xfc","WR",
|
---|
1755 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xca\xea","\xcb\xeb","\xcc\xec","\xdb\xfb","\xdd\xfd","\xc0\xe0",
|
---|
1756 | "\xda\xfa","\xd8\xf8","\xc3\xe3","\xd6\xf6","\xc2\xe2","\xce\xee","\xcd\xed",",;",".:","-_","\xde\xfe","\x0\x0","\x0\x0"
|
---|
1757 | };
|
---|
1758 |
|
---|
1759 | /* Switzerland */
|
---|
1760 | static const char main_key_ch[MAIN_LEN][2] =
|
---|
1761 | {
|
---|
1762 | "\xa7\xb0","1+","2\"","3*","4\xe7","5%","6&","7/","8(","9)","0=","'?","RP",
|
---|
1763 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xe8","W!",
|
---|
1764 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xe9","\xe4\xe0","$\xa3",
|
---|
1765 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1766 | };
|
---|
1767 |
|
---|
1768 | /* Switzerland, German, eliminate dead keys */
|
---|
1769 | static const char main_key_ch_de_nodeadkeys[MAIN_LEN][2] =
|
---|
1770 | {
|
---|
1771 | "\xa7\xb0","1+","2\"","3*","4\xe7","5%","6&","7/","8(","9)","0=","'?","^`",
|
---|
1772 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xe8","\xa8!",
|
---|
1773 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xe9","\xe4\xe0","$\xa3",
|
---|
1774 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1775 | };
|
---|
1776 |
|
---|
1777 | /* Switzerland, German, Sun dead keys */
|
---|
1778 | static const char main_key_ch_de_sundeadkeys[MAIN_LEN][2] =
|
---|
1779 | {
|
---|
1780 | "\xa7\xb0","1+","2\"","3*","4\xe7","5%","6&","7/","8(","9)","0=","'?","\x1\x0",
|
---|
1781 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xfc\xe8","\x4!",
|
---|
1782 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xf6\xe9","\xe4\xe0","$\xa3",
|
---|
1783 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1784 | };
|
---|
1785 |
|
---|
1786 | /* Switzerland, French */
|
---|
1787 | static const char main_key_ch_fr[MAIN_LEN][2] =
|
---|
1788 | {
|
---|
1789 | "\xa7\xb0","1+","2\"","3*","4\xe7","5%","6&","7/","8(","9)","0=","'?","RP",
|
---|
1790 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xe8\xfc","W!",
|
---|
1791 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xf6","\xe0\xe4","$\xa3",
|
---|
1792 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1793 | };
|
---|
1794 |
|
---|
1795 | /* Switzerland, French, eliminate dead keys */
|
---|
1796 | static const char main_key_ch_fr_nodeadkeys[MAIN_LEN][2] =
|
---|
1797 | {
|
---|
1798 | "\xa7\xb0","1+","2\"","3*","4\xe7","5%","6&","7/","8(","9)","0=","'?","^`",
|
---|
1799 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xe8\xfc","\xa8!",
|
---|
1800 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xf6","\xe0\xe4","$\xa3",
|
---|
1801 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1802 | };
|
---|
1803 |
|
---|
1804 | /* Switzerland, French, Sun dead keys */
|
---|
1805 | static const char main_key_ch_fr_sundeadkeys[MAIN_LEN][2] =
|
---|
1806 | {
|
---|
1807 | "\xa7\xb0","1+","2\"","3*","4\xe7","5%","6&","7/","8(","9)","0=","'?","\x1\x0",
|
---|
1808 | "qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","\xe8\xfc","\x4!",
|
---|
1809 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe9\xf6","\xe0\xe4","$\xa3",
|
---|
1810 | "yY","xX","cC","vV","bB","nN","mM",",;",".:","-_","<>","\x0\x0","\x0\x0"
|
---|
1811 | };
|
---|
1812 |
|
---|
1813 | /* Syria, Syriac */
|
---|
1814 | static const char main_key_sy_syc[MAIN_LEN][2] =
|
---|
1815 | {
|
---|
1816 | "\xf.","1!","2\xa","3%","4I","5p","6q","7\xa","8\xbb","9)","0(","-\xab","=+",
|
---|
1817 | "\x14""0","(3","\x16""6","):","&=","\x1c@","%A","\x17\x8","\x1e\x4","\x1a\x7","\x13\x3","\x15J",
|
---|
1818 | "+1","#4","\x1d""7","\x12;","\x20>","\x10\x11",",\xe0","\"$","!1","\x1f#","\x1b""0","\x6:",
|
---|
1819 | "]2","[5","$8","*<","'?","\x0""9",".B","\x18\xac","\x19\xbb","\x7\xbf","<>","\x0\x0","\x0\x0"
|
---|
1820 | };
|
---|
1821 |
|
---|
1822 | /* Syria, Syriac phonetic */
|
---|
1823 | static const char main_key_sy_syc_phonetic[MAIN_LEN][2] =
|
---|
1824 | {
|
---|
1825 | "\xf.","1!","2\xa","3%","4I","5p","6q","7\xa","8\xbb","9)","0(","-\xab","=+",
|
---|
1826 | ")0","\x18""3","\x16""6","*:",",=","\x1d@","\x1c""A","%\x8","'\x4","&\x7","]\x3","[J",
|
---|
1827 | "\x10""1","#4","\x15""7","\x14;","\x13>","\x17\x11","\x1b\xe0","\x1f$","\x20""1","\x1a#","\x1e""0","\x6:",
|
---|
1828 | "\x19""2","(5","$8","+<","\x12?","\"9","!B","\x0\xac",".\xbb","\x7\xbf","<>","\x0\x0","\x0\x0"
|
---|
1829 | };
|
---|
1830 |
|
---|
1831 | /* Tajikistan */
|
---|
1832 | static const char main_key_tj[MAIN_LEN][2] =
|
---|
1833 | {
|
---|
1834 | "\xa3\xb3","1!","2\"","3'","4*","5:","6,","7.","8;","9(","0)","-_","=+",
|
---|
1835 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","[T","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1836 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","\\|",
|
---|
1837 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","/?","|\xa6","\x0\x0","\x0\x0"
|
---|
1838 | };
|
---|
1839 |
|
---|
1840 | /* Sri Lanka */
|
---|
1841 | static const char main_key_lk[MAIN_LEN][2] =
|
---|
1842 | {
|
---|
1843 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1844 | "\x8d\x8e","\x87\x88","\x91\x92","\xbb\xca","\xa7\xa8","\xba\xca","\x8b\x8c","\x89\x8a","\x94\x95","\xb4\xb5","[{","]}",
|
---|
1845 | "\x85\x86","\xc3\xc2","\xa9\xaa","\xc6""F","\x9c\x9d","\xc4\x83","\xa2\xa3","\x9a\x9b","\xbd\xc5",";:","'\"","\\|",
|
---|
1846 | "\xa4\xa5","\xac\xb3","\xa0\xa1","\xc0V","\xb6\xb7","\xb1\xab","\xb8\xb9",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
1847 | };
|
---|
1848 |
|
---|
1849 | /* Thailand */
|
---|
1850 | static const char main_key_th[MAIN_LEN][2] =
|
---|
1851 | {
|
---|
1852 | "_%","\xe5+","/\xf1","-\xf2","\xc0\xf3","\xb6\xf4","\xd8\xd9","\xd6\xdf","\xa4\xf5","\xb5\xf6","\xa8\xf7","\xa2\xf8","\xaa\xf9",
|
---|
1853 | "\xe6\xf0","\xe4\"","\xd3\xae","\xbe\xb1","\xd0\xb8","\xd1\xed","\xd5\xea","\xc3\xb3","\xb9\xcf","\xc2\xad","\xba\xb0","\xc5,",
|
---|
1854 | "\xbf\xc4","\xcb\xa6","\xa1\xaf","\xb4\xe2","\xe0\xac","\xe9\xe7","\xe8\xeb","\xd2\xc9","\xca\xc8","\xc7\xab","\xa7.","\xa3\xa5",
|
---|
1855 | "\xbc(","\xbb)","\xe1\xa9","\xcd\xce","\xd4\xda","\xd7\xec","\xb7?","\xc1\xb2","\xe3\xcc","\xbd\xc6","<>","\x0\x0","\x0\x0"
|
---|
1856 | };
|
---|
1857 |
|
---|
1858 | /* Thailand, TIS-820.2538 */
|
---|
1859 | static const char main_key_th_tis[MAIN_LEN][2] =
|
---|
1860 | {
|
---|
1861 | "O[","\xdf\xe5","/\xf1","-\xf2","\xc0\xf3","\xb6\xf4","\xd8\xd9","\xd6N","\xa4\xf5","\xb5\xf6","\xa8\xf7","\xa2\xf8","\xaa\xf9",
|
---|
1862 | "\xe6\xf0","\xe4\"","\xd3\xae","\xbe\xb1","\xd0\xb8","\xd1\xed","\xd5\xea","\xc3\xb3","\xb9\xcf","\xc2\xad","\xba\xb0","\xc5,",
|
---|
1863 | "\xbf\xc4","\xcb\xa6","\xa1\xaf","\xb4\xe2","\xe0\xac","\xe9\xe7","\xe8\xeb","\xd2\xc9","\xca\xc8","\xc7\xab","\xa7.","\xa5\xa3",
|
---|
1864 | "\xbc(","\xbb)","\xe1\xa9","\xcd\xce","\xd4\xda","\xd7\xec","\xb7?","\xc1\xb2","\xe3\xcc","\xbd\xc6","<>","\x0\x0","\x0\x0"
|
---|
1865 | };
|
---|
1866 |
|
---|
1867 | /* Thailand, Pattachote */
|
---|
1868 | static const char main_key_th_pat[MAIN_LEN][2] =
|
---|
1869 | {
|
---|
1870 | "_\xdf","=+","\xf2\"","\xf3/","\xf4,","\xf5?","\xd9\xd8","\xf7_","\xf8.","\xf9(","\xf0)","\xf1-","\xf6%",
|
---|
1871 | "\xe7\xea","\xb5\xc4","\xc2\xe6","\xcd\xad","\xc3\xc9","\xe8\xd6","\xb4\xbd","\xc1\xab","\xc7\xb6","\xe1\xb2","\xe3\xcf","\xac\xc6",
|
---|
1872 | "\xe9\xeb","\xb7\xb8","\xa7\xd3","\xa1\xb3","\xd1\xec","\xd5\xd7","\xd2\xbc","\xb9\xaa","\xe0\xe2","\xe4\xa6","\xa2\xb1","\xe5\xed",
|
---|
1873 | "\xba\xae","\xbb\xaf","\xc5\xb0","\xcb\xc0","\xd4\xda","\xa4\xc8","\xca\xce","\xd0\xbf","\xa8\xa9","\xbe\xcc","<>","\x0\x0","\x0\x0"
|
---|
1874 | };
|
---|
1875 |
|
---|
1876 | /* Turkey */
|
---|
1877 | static const char main_key_tr[MAIN_LEN][2] =
|
---|
1878 | {
|
---|
1879 | "\"\\","1!","2'","3^","4+","5%","6&","7/","8(","9)","0=","*?","-_",
|
---|
1880 | "qQ","wW","eE","rR","tT","yY","uU","\xb9I","oO","pP","\xbb\xab","\xfc\xdc",
|
---|
1881 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xba\xaa","i\xa9",",;",
|
---|
1882 | "zZ","xX","cC","vV","bB","nN","mM","\xf6\xd6","\xe7\xc7",".:","<>","\x0\x0","\x0\x0"
|
---|
1883 | };
|
---|
1884 |
|
---|
1885 | /* Turkey, (F) */
|
---|
1886 | static const char main_key_tr_f[MAIN_LEN][2] =
|
---|
1887 | {
|
---|
1888 | "+*","1!","2\"","3^","4$","5%","6&","7'","8(","9)","0=","/?","-_",
|
---|
1889 | "fF","gG","\xbb\xab","\xb9I","oO","dD","rR","nN","hH","pP","qQ","wW",
|
---|
1890 | "uU","i\xa9","eE","aA","\xfc\xdc","tT","kK","mM","lL","yY","\xba\xaa","xX",
|
---|
1891 | "jJ","\xf6\xd6","vV","cC","\xe7\xc7","zZ","sS","bB",".:",",;","<>","\x0\x0","\x0\x0"
|
---|
1892 | };
|
---|
1893 |
|
---|
1894 | /* Ukraine */
|
---|
1895 | static const char main_key_ua[MAIN_LEN][2] =
|
---|
1896 | {
|
---|
1897 | "'~","1!","2\"","3#","4*","5:","6,","7.","8;","9(","0)","-_","=+",
|
---|
1898 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xa7\xb7",
|
---|
1899 | "\xc6\xe6","\xa6\xb6","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xa4\xb4","\xad\xbd",
|
---|
1900 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","/?","/|","\x0\x0","\x0\x0"
|
---|
1901 | };
|
---|
1902 |
|
---|
1903 | /* Ukraine, Phonetic */
|
---|
1904 | static const char main_key_ua_phonetic[MAIN_LEN][2] =
|
---|
1905 | {
|
---|
1906 | "'~","1!","2\"","3#","4*","5:","6,","7.","8;","9(","0)","-_","=+",
|
---|
1907 | "\xd1\xf1","\xd7\xf7","\xc5\xe5","\xd2\xf2","\xd4\xf4","\xc9\xc9","\xd5\xf5","\xa6\xb6","\xcf\xef","\xd0\xf0","\xdb\xfb","\xdd\xfd",
|
---|
1908 | "\xc1\xe1","\xd3\xf3","\xc4\xe4","\xc6\xe6","\xc7\xe7","\xc8\xe8","\xca\xea","\xcb\xeb","\xcc\xec","\xad\xbd","\xde\xfe","\xc0\xe0",
|
---|
1909 | "\xda\xfa","\xd8\xf8","\xc3\xe3","\xd6\xf6","\xc2\xe2","\xce\xee","\xcd\xed","\xa7\xb7","\xa4\xb4","/?","/|","\x0\x0","\x0\x0"
|
---|
1910 | };
|
---|
1911 |
|
---|
1912 | /* Ukraine, Typewriter */
|
---|
1913 | static const char main_key_ua_typewriter[MAIN_LEN][2] =
|
---|
1914 | {
|
---|
1915 | "'\"","!1","\xb0""2","/3",";4",":5",",6",".7","_8","?9","%0","-_","=+",
|
---|
1916 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xad\xbd",
|
---|
1917 | "\xc6\xe6","\xc9\xe9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xa4\xb4","()",
|
---|
1918 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xa6\xb6","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","\xa7\xb7","/|","\x0\x0","\x0\x0"
|
---|
1919 | };
|
---|
1920 |
|
---|
1921 | /* Ukraine, Winkeys */
|
---|
1922 | static const char main_key_ua_winkeys[MAIN_LEN][2] =
|
---|
1923 | {
|
---|
1924 | "'~","1!","2\"","3\xb0","4;","5%","6:","7?","8*","9(","0)","-_","=+",
|
---|
1925 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xa7\xb7",
|
---|
1926 | "\xc6\xe6","\xa6\xb6","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xa4\xb4","\xad\xbd",
|
---|
1927 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","/|","\x0\x0","\x0\x0"
|
---|
1928 | };
|
---|
1929 |
|
---|
1930 | /* Ukraine, Standard RSTU */
|
---|
1931 | static const char main_key_ua_rstu[MAIN_LEN][2] =
|
---|
1932 | {
|
---|
1933 | "'?","!1","\"2","#3",";4",":5",",6",".7","*8","(9",")0","-_","=+",
|
---|
1934 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xad\xbd",
|
---|
1935 | "\xc6\xe6","\xc9\xe9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xa4\xb4","/%",
|
---|
1936 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xa6\xb6","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","\xa7\xb7","/|","\x0\x0","\x0\x0"
|
---|
1937 | };
|
---|
1938 |
|
---|
1939 | /* Ukraine, Standard RSTU on Russian layout */
|
---|
1940 | static const char main_key_ua_rstu_ru[MAIN_LEN][2] =
|
---|
1941 | {
|
---|
1942 | "'?","!1","\"2","#3",";4",":5",",6",".7","*8","(9",")0","-_","=+",
|
---|
1943 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xdd\xfd","\xda\xfa","\xc8\xe8","\xdf\xff",
|
---|
1944 | "\xc6\xe6","\xd9\xf9","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","/%",
|
---|
1945 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0","\xa3\xb3","/|","\x0\x0","\x0\x0"
|
---|
1946 | };
|
---|
1947 |
|
---|
1948 | /* United Kingdom */
|
---|
1949 | static const char main_key_gb[MAIN_LEN][2] =
|
---|
1950 | {
|
---|
1951 | "`\xac","1!","2\"","3\xa3","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1952 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1953 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'@","#~",
|
---|
1954 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\\|","\x0\x0","\x0\x0"
|
---|
1955 | };
|
---|
1956 |
|
---|
1957 | /* United Kingdom, International (with dead keys) */
|
---|
1958 | static const char main_key_gb_intl[MAIN_LEN][2] =
|
---|
1959 | {
|
---|
1960 | "P\xac","1!","2W","3\xa3","4$","5%","6R","7&","8*","9(","0)","-_","=+",
|
---|
1961 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1962 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","Q@","#S",
|
---|
1963 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\\|","\x0\x0","\x0\x0"
|
---|
1964 | };
|
---|
1965 |
|
---|
1966 | /* United Kingdom, Dvorak */
|
---|
1967 | static const char main_key_gb_dvorak[MAIN_LEN][2] =
|
---|
1968 | {
|
---|
1969 | "`~","1!","2\"","3\xa3","4$","5%","6^","7&","8*","9(","0)","[{","]}",
|
---|
1970 | "'@",",<",".>","pP","yY","fF","gG","cC","rR","lL","/?","=+",
|
---|
1971 | "aA","oO","eE","uU","iI","dD","hH","tT","nN","sS","-_","#~",
|
---|
1972 | ";:","qQ","jJ","kK","xX","bB","mM","wW","vV","zZ","\\|","\x0\x0","\x0\x0"
|
---|
1973 | };
|
---|
1974 |
|
---|
1975 | /* United Kingdom, Macintosh */
|
---|
1976 | static const char main_key_gb_mac[MAIN_LEN][2] =
|
---|
1977 | {
|
---|
1978 | "`~","1!","2@","3\xa3","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
1979 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
1980 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1981 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
1982 | };
|
---|
1983 |
|
---|
1984 | /* Uzbekistan */
|
---|
1985 | static const char main_key_uz[MAIN_LEN][2] =
|
---|
1986 | {
|
---|
1987 | "\xa3\xb3","1!","2\"","3#","4;","5%","6:","7?","8*","9(","0)","\xae\xbe","\x9b\x9a",
|
---|
1988 | "\xca\xea","\xc3\xe3","\xd5\xf5","\xcb\xeb","\xc5\xe5","\xce\xee","\xc7\xe7","\xdb\xfb","\xc8\xe8","\xdf\xff","\x93\x92","\xb3\xb2",
|
---|
1989 | "\xc6\xe6","\xda\xfa","\xd7\xf7","\xc1\xe1","\xd0\xf0","\xd2\xf2","\xcf\xef","\xcc\xec","\xc4\xe4","\xd6\xf6","\xdc\xfc","\\|",
|
---|
1990 | "\xd1\xf1","\xde\xfe","\xd3\xf3","\xcd\xed","\xc9\xe9","\xd4\xf4","\xd8\xf8","\xc2\xe2","\xc0\xe0",".,","/|","\x0\x0","\x0\x0"
|
---|
1991 | };
|
---|
1992 |
|
---|
1993 | /* Vietnam */
|
---|
1994 | static const char main_key_vn[MAIN_LEN][2] =
|
---|
1995 | {
|
---|
1996 | "`~","\xe3\xc3","\xe2\xc2","\xea\xca","\xf4\xd4","P%","a^","S&","Q*","`(","\xf0\xd0","-_","\xab+",
|
---|
1997 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xb0\xaf","\xa1\xa0",
|
---|
1998 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
1999 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
2000 | };
|
---|
2001 |
|
---|
2002 | /* Japan (PC-98xx Series) */
|
---|
2003 | static const char main_key_nec_vndr_jp[MAIN_LEN][2] =
|
---|
2004 | {
|
---|
2005 | "\x0\x0","1!","2\"","3#","4$","5%","6&","7'","8(","9)","00","-=","^`",
|
---|
2006 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","@~","[{",
|
---|
2007 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";+",":*","\\|",
|
---|
2008 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0_","\x0\x0"
|
---|
2009 | };
|
---|
2010 |
|
---|
2011 | /* Ireland, Ogham */
|
---|
2012 | static const char main_key_ie_ogam[MAIN_LEN][2] =
|
---|
2013 | {
|
---|
2014 | "\x9c\x9c","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0","\x0\x0",
|
---|
2015 | "\x8a\x8a","\x95\x95","\x93\x93","\x8f\x8f","\x88\x88","\x98\x98","\x92\x92","\x94\x94","\x91\x91","\x9a\x9a","\x0\x0","\x0\x0",
|
---|
2016 | "\x90\x90","\x84\x84","\x87\x87","\x83\x83","\x8c\x8c","\x86\x86","\x97\x97","\x96\x96","\x82\x82","\x0\x0","\x0\x0","\x80\x80",
|
---|
2017 | "\x8e\x8e","\x99\x99","\x89\x89","\x8d\x8d","\x81\x81","\x85\x85","\x8b\x8b","\x9c\x9c","\x9b\x9b","\x80\x80","\x9b\x9c","\x0\x0","\x0\x0"
|
---|
2018 | };
|
---|
2019 |
|
---|
2020 | /* Ireland, Ogham IS434 */
|
---|
2021 | static const char main_key_ie_ogam_is434[MAIN_LEN][2] =
|
---|
2022 | {
|
---|
2023 | "`\xac","1!","2\"","3\xa3","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
2024 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","\x0\x0","\x0\x0",
|
---|
2025 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\x0\x0","\x0\x0","#~",
|
---|
2026 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","\\|","\x0\x0","\x0\x0"
|
---|
2027 | };
|
---|
2028 |
|
---|
2029 | /* Maldives */
|
---|
2030 | static const char main_key_mv[MAIN_LEN][2] =
|
---|
2031 | {
|
---|
2032 | "`~","1!","2@","3#","4$","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
2033 | "\xb0\xa4","\x87\xa2","\xac\xad","\x83\x9c","\x8c\x93","\x94\xa0","\xaa\xab","\xa8\xa9","\xae\xaf","\x95\xf7","[{","]}",
|
---|
2034 | "\xa6\xa7","\x90\x81","\x8b\x91","\x8a\xf2","\x8e\xa3","\x80\x99","\x96\x9b","\x86\x9a","\x8d\x85",";:","'\"","\\|",
|
---|
2035 | "\x92\xa1","\xd7\x98","\x97\x9d","\x88\xa5","\x84\x9e","\x82\x8f","\x89\x9f","\xac<",".>","/\xbf","|\xa6","\x0\x0","\x0\x0"
|
---|
2036 | };
|
---|
2037 |
|
---|
2038 | /* Esperanto */
|
---|
2039 | static const char main_key_epo[MAIN_LEN][2] =
|
---|
2040 | {
|
---|
2041 | "`~","1!","2\"","3#","4$","5%","6'","7&","8*","9(","0)","-_","=+",
|
---|
2042 | "\xfe\xde","\xbc\xac","eE","rR","tT","\xf8\xd8","uU","iI","oO","pP","[{","]}",
|
---|
2043 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xfd\xdd","\xb6\xa6","\\|",
|
---|
2044 | "zZ","\xe6\xc6","cC","vV","bB","nN","mM",",;",".:","/?","<>","\x0\x0","\x0\x0"
|
---|
2045 | };
|
---|
2046 |
|
---|
2047 | /* Nepal */
|
---|
2048 | static const char main_key_np[MAIN_LEN][2] =
|
---|
2049 | {
|
---|
2050 | "=<","gg","hh","ii","jj","kk","ll","mm","nn","oo","fp","-R","=\xc",
|
---|
2051 | "\x1f\x20","L\x14","GH","0C","$%","/\x1e","AB","?@","K\x13","*+","\x7\x8","\xf\x10",
|
---|
2052 | ">\x6","86","&'","\x9\xa","\x17\x18","9\x5","\x1c\x1d","\x15\x16","23",";:","'\"","P\x3",
|
---|
2053 | "7\xb","!\"","\x1b\x1a","5\x1",",-","(#",".\x2",",\x19","de","M?","<>","\x0\x0","\x0\x0"
|
---|
2054 | };
|
---|
2055 |
|
---|
2056 | /* Nigeria */
|
---|
2057 | static const char main_key_ng[MAIN_LEN][2] =
|
---|
2058 | {
|
---|
2059 | "`~","1!","2@","3#","4\xa6","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
2060 | "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
2061 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
2062 | "zZ","xX","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
2063 | };
|
---|
2064 |
|
---|
2065 | /* Nigeria, Igbo */
|
---|
2066 | static const char main_key_ng_igbo[MAIN_LEN][2] =
|
---|
2067 | {
|
---|
2068 | "`~","1!","2@","3#","4\xa6","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
2069 | "\xcb\xca","wW","eE","rR","tT","yY","uU","iI","oO","pP","\xcd\xcc","]}",
|
---|
2070 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL","\xe5\xe4","'\"","\\|",
|
---|
2071 | "zZ","ED","cC","vV","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
2072 | };
|
---|
2073 |
|
---|
2074 | /* Nigeria, Yoruba */
|
---|
2075 | static const char main_key_ng_yoruba[MAIN_LEN][2] =
|
---|
2076 | {
|
---|
2077 | "`~","1!","2@","3#","4\xa6","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
2078 | "\xb9\xb8","wW","eE","rR","tT","yY","uU","iI","oO","pP","[{","]}",
|
---|
2079 | "aA","sS","dD","fF","gG","hH","jJ","kK","lL",";:","'\"","\\|",
|
---|
2080 | "zZ","\xcd\xcc","cC","cb","bB","nN","mM",",<",".>","/?","<>","\x0\x0","\x0\x0"
|
---|
2081 | };
|
---|
2082 |
|
---|
2083 | /* Nigeria, Hausa */
|
---|
2084 | static const char main_key_ng_hausa[MAIN_LEN][2] =
|
---|
2085 | {
|
---|
2086 | "`~","1!","2@","3#","4\xa6","5%","6^","7&","8*","9(","0)","-_","=+",
|
---|
2087 | "qQ","\xfc\xdc","eE","rR","tT","yY","uU","iI","oO","pP","\xb4\xb3","\xe7\xe6",
|
---|
2088 | "aA","sS","W\x8a","fF","gG","hH","jJ","kK","lL","10","\xdd\x8e","\\|",
|
---|
2089 | "r\x9d","xX","cC","vV","bB","nN","\xf1\xd1",",<","\xe7\xc7","\xba\xaa","<>","\x0\x0","\x0\x0"
|
---|
2090 | };
|
---|
2091 |
|
---|
2092 |
|
---|
2093 | #ifdef __clang__
|
---|
2094 | # pragma clang diagnostic pop
|
---|
2095 | #endif
|
---|