Mercurial > emacs
annotate leim/quail/ethiopic.el @ 72759:1bc06d26b6b1
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 09 Sep 2006 18:26:56 +0000 |
parents | f3fbe553f034 |
children | 6ee41fdd69ff 72dea2ff0142 |
rev | line source |
---|---|
40710 | 1 ;;; ethiopic.el --- Quail package for inputting Ethiopic characters -*-coding: iso-2022-7bit;-*- |
18673 | 2 |
70125
f3fbe553f034
updated copyright year(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents:
67657
diff
changeset
|
3 ;; Copyright (C) 1997, 1998, 1999, 2001, 2006 |
67657 | 4 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
5 ;; Registration Number H14PRO021 | |
18673 | 6 |
7 ;; Keywords: multilingual, input method, ethiopic | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64083 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
18673 | 25 |
26 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp> | |
27 | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
36559
diff
changeset
|
28 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
36559
diff
changeset
|
29 |
18673 | 30 ;;; Code: |
31 | |
32 (require 'quail) | |
33 (require 'ethio-util) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40710
diff
changeset
|
34 |
18673 | 35 ;; |
18965
7b3efca4f455
Change Quail package name to "ethiopic".
Kenichi Handa <handa@m17n.org>
parents:
18673
diff
changeset
|
36 ;; The package "ethiopic" |
18673 | 37 ;; |
38 | |
39 (quail-define-package | |
40 "ethiopic" "Ethiopic" | |
20166
e26933e2b3e8
The title string of input method "Ethiopic"
Kenichi Handa <handa@m17n.org>
parents:
19856
diff
changeset
|
41 '("$(3$Q#U!.(B " |
18673 | 42 (ethio-prefer-ascii-space "_" "$(3$h(B") |
43 (ethio-prefer-ascii-punctuation "." "$(3$i(B")) | |
36559
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
44 t " Quail package for Ethiopic (Tigrigna and Amharic) |
19856
18197e422b9f
Don't bind keys in quail-mode-map. The
Kenichi Handa <handa@m17n.org>
parents:
19650
diff
changeset
|
45 |
36559
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
46 When you are in Ethiopic language environment, the following special |
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
47 keys are available. |
18673 | 48 |
36559
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
49 C-F9 or `M-x ethio-toggle-space' |
18673 | 50 Toggles space characters for keyboard input. The current mode is |
51 indicated in mode-line, whether by `_' (ASCII space) or `$(3$h(B' | |
52 (Ethiopic colon-like word separator). Even in the `$(3$h(B' mode, an | |
53 ASCII space is inserted if the point is preceded by `an Ethiopic | |
54 punctuation followed by zero or more ASCII spaces'. | |
55 | |
36559
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
56 S-F5 or `M-x ethio-toggle-punctuation' |
18673 | 57 Toggles ASCII punctuations and Ethiopic punctuations for keyboard input. |
58 The current mode is indicated by `.' (ASCII) or `$(3$i(B' (Ethiopic). | |
59 | |
19650
2ef4b730776d
("ethiopic"): Doc-sring fixed. Change the arg
Kenichi Handa <handa@m17n.org>
parents:
19093
diff
changeset
|
60 S-SPC or `M-x ethio-insert-ethio-space' |
18673 | 61 Always insert an Ethiopic word separator `$(3$h(B'. With a prefix number, |
62 insert that many word separators. | |
63 | |
19650
2ef4b730776d
("ethiopic"): Doc-sring fixed. Change the arg
Kenichi Handa <handa@m17n.org>
parents:
19093
diff
changeset
|
64 C-' or `M-x ethio-gemination' |
18673 | 65 Compose the character before the point with the Ethiopic gemination mark. |
66 If the characater is already composed, decompose it and remove the | |
67 gemination mark." | |
68 | |
19856
18197e422b9f
Don't bind keys in quail-mode-map. The
Kenichi Handa <handa@m17n.org>
parents:
19650
diff
changeset
|
69 ;; The following keys should work as defined in lisp/language/ethio-util, |
18197e422b9f
Don't bind keys in quail-mode-map. The
Kenichi Handa <handa@m17n.org>
parents:
19650
diff
changeset
|
70 ;; even during the translation. |
36559
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
71 '(([C-f9] . quail-execute-non-quail-command) |
37e6db283e2c
("ethiopic"): Docstring adjusted for the change of the speicial key
Kenichi Handa <handa@m17n.org>
parents:
24846
diff
changeset
|
72 ([S-f5] . quail-execute-non-quail-command) |
19856
18197e422b9f
Don't bind keys in quail-mode-map. The
Kenichi Handa <handa@m17n.org>
parents:
19650
diff
changeset
|
73 (" " . quail-execute-non-quail-command) |
18197e422b9f
Don't bind keys in quail-mode-map. The
Kenichi Handa <handa@m17n.org>
parents:
19650
diff
changeset
|
74 ([?\S- ] . quail-execute-non-quail-command) |
18197e422b9f
Don't bind keys in quail-mode-map. The
Kenichi Handa <handa@m17n.org>
parents:
19650
diff
changeset
|
75 ([?\C-'] . quail-execute-non-quail-command)) |
18673 | 76 t t) |
77 | |
78 (quail-define-rules | |
79 ("he" ?$(3!!(B) | |
80 ("hu" ?$(3!"(B) | |
81 ("hi" ?$(3!#(B) | |
82 ("ha" ?$(3!$(B) | |
83 ("hE" ?$(3!%(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
84 ("hee" ?$(3!%(B) |
18673 | 85 ("h" ?$(3!&(B) |
86 ("ho" ?$(3!'(B) | |
87 ("hW" ?$(3"N(B) | |
88 ("hWa" ?$(3"N(B) | |
89 ("hWe" ?$(3"K(B) | |
90 ("hWu" ?$(3"P(B) | |
91 ("hWi" ?$(3"M(B) | |
92 ("hWE" ?$(3"O(B) | |
93 ("hW'" ?$(3"P(B) | |
94 | |
95 ("le" ?$(3!)(B) | |
96 ("lu" ?$(3!*(B) | |
97 ("li" ?$(3!+(B) | |
98 ("la" ?$(3!,(B) | |
99 ("lE" ?$(3!-(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
100 ("lee" ?$(3!-(B) |
18673 | 101 ("l" ?$(3!.(B) |
102 ("lo" ?$(3!/(B) | |
103 ("lW" ?$(3!0(B) | |
104 ("lWa" ?$(3!0(B) | |
105 ("lWe" ["$(3!.%n(B"]) | |
106 ("lWu" ["$(3!.%r(B"]) | |
107 ("lWi" ["$(3!.%o(B"]) | |
108 ("lWE" ["$(3!.%q(B"]) | |
109 ("lW'" ["$(3!.%r(B"]) | |
110 | |
111 ("Le" ?$(3!)(B) | |
112 ("Lu" ?$(3!*(B) | |
113 ("Li" ?$(3!+(B) | |
114 ("La" ?$(3!,(B) | |
115 ("LE" ?$(3!-(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
116 ("Lee" ?$(3!-(B) |
18673 | 117 ("L" ?$(3!.(B) |
118 ("Lo" ?$(3!/(B) | |
119 ("LW" ?$(3!0(B) | |
120 ("LWa" ?$(3!0(B) | |
121 ("LWe" ["$(3!.%n(B"]) | |
122 ("LWu" ["$(3!.%r(B"]) | |
123 ("LWi" ["$(3!.%o(B"]) | |
124 ("LWE" ["$(3!.%q(B"]) | |
125 ("LW'" ["$(3!.%r(B"]) | |
126 | |
127 ("He" ?$(3!1(B) | |
128 ("Hu" ?$(3!2(B) | |
129 ("Hi" ?$(3!3(B) | |
130 ("Ha" ?$(3!4(B) | |
131 ("HE" ?$(3!5(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
132 ("Hee" ?$(3!5(B) |
18673 | 133 ("H" ?$(3!6(B) |
134 ("Ho" ?$(3!7(B) | |
135 ("HW" ?$(3!8(B) | |
136 ("HWa" ?$(3!8(B) | |
137 ("HWe" ["$(3!6%n(B"]) | |
138 ("HWu" ["$(3!6%r(B"]) | |
139 ("HWi" ["$(3!6%o(B"]) | |
140 ("HWE" ["$(3!6%q(B"]) | |
141 ("HW'" ["$(3!6%r(B"]) | |
142 | |
143 ("me" ?$(3!9(B) | |
144 ("mu" ?$(3!:(B) | |
145 ("mi" ?$(3!;(B) | |
146 ("ma" ?$(3!<(B) | |
147 ("mE" ?$(3!=(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
148 ("mee" ?$(3!=(B) |
18673 | 149 ("m" ?$(3!>(B) |
150 ("mo" ?$(3!?(B) | |
151 ("mWe" ?$(3%1(B) | |
152 ("mWu" ?$(3%a(B) | |
153 ("mWi" ?$(3%A(B) | |
154 ("mW" ?$(3!@(B) | |
155 ("mWa" ?$(3!@(B) | |
156 ("mWE" ?$(3%Q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
157 ("mWee" ?$(3%Q(B) |
18673 | 158 ("mW'" ?$(3%a(B) |
159 ("mY" ?$(3$_(B) | |
160 ("mYa" ?$(3$_(B) | |
161 | |
162 ("Me" ?$(3!9(B) | |
163 ("Mu" ?$(3!:(B) | |
164 ("Mi" ?$(3!;(B) | |
165 ("Ma" ?$(3!<(B) | |
166 ("ME" ?$(3!=(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
167 ("Mee" ?$(3!=(B) |
18673 | 168 ("M" ?$(3!>(B) |
169 ("Mo" ?$(3!?(B) | |
170 ("MWe" ?$(3%1(B) | |
171 ("MWu" ?$(3%a(B) | |
172 ("MWi" ?$(3%A(B) | |
173 ("MW" ?$(3!@(B) | |
174 ("MWa" ?$(3!@(B) | |
175 ("MWE" ?$(3%Q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
176 ("MWee" ?$(3%Q(B) |
18673 | 177 ("MW'" ?$(3%a(B) |
178 ("MY" ?$(3$_(B) | |
179 ("MYa" ?$(3$_(B) | |
180 | |
181 ("`se" ?$(3!A(B) | |
182 ("`su" ?$(3!B(B) | |
183 ("`si" ?$(3!C(B) | |
184 ("`sa" ?$(3!D(B) | |
185 ("`sE" ?$(3!E(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
186 ("`see" ?$(3!E(B) |
18673 | 187 ("`s" ?$(3!F(B) |
188 ("`so" ?$(3!G(B) | |
189 ("`sW" ?$(3!H(B) | |
190 ("`sWa" ?$(3!H(B) | |
191 ("`sWe" ["$(3!F%n(B"]) | |
192 ("`sWu" ["$(3!F%r(B"]) | |
193 ("`sWi" ["$(3!F%o(B"]) | |
194 ("`sWE" ["$(3!F%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
195 ("`sWee" ["$(3!F%q(B"]) |
18673 | 196 ("`sW'" ["$(3!F%r(B"]) |
197 | |
198 ("s2e" ?$(3!A(B) | |
199 ("s2u" ?$(3!B(B) | |
200 ("s2i" ?$(3!C(B) | |
201 ("s2a" ?$(3!D(B) | |
202 ("s2E" ?$(3!E(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
203 ("s2ee" ?$(3!E(B) |
18673 | 204 ("s2" ?$(3!F(B) |
205 ("s2o" ?$(3!G(B) | |
206 ("s2W" ?$(3!H(B) | |
207 ("s2Wa" ?$(3!H(B) | |
208 ("s2We" ["$(3!F%n(B"]) | |
209 ("s2Wu" ["$(3!F%r(B"]) | |
210 ("s2Wi" ["$(3!F%o(B"]) | |
211 ("s2WE" ["$(3!F%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
212 ("s2Wee" ["$(3!F%q(B"]) |
18673 | 213 ("s2W'" ["$(3!F%r(B"]) |
214 | |
215 ("sse" ?$(3!A(B) | |
216 ("ssu" ?$(3!B(B) | |
217 ("ssi" ?$(3!C(B) | |
218 ("ssa" ?$(3!D(B) | |
219 ("ssE" ?$(3!E(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
220 ("ssee" ?$(3!E(B) |
18673 | 221 ("ss" ?$(3!F(B) |
222 ("sso" ?$(3!G(B) | |
223 ("ssW" ?$(3!H(B) | |
224 ("ssWa" ?$(3!H(B) | |
225 ("ssWe" ["$(3!F%n(B"]) | |
226 ("ssWu" ["$(3!F%r(B"]) | |
227 ("ssWi" ["$(3!F%o(B"]) | |
228 ("ssWE" ["$(3!F%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
229 ("ssWee" ["$(3!F%q(B"]) |
18673 | 230 ("ssW'" ["$(3!F%r(B"]) |
231 | |
232 ("re" ?$(3!I(B) | |
233 ("ru" ?$(3!J(B) | |
234 ("ri" ?$(3!K(B) | |
235 ("ra" ?$(3!L(B) | |
236 ("rE" ?$(3!M(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
237 ("ree" ?$(3!M(B) |
18673 | 238 ("r" ?$(3!N(B) |
239 ("ro" ?$(3!O(B) | |
240 ("rW" ?$(3!P(B) | |
241 ("rWa" ?$(3!P(B) | |
242 ("rY" ?$(3$`(B) | |
243 ("rYa" ?$(3$`(B) | |
244 ("rWe" ["$(3!N%n(B"]) | |
245 ("rWu" ["$(3!N%r(B"]) | |
246 ("rWi" ["$(3!N%o(B"]) | |
247 ("rWE" ["$(3!N%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
248 ("rWee" ["$(3!N%q(B"]) |
18673 | 249 ("rW'" ["$(3!N%r(B"]) |
250 | |
251 ("Re" ?$(3!I(B) | |
252 ("Ru" ?$(3!J(B) | |
253 ("Ri" ?$(3!K(B) | |
254 ("Ra" ?$(3!L(B) | |
255 ("RE" ?$(3!M(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
256 ("Ree" ?$(3!M(B) |
18673 | 257 ("R" ?$(3!N(B) |
258 ("Ro" ?$(3!O(B) | |
259 ("RW" ?$(3!P(B) | |
260 ("RWa" ?$(3!P(B) | |
261 ("RYa" ?$(3$`(B) | |
262 ("RWe" ["$(3!N%n(B"]) | |
263 ("RWu" ["$(3!N%r(B"]) | |
264 ("RWi" ["$(3!N%o(B"]) | |
265 ("RWE" ["$(3!N%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
266 ("RWee" ["$(3!N%q(B"]) |
18673 | 267 ("RW'" ["$(3!N%r(B"]) |
268 | |
269 ("se" ?$(3!Q(B) | |
270 ("su" ?$(3!R(B) | |
271 ("si" ?$(3!S(B) | |
272 ("sa" ?$(3!T(B) | |
273 ("sE" ?$(3!U(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
274 ("see" ?$(3!U(B) |
18673 | 275 ("s" ?$(3!V(B) |
276 ("so" ?$(3!W(B) | |
277 ("sW" ?$(3!X(B) | |
278 ("sWa" ?$(3!X(B) | |
279 ("sWe" ["$(3!V%n(B"]) | |
280 ("sWu" ["$(3!V%r(B"]) | |
281 ("sWi" ["$(3!V%o(B"]) | |
282 ("sWE" ["$(3!V%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
283 ("sWee" ["$(3!V%q(B"]) |
18673 | 284 ("sW'" ["$(3!V%r(B"]) |
285 | |
286 ("xe" ?$(3!Y(B) | |
287 ("xu" ?$(3!Z(B) | |
288 ("xi" ?$(3![(B) | |
289 ("xa" ?$(3!\(B) | |
290 ("xE" ?$(3!](B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
291 ("xee" ?$(3!](B) |
18673 | 292 ("x" ?$(3!^(B) |
293 ("xo" ?$(3!_(B) | |
294 ("xW" ?$(3!`(B) | |
295 ("xWa" ?$(3!`(B) | |
296 ("xWe" ["$(3!^%n(B"]) | |
297 ("xWu" ["$(3!^%r(B"]) | |
298 ("xWi" ["$(3!^%o(B"]) | |
299 ("xWE" ["$(3!^%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
300 ("xWee" ["$(3!^%q(B"]) |
18673 | 301 ("xW'" ["$(3!^%r(B"]) |
302 | |
303 ("qe" ?$(3!a(B) | |
304 ("qu" ?$(3!b(B) | |
305 ("qi" ?$(3!c(B) | |
306 ("qa" ?$(3!d(B) | |
307 ("qE" ?$(3!e(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
308 ("qee" ?$(3!e(B) |
18673 | 309 ("q" ?$(3!f(B) |
310 ("qo" ?$(3!g(B) | |
311 ("qWe" ?$(3!i(B) | |
312 ("qWu" ?$(3!n(B) | |
313 ("qWi" ?$(3!k(B) | |
314 ("qW" ?$(3!l(B) | |
315 ("qWa" ?$(3!l(B) | |
316 ("qWE" ?$(3!m(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
317 ("qWee" ?$(3!m(B) |
18673 | 318 ("qW'" ?$(3!n(B) |
319 | |
320 ("`qe" ?$(3%)(B) | |
321 ("`qu" ?$(3%*(B) | |
322 ("`qi" ?$(3%+(B) | |
323 ("`qa" ?$(3%,(B) | |
324 ("`qE" ?$(3%-(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
325 ("`qee" ?$(3%-(B) |
18673 | 326 ("`q" ?$(3%.(B) |
327 ("`qo" ?$(3%/(B) | |
328 | |
329 ("q2e" ?$(3%)(B) | |
330 ("q2u" ?$(3%*(B) | |
331 ("q2i" ?$(3%+(B) | |
332 ("q2a" ?$(3%,(B) | |
333 ("q2E" ?$(3%-(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
334 ("q2ee" ?$(3%-(B) |
18673 | 335 ("q2" ?$(3%.(B) |
336 ("q2o" ?$(3%/(B) | |
337 | |
338 ("qqe" ?$(3%)(B) | |
339 ("qqu" ?$(3%*(B) | |
340 ("qqi" ?$(3%+(B) | |
341 ("qqa" ?$(3%,(B) | |
342 ("qqE" ?$(3%-(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
343 ("qqee" ?$(3%-(B) |
18673 | 344 ("qq" ?$(3%.(B) |
345 ("qqo" ?$(3%/(B) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40710
diff
changeset
|
346 |
18673 | 347 ("Qe" ?$(3!q(B) |
348 ("Qu" ?$(3!r(B) | |
349 ("Qi" ?$(3!s(B) | |
350 ("Qa" ?$(3!t(B) | |
351 ("QE" ?$(3!u(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
352 ("Qee" ?$(3!u(B) |
18673 | 353 ("Q" ?$(3!v(B) |
354 ("Qo" ?$(3!w(B) | |
355 ("QWe" ?$(3!y(B) | |
356 ("QWu" ?$(3!~(B) | |
357 ("QWi" ?$(3!{(B) | |
358 ("QW" ?$(3!|(B) | |
359 ("QWa" ?$(3!|(B) | |
360 ("QWE" ?$(3!}(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
361 ("QWee" ?$(3!}(B) |
18673 | 362 ("QW'" ?$(3!~(B) |
363 | |
364 ("be" ?$(3"#(B) | |
365 ("bu" ?$(3"$(B) | |
366 ("bi" ?$(3"%(B) | |
367 ("ba" ?$(3"&(B) | |
368 ("bE" ?$(3"'(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
369 ("bee" ?$(3"'(B) |
18673 | 370 ("b" ?$(3"((B) |
371 ("bo" ?$(3")(B) | |
372 ("bWe" ?$(3%2(B) | |
373 ("bWu" ?$(3%b(B) | |
374 ("bWi" ?$(3%B(B) | |
375 ("bW" ?$(3"*(B) | |
376 ("bWa" ?$(3"*(B) | |
377 ("bWE" ?$(3%R(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
378 ("bWee" ?$(3%R(B) |
18673 | 379 ("bW'" ?$(3%b(B) |
380 | |
381 ("Be" ?$(3"#(B) | |
382 ("Bu" ?$(3"$(B) | |
383 ("Bi" ?$(3"%(B) | |
384 ("Ba" ?$(3"&(B) | |
385 ("BE" ?$(3"'(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
386 ("Bee" ?$(3"'(B) |
18673 | 387 ("B" ?$(3"((B) |
388 ("Bo" ?$(3")(B) | |
389 ("BWe" ?$(3%2(B) | |
390 ("BWu" ?$(3%b(B) | |
391 ("BWi" ?$(3%B(B) | |
392 ("BW" ?$(3"*(B) | |
393 ("BWa" ?$(3"*(B) | |
394 ("BWE" ?$(3%R(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
395 ("BWee" ?$(3%R(B) |
18673 | 396 ("BW'" ?$(3%b(B) |
397 | |
398 ("ve" ?$(3"+(B) | |
399 ("vu" ?$(3",(B) | |
400 ("vi" ?$(3"-(B) | |
401 ("va" ?$(3".(B) | |
402 ("vE" ?$(3"/(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
403 ("vee" ?$(3"/(B) |
18673 | 404 ("v" ?$(3"0(B) |
405 ("vo" ?$(3"1(B) | |
406 ("vW" ?$(3"2(B) | |
407 ("vWa" ?$(3"2(B) | |
408 ("vWe" ["$(3"0%n(B"]) | |
409 ("vWu" ["$(3"0%r(B"]) | |
410 ("vWi" ["$(3"0%o(B"]) | |
411 ("vWE" ["$(3"0%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
412 ("vWee" ["$(3"0%q(B"]) |
18673 | 413 ("vW'" ["$(3"0%r(B"]) |
414 | |
415 ("Ve" ?$(3"+(B) | |
416 ("Vu" ?$(3",(B) | |
417 ("Vi" ?$(3"-(B) | |
418 ("Va" ?$(3".(B) | |
419 ("VE" ?$(3"/(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
420 ("Vee" ?$(3"/(B) |
18673 | 421 ("V" ?$(3"0(B) |
422 ("Vo" ?$(3"1(B) | |
423 ("VW" ?$(3"2(B) | |
424 ("VWa" ?$(3"2(B) | |
425 ("VWe" ["$(3"0%n(B"]) | |
426 ("VWu" ["$(3"0%r(B"]) | |
427 ("VWi" ["$(3"0%o(B"]) | |
428 ("VWE" ["$(3"0%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
429 ("VWee" ["$(3"0%q(B"]) |
18673 | 430 ("VW'" ["$(3"0%r(B"]) |
431 | |
432 ("te" ?$(3"3(B) | |
433 ("tu" ?$(3"4(B) | |
434 ("ti" ?$(3"5(B) | |
435 ("ta" ?$(3"6(B) | |
436 ("tE" ?$(3"7(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
437 ("tee" ?$(3"7(B) |
18673 | 438 ("t" ?$(3"8(B) |
439 ("to" ?$(3"9(B) | |
440 ("tW" ?$(3":(B) | |
441 ("tWa" ?$(3":(B) | |
442 ("tWe" ["$(3"8%n(B"]) | |
443 ("tWu" ["$(3"8%r(B"]) | |
444 ("tWi" ["$(3"8%o(B"]) | |
445 ("tWE" ["$(3"8%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
446 ("tWee" ["$(3"8%q(B"]) |
18673 | 447 ("tW'" ["$(3"8%r(B"]) |
448 | |
449 ("ce" ?$(3";(B) | |
450 ("cu" ?$(3"<(B) | |
451 ("ci" ?$(3"=(B) | |
452 ("ca" ?$(3">(B) | |
453 ("cE" ?$(3"?(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
454 ("cee" ?$(3"?(B) |
18673 | 455 ("c" ?$(3"@(B) |
456 ("co" ?$(3"A(B) | |
457 ("cW" ?$(3"B(B) | |
458 ("cWa" ?$(3"B(B) | |
459 ("cWe" ["$(3"@%n(B"]) | |
460 ("cWu" ["$(3"@%r(B"]) | |
461 ("cWi" ["$(3"@%o(B"]) | |
462 ("cWE" ["$(3"@%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
463 ("cWee" ["$(3"@%q(B"]) |
18673 | 464 ("cW'" ["$(3"@%r(B"]) |
465 | |
466 ("`he" ?$(3"C(B) | |
467 ("`hu" ?$(3"D(B) | |
468 ("`hi" ?$(3"E(B) | |
469 ("`ha" ?$(3"F(B) | |
470 ("`hE" ?$(3"G(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
471 ("`hee" ?$(3"G(B) |
18673 | 472 ("`h" ?$(3"H(B) |
473 ("`ho" ?$(3"I(B) | |
474 ("`hWe" ?$(3"K(B) | |
475 ("`hWu" ?$(3"P(B) | |
476 ("`hWi" ?$(3"M(B) | |
477 ("`hW" ?$(3"N(B) | |
478 ("`hWa" ?$(3"N(B) | |
479 ("`hWE" ?$(3"O(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
480 ("`hWee" ?$(3"O(B) |
18673 | 481 ("`hW'" ?$(3"P(B) |
482 | |
483 ("h2e" ?$(3"C(B) | |
484 ("h2u" ?$(3"D(B) | |
485 ("h2i" ?$(3"E(B) | |
486 ("h2a" ?$(3"F(B) | |
487 ("h2E" ?$(3"G(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
488 ("h2ee" ?$(3"G(B) |
18673 | 489 ("h2" ?$(3"H(B) |
490 ("h2o" ?$(3"I(B) | |
491 ("h2We" ?$(3"K(B) | |
492 ("h2Wu" ?$(3"P(B) | |
493 ("h2Wi" ?$(3"M(B) | |
494 ("h2W" ?$(3"N(B) | |
495 ("h2Wa" ?$(3"N(B) | |
496 ("h2WE" ?$(3"O(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
497 ("h2Wee" ?$(3"O(B) |
18673 | 498 ("h2W'" ?$(3"P(B) |
499 | |
500 ("hhe" ?$(3"C(B) | |
501 ("hhu" ?$(3"D(B) | |
502 ("hhi" ?$(3"E(B) | |
503 ("hha" ?$(3"F(B) | |
504 ("hhE" ?$(3"G(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
505 ("hhee" ?$(3"G(B) |
18673 | 506 ("hh" ?$(3"H(B) |
507 ("hho" ?$(3"I(B) | |
508 ("hhWe" ?$(3"K(B) | |
509 ("hhWu" ?$(3"P(B) | |
510 ("hhWi" ?$(3"M(B) | |
511 ("hhW" ?$(3"N(B) | |
512 ("hhWa" ?$(3"N(B) | |
513 ("hhWE" ?$(3"O(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
514 ("hhWee" ?$(3"O(B) |
18673 | 515 ("hhW'" ?$(3"P(B) |
516 | |
517 ("ne" ?$(3"S(B) | |
518 ("nu" ?$(3"T(B) | |
519 ("ni" ?$(3"U(B) | |
520 ("na" ?$(3"V(B) | |
521 ("nE" ?$(3"W(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
522 ("nee" ?$(3"W(B) |
18673 | 523 ("n" ?$(3"X(B) |
524 ("no" ?$(3"Y(B) | |
525 ("nW" ?$(3"Z(B) | |
526 ("nWa" ?$(3"Z(B) | |
527 ("nWe" ["$(3"X%n(B"]) | |
528 ("nWu" ["$(3"X%r(B"]) | |
529 ("nWi" ["$(3"X%o(B"]) | |
530 ("nWE" ["$(3"X%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
531 ("nWee" ["$(3"X%q(B"]) |
18673 | 532 ("nW'" ["$(3"X%r(B"]) |
533 | |
534 ("Ne" ?$(3"[(B) | |
535 ("Nu" ?$(3"\(B) | |
536 ("Ni" ?$(3"](B) | |
537 ("Na" ?$(3"^(B) | |
538 ("NE" ?$(3"_(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
539 ("Nee" ?$(3"_(B) |
18673 | 540 ("N" ?$(3"`(B) |
541 ("No" ?$(3"a(B) | |
542 ("NW" ?$(3"b(B) | |
543 ("NWa" ?$(3"b(B) | |
544 ("NWe" ["$(3"`%n(B"]) | |
545 ("NWu" ["$(3"`%r(B"]) | |
546 ("NWi" ["$(3"`%o(B"]) | |
547 ("NWE" ["$(3"`%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
548 ("NWee" ["$(3"`%q(B"]) |
18673 | 549 ("NW'" ["$(3"`%r(B"]) |
550 | |
24846 | 551 ; ("e" ?$(3"c(B) ; old style |
18673 | 552 ("u" ?$(3"d(B) |
553 ("U" ?$(3"d(B) | |
554 ("i" ?$(3"e(B) | |
555 ("a" ?$(3"f(B) | |
556 ("A" ?$(3"f(B) | |
557 ("E" ?$(3"g(B) | |
24846 | 558 ; ("ee" ?$(3"g(B) ; Alef-E is rare vs Aynu-I, so ee = Aynu-I |
18673 | 559 ("I" ?$(3"h(B) |
24846 | 560 ("e" ?$(3"h(B) ; This is the premise to "new style" for vowels |
561 | |
18673 | 562 ("o" ?$(3"i(B) |
563 ("O" ?$(3"i(B) | |
564 ("ea" ?$(3"j(B) | |
565 | |
566 ("ke" ?$(3"k(B) | |
567 ("ku" ?$(3"l(B) | |
568 ("ki" ?$(3"m(B) | |
569 ("ka" ?$(3"n(B) | |
570 ("kE" ?$(3"o(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
571 ("kee" ?$(3"o(B) |
18673 | 572 ("k" ?$(3"p(B) |
573 ("ko" ?$(3"q(B) | |
574 ("kWe" ?$(3"s(B) | |
575 ("kWu" ?$(3"x(B) | |
576 ("kWi" ?$(3"u(B) | |
577 ("kW" ?$(3"v(B) | |
578 ("kWa" ?$(3"v(B) | |
579 ("kWE" ?$(3"w(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
580 ("kWee" ?$(3"w(B) |
18673 | 581 ("kW'" ?$(3"x(B) |
582 | |
583 ("`ke" ?$(3%9(B) | |
584 ("`ku" ?$(3%:(B) | |
585 ("`ki" ?$(3%;(B) | |
586 ("`ka" ?$(3%<(B) | |
587 ("`kE" ?$(3%=(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
588 ("`kee" ?$(3%=(B) |
18673 | 589 ("`k" ?$(3%>(B) |
590 ("`ko" ?$(3%?(B) | |
591 | |
592 ("k2e" ?$(3%9(B) | |
593 ("k2u" ?$(3%:(B) | |
594 ("k2i" ?$(3%;(B) | |
595 ("k2a" ?$(3%<(B) | |
596 ("k2E" ?$(3%=(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
597 ("k2ee" ?$(3%=(B) |
18673 | 598 ("k2" ?$(3%>(B) |
599 ("k2o" ?$(3%?(B) | |
600 | |
601 ("kke" ?$(3%9(B) | |
602 ("kku" ?$(3%:(B) | |
603 ("kki" ?$(3%;(B) | |
604 ("kka" ?$(3%<(B) | |
605 ("kkE" ?$(3%=(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
606 ("kkee" ?$(3%=(B) |
18673 | 607 ("kk" ?$(3%>(B) |
608 ("kko" ?$(3%?(B) | |
609 | |
610 ("Ke" ?$(3"{(B) | |
611 ("Ku" ?$(3"|(B) | |
612 ("Ki" ?$(3"}(B) | |
613 ("Ka" ?$(3"~(B) | |
614 ("KE" ?$(3#!(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
615 ("Kee" ?$(3#!(B) |
18673 | 616 ("K" ?$(3#"(B) |
617 ("Ko" ?$(3##(B) | |
618 ("KWe" ?$(3#%(B) | |
619 ("KWu" ?$(3#*(B) | |
620 ("KWi" ?$(3#'(B) | |
621 ("KW" ?$(3#((B) | |
622 ("KWa" ?$(3#((B) | |
623 ("KWE" ?$(3#)(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
624 ("KWee" ?$(3#)(B) |
18673 | 625 ("KW'" ?$(3#*(B) |
626 | |
627 ("Xe" ?$(3%I(B) | |
628 ("Xu" ?$(3%J(B) | |
629 ("Xi" ?$(3%K(B) | |
630 ("Xa" ?$(3%L(B) | |
631 ("XE" ?$(3%M(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
632 ("Xee" ?$(3%M(B) |
18673 | 633 ("X" ?$(3%N(B) |
634 ("Xo" ?$(3%O(B) | |
635 | |
636 ("we" ?$(3#-(B) | |
637 ("wu" ?$(3#.(B) | |
638 ("wi" ?$(3#/(B) | |
639 ("wa" ?$(3#0(B) | |
640 ("wE" ?$(3#1(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
641 ("wee" ?$(3#1(B) |
18673 | 642 ("w" ?$(3#2(B) |
643 ("wo" ?$(3#3(B) | |
644 | |
645 ("`e" ?$(3#5(B) | |
646 ("`u" ?$(3#6(B) | |
647 ("`U" ?$(3#6(B) | |
648 ("`i" ?$(3#7(B) | |
649 ("`a" ?$(3#8(B) | |
650 ("`A" ?$(3#8(B) | |
651 ("`E" ?$(3#9(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
652 ("`ee" ?$(3#9(B) |
18673 | 653 ("`I" ?$(3#:(B) |
654 ("`o" ?$(3#;(B) | |
655 ("`O" ?$(3#;(B) | |
656 | |
657 ("e2" ?$(3#5(B) | |
658 ("u2" ?$(3#6(B) | |
659 ("U2" ?$(3#6(B) | |
660 ("i2" ?$(3#7(B) | |
661 ("a2" ?$(3#8(B) | |
662 ("A2" ?$(3#8(B) | |
663 ("E2" ?$(3#9(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
664 ("ee2" ?$(3#9(B) |
18673 | 665 ("I2" ?$(3#:(B) |
666 ("o2" ?$(3#;(B) | |
667 ("O2" ?$(3#;(B) | |
668 | |
24846 | 669 ; ("ee" ?$(3#5(B) ; old style |
670 ("ae" ?$(3#5(B) ; new style | |
671 ("aaa" ?$(3#5(B) ; new style | |
18673 | 672 ("uu" ?$(3#6(B) |
673 ("UU" ?$(3#6(B) | |
674 ("ii" ?$(3#7(B) | |
675 ("aa" ?$(3#8(B) | |
676 ("AA" ?$(3#8(B) | |
677 ("EE" ?$(3#9(B) | |
678 ("II" ?$(3#:(B) | |
24846 | 679 ("ee" ?$(3#:(B) ; new style |
18673 | 680 ("oo" ?$(3#;(B) |
681 ("OO" ?$(3#;(B) | |
682 | |
683 ("ze" ?$(3#=(B) | |
684 ("zu" ?$(3#>(B) | |
685 ("zi" ?$(3#?(B) | |
686 ("za" ?$(3#@(B) | |
687 ("zE" ?$(3#A(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
688 ("zee" ?$(3#A(B) |
18673 | 689 ("z" ?$(3#B(B) |
690 ("zo" ?$(3#C(B) | |
691 ("zW" ?$(3#D(B) | |
692 ("zWa" ?$(3#D(B) | |
693 ("zWe" ["$(3#B%n(B"]) | |
694 ("zWu" ["$(3#B%r(B"]) | |
695 ("zWi" ["$(3#B%o(B"]) | |
696 ("zWE" ["$(3#B%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
697 ("zWee" ["$(3#B%q(B"]) |
18673 | 698 ("zW'" ["$(3#B%r(B"]) |
699 | |
700 ("Ze" ?$(3#E(B) | |
701 ("Zu" ?$(3#F(B) | |
702 ("Zi" ?$(3#G(B) | |
703 ("Za" ?$(3#H(B) | |
704 ("ZE" ?$(3#I(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
705 ("Zee" ?$(3#I(B) |
18673 | 706 ("Z" ?$(3#J(B) |
707 ("Zo" ?$(3#K(B) | |
708 ("ZW" ?$(3#L(B) | |
709 ("ZWa" ?$(3#L(B) | |
710 ("ZWe" ["$(3#J%n(B"]) | |
711 ("ZWu" ["$(3#J%r(B"]) | |
712 ("ZWi" ["$(3#J%o(B"]) | |
713 ("ZWE" ["$(3#J%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
714 ("ZWee" ["$(3#J%q(B"]) |
18673 | 715 ("ZW'" ["$(3#J%r(B"]) |
716 | |
717 ("ye" ?$(3#M(B) | |
718 ("yu" ?$(3#N(B) | |
719 ("yi" ?$(3#O(B) | |
720 ("ya" ?$(3#P(B) | |
721 ("yE" ?$(3#Q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
722 ("yee" ?$(3#Q(B) |
18673 | 723 ("y" ?$(3#R(B) |
724 ("yo" ?$(3#S(B) | |
725 ("yW" ?$(3#T(B) | |
726 ("yWa" ?$(3#T(B) | |
727 ("yWe" ["$(3#R%n(B"]) | |
728 ("yWu" ["$(3#R%r(B"]) | |
729 ("yWi" ["$(3#R%o(B"]) | |
730 ("yWE" ["$(3#R%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
731 ("yWee" ["$(3#R%q(B"]) |
18673 | 732 ("yW'" ["$(3#R%r(B"]) |
733 | |
734 ("Ye" ?$(3#M(B) | |
735 ("Yu" ?$(3#N(B) | |
736 ("Yi" ?$(3#O(B) | |
737 ("Ya" ?$(3#P(B) | |
738 ("YE" ?$(3#Q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
739 ("Yee" ?$(3#Q(B) |
18673 | 740 ("Y" ?$(3#R(B) |
741 ("Yo" ?$(3#S(B) | |
742 ("YW" ?$(3#T(B) | |
743 ("YWa" ?$(3#T(B) | |
744 ("YWe" ["$(3#R%n(B"]) | |
745 ("YWu" ["$(3#R%r(B"]) | |
746 ("YWi" ["$(3#R%o(B"]) | |
747 ("YWE" ["$(3#R%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
748 ("YWee" ["$(3#R%q(B"]) |
18673 | 749 ("YW'" ["$(3#R%r(B"]) |
750 | |
751 ("de" ?$(3#U(B) | |
752 ("du" ?$(3#V(B) | |
753 ("di" ?$(3#W(B) | |
754 ("da" ?$(3#X(B) | |
755 ("dE" ?$(3#Y(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
756 ("dee" ?$(3#Y(B) |
18673 | 757 ("d" ?$(3#Z(B) |
758 ("do" ?$(3#[(B) | |
759 ("dW" ?$(3#\(B) | |
760 ("dWa" ?$(3#\(B) | |
761 ("dWe" ["$(3#Z%n(B"]) | |
762 ("dWu" ["$(3#Z%r(B"]) | |
763 ("dWi" ["$(3#Z%o(B"]) | |
764 ("dWE" ["$(3#Z%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
765 ("dWee" ["$(3#Z%q(B"]) |
18673 | 766 ("dW'" ["$(3#Z%r(B"]) |
767 | |
768 ("De" ?$(3#](B) | |
769 ("Du" ?$(3#^(B) | |
770 ("Di" ?$(3#_(B) | |
771 ("Da" ?$(3#`(B) | |
772 ("DE" ?$(3#a(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
773 ("Dee" ?$(3#a(B) |
18673 | 774 ("D" ?$(3#b(B) |
775 ("Do" ?$(3#c(B) | |
776 ("DW" ?$(3#d(B) | |
777 ("DWa" ?$(3#d(B) | |
778 ("DWe" ["$(3#b%n(B"]) | |
779 ("DWu" ["$(3#b%r(B"]) | |
780 ("DWi" ["$(3#b%o(B"]) | |
781 ("DWE" ["$(3#b%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
782 ("DWee" ["$(3#b%q(B"]) |
18673 | 783 ("DW'" ["$(3#b%r(B"]) |
784 | |
785 ("je" ?$(3#e(B) | |
786 ("ju" ?$(3#f(B) | |
787 ("ji" ?$(3#g(B) | |
788 ("ja" ?$(3#h(B) | |
789 ("jE" ?$(3#i(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
790 ("jee" ?$(3#i(B) |
18673 | 791 ("j" ?$(3#j(B) |
792 ("jo" ?$(3#k(B) | |
793 ("jW" ?$(3#l(B) | |
794 ("jWa" ?$(3#l(B) | |
795 ("jWe" ["$(3#j%n(B"]) | |
796 ("jWu" ["$(3#j%r(B"]) | |
797 ("jWi" ["$(3#j%o(B"]) | |
798 ("jWE" ["$(3#j%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
799 ("jWee" ["$(3#j%q(B"]) |
18673 | 800 ("jW'" ["$(3#j%r(B"]) |
801 | |
802 ("Je" ?$(3#e(B) | |
803 ("Ju" ?$(3#f(B) | |
804 ("Ji" ?$(3#g(B) | |
805 ("Ja" ?$(3#h(B) | |
806 ("JE" ?$(3#i(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
807 ("Jee" ?$(3#i(B) |
18673 | 808 ("J" ?$(3#j(B) |
809 ("Jo" ?$(3#k(B) | |
810 ("JW" ?$(3#l(B) | |
811 ("JWa" ?$(3#l(B) | |
812 ("JWe" ["$(3#j%n(B"]) | |
813 ("JWu" ["$(3#j%r(B"]) | |
814 ("JWi" ["$(3#j%o(B"]) | |
815 ("JWE" ["$(3#j%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
816 ("JWee" ["$(3#j%q(B"]) |
18673 | 817 ("JW'" ["$(3#j%r(B"]) |
818 | |
819 ("ge" ?$(3#m(B) | |
820 ("gu" ?$(3#n(B) | |
821 ("gi" ?$(3#o(B) | |
822 ("ga" ?$(3#p(B) | |
823 ("gE" ?$(3#q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
824 ("gee" ?$(3#q(B) |
18673 | 825 ("g" ?$(3#r(B) |
826 ("go" ?$(3#s(B) | |
827 ("gWe" ?$(3#u(B) | |
828 ("gWu" ?$(3#z(B) | |
829 ("gWi" ?$(3#w(B) | |
830 ("gW" ?$(3#x(B) | |
831 ("gWa" ?$(3#x(B) | |
832 ("gWE" ?$(3#y(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
833 ("gWee" ?$(3#y(B) |
18673 | 834 ("gW'" ?$(3#z(B) |
835 | |
836 ("`ge" ?$(3%Y(B) | |
837 ("`gu" ?$(3%Z(B) | |
838 ("`gi" ?$(3%[(B) | |
839 ("`ga" ?$(3%\(B) | |
840 ("`gE" ?$(3%](B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
841 ("`gee" ?$(3%](B) |
18673 | 842 ("`g" ?$(3%^(B) |
843 ("`go" ?$(3%_(B) | |
844 | |
845 ("g2e" ?$(3%Y(B) | |
846 ("g2u" ?$(3%Z(B) | |
847 ("g2i" ?$(3%[(B) | |
848 ("g2a" ?$(3%\(B) | |
849 ("g2E" ?$(3%](B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
850 ("g2ee" ?$(3%](B) |
18673 | 851 ("g2" ?$(3%^(B) |
852 ("g2o" ?$(3%_(B) | |
853 | |
854 ("gge" ?$(3%Y(B) | |
855 ("ggu" ?$(3%Z(B) | |
856 ("ggi" ?$(3%[(B) | |
857 ("gga" ?$(3%\(B) | |
858 ("ggE" ?$(3%](B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
859 ("ggee" ?$(3%](B) |
18673 | 860 ("gg" ?$(3%^(B) |
861 ("ggo" ?$(3%_(B) | |
862 | |
863 ("Ge" ?$(3#}(B) | |
864 ("Gu" ?$(3#~(B) | |
865 ("Gi" ?$(3$!(B) | |
866 ("Ga" ?$(3$"(B) | |
867 ("GE" ?$(3$#(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
868 ("Gee" ?$(3$#(B) |
18673 | 869 ("G" ?$(3$$(B) |
870 ("Go" ?$(3$%(B) | |
871 ("GWe" ?$(3%3(B) | |
872 ("GWu" ?$(3%c(B) | |
873 ("GWi" ?$(3%C(B) | |
874 ("GW" ?$(3$&(B) | |
875 ("GWa" ?$(3$&(B) | |
876 ("GWE" ?$(3%S(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
877 ("GWee" ?$(3%S(B) |
18673 | 878 ("GW'" ?$(3%c(B) |
879 | |
23033
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
880 ("Te" ?$(3$'(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
881 ("Tu" ?$(3$((B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
882 ("Ti" ?$(3$)(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
883 ("Ta" ?$(3$*(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
884 ("TE" ?$(3$+(B) |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
885 ("Tee" ?$(3$+(B) |
23033
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
886 ("T" ?$(3$,(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
887 ("To" ?$(3$-(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
888 ("TW" ?$(3$.(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
889 ("TWa" ?$(3$.(B) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
890 ("TWe" ["$(3$,%n(B"]) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
891 ("TWu" ["$(3$,%r(B"]) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
892 ("TWi" ["$(3$,%o(B"]) |
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
893 ("TWE" ["$(3$,%q(B"]) |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
894 ("TWee" ["$(3$,%q(B"]) |
23033
f5b12a1c1d70
Fix several translation rules.
Kenichi Handa <handa@m17n.org>
parents:
22516
diff
changeset
|
895 ("TW'" ["$(3$,%r(B"]) |
18673 | 896 |
897 ("Ce" ?$(3$/(B) | |
898 ("Cu" ?$(3$0(B) | |
899 ("Ci" ?$(3$1(B) | |
900 ("Ca" ?$(3$2(B) | |
901 ("CE" ?$(3$3(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
902 ("Cee" ?$(3$3(B) |
18673 | 903 ("C" ?$(3$4(B) |
904 ("Co" ?$(3$5(B) | |
905 ("CW" ?$(3$6(B) | |
906 ("CWa" ?$(3$6(B) | |
907 ("CWe" ["$(3$4%n(B"]) | |
908 ("CWu" ["$(3$4%r(B"]) | |
909 ("CWi" ["$(3$4%o(B"]) | |
910 ("CWE" ["$(3$4%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
911 ("CWee" ["$(3$4%q(B"]) |
18673 | 912 ("CW'" ["$(3$4%r(B"]) |
913 | |
914 ("Pe" ?$(3$7(B) | |
915 ("Pu" ?$(3$8(B) | |
916 ("Pi" ?$(3$9(B) | |
917 ("Pa" ?$(3$:(B) | |
918 ("PE" ?$(3$;(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
919 ("Pee" ?$(3$;(B) |
18673 | 920 ("P" ?$(3$<(B) |
921 ("Po" ?$(3$=(B) | |
922 ("PW" ?$(3$>(B) | |
923 ("PWa" ?$(3$>(B) | |
924 ("PWe" ["$(3$<%n(B"]) | |
925 ("PWu" ["$(3$<%r(B"]) | |
926 ("PWi" ["$(3$<%o(B"]) | |
927 ("PWE" ["$(3$<%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
928 ("PWee" ["$(3$<%q(B"]) |
18673 | 929 ("PW'" ["$(3$<%r(B"]) |
930 | |
931 ("Se" ?$(3$?(B) | |
932 ("Su" ?$(3$@(B) | |
933 ("Si" ?$(3$A(B) | |
934 ("Sa" ?$(3$B(B) | |
935 ("SE" ?$(3$C(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
936 ("See" ?$(3$C(B) |
18673 | 937 ("S" ?$(3$D(B) |
938 ("So" ?$(3$E(B) | |
939 ("SW" ?$(3$F(B) | |
940 ("SWa" ?$(3$F(B) | |
941 ("SWe" ["$(3$D%n(B"]) | |
942 ("SWu" ["$(3$D%r(B"]) | |
943 ("SWi" ["$(3$D%o(B"]) | |
944 ("SWE" ["$(3$D%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
945 ("SWee" ["$(3$D%q(B"]) |
18673 | 946 ("SW'" ["$(3$D%r(B"]) |
947 | |
948 ("`Se" ?$(3$G(B) | |
949 ("`Su" ?$(3$H(B) | |
950 ("`Si" ?$(3$I(B) | |
951 ("`Sa" ?$(3$J(B) | |
952 ("`SE" ?$(3$K(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
953 ("`See" ?$(3$K(B) |
18673 | 954 ("`S" ?$(3$L(B) |
955 ("`So" ?$(3$M(B) | |
956 ("`SW" ?$(3$F(B) | |
957 ("`SWa" ?$(3$F(B) | |
958 ("`SWe" ["$(3$L%n(B"]) | |
959 ("`SWu" ["$(3$L%r(B"]) | |
960 ("`SWi" ["$(3$L%o(B"]) | |
961 ("`SWE" ["$(3$L%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
962 ("`SWee" ["$(3$L%q(B"]) |
18673 | 963 ("`SW'" ["$(3$L%r(B"]) |
964 | |
965 ("S2e" ?$(3$G(B) | |
966 ("S2u" ?$(3$H(B) | |
967 ("S2i" ?$(3$I(B) | |
968 ("S2a" ?$(3$J(B) | |
969 ("S2E" ?$(3$K(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
970 ("S2ee" ?$(3$K(B) |
18673 | 971 ("S2" ?$(3$L(B) |
972 ("S2o" ?$(3$M(B) | |
973 ("S2W" ?$(3$F(B) | |
974 ("S2Wa" ?$(3$F(B) | |
975 ("S2We" ["$(3$L%n(B"]) | |
976 ("S2Wu" ["$(3$L%r(B"]) | |
977 ("S2Wi" ["$(3$L%o(B"]) | |
978 ("S2WE" ["$(3$L%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
979 ("S2Wee" ["$(3$L%q(B"]) |
18673 | 980 ("S2W'" ["$(3$L%r(B"]) |
981 | |
982 ("SSe" ?$(3$G(B) | |
983 ("SSu" ?$(3$H(B) | |
984 ("SSi" ?$(3$I(B) | |
985 ("SSa" ?$(3$J(B) | |
986 ("SSE" ?$(3$K(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
987 ("SSee" ?$(3$K(B) |
18673 | 988 ("SS" ?$(3$L(B) |
989 ("SSo" ?$(3$M(B) | |
990 ("SSW" ?$(3$F(B) | |
991 ("SSWa" ?$(3$F(B) | |
992 ("SSWe" ["$(3$L%n(B"]) | |
993 ("SSWu" ["$(3$L%r(B"]) | |
994 ("SSWi" ["$(3$L%o(B"]) | |
995 ("SSWE" ["$(3$L%q(B"]) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
996 ("SSWee" ["$(3$L%q(B"]) |
18673 | 997 ("SW'" ["$(3$L%r(B"]) |
998 | |
999 ("fe" ?$(3$O(B) | |
1000 ("fu" ?$(3$P(B) | |
1001 ("fi" ?$(3$Q(B) | |
1002 ("fa" ?$(3$R(B) | |
1003 ("fE" ?$(3$S(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1004 ("fee" ?$(3$S(B) |
18673 | 1005 ("f" ?$(3$T(B) |
1006 ("fo" ?$(3$U(B) | |
1007 ("fWe" ?$(3%4(B) | |
1008 ("fWu" ?$(3%d(B) | |
1009 ("fWi" ?$(3%D(B) | |
1010 ("fW" ?$(3$V(B) | |
1011 ("fWa" ?$(3$V(B) | |
1012 ("fWE" ?$(3%T(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1013 ("fWee" ?$(3%T(B) |
18673 | 1014 ("fW'" ?$(3%d(B) |
1015 ("fY" ?$(3$a(B) | |
1016 ("fYa" ?$(3$a(B) | |
1017 | |
1018 ("Fe" ?$(3$O(B) | |
1019 ("Fu" ?$(3$P(B) | |
1020 ("Fi" ?$(3$Q(B) | |
1021 ("Fa" ?$(3$R(B) | |
1022 ("FE" ?$(3$S(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1023 ("Fee" ?$(3$S(B) |
18673 | 1024 ("F" ?$(3$T(B) |
1025 ("Fo" ?$(3$U(B) | |
1026 ("FWe" ?$(3%4(B) | |
1027 ("FWu" ?$(3%d(B) | |
1028 ("FWi" ?$(3%D(B) | |
1029 ("FW" ?$(3$V(B) | |
1030 ("FWa" ?$(3$V(B) | |
1031 ("FWE" ?$(3%T(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1032 ("FWee" ?$(3%T(B) |
18673 | 1033 ("FW'" ?$(3%d(B) |
1034 ("FY" ?$(3$a(B) | |
1035 ("FYa" ?$(3$a(B) | |
1036 | |
1037 ("pe" ?$(3$W(B) | |
1038 ("pu" ?$(3$X(B) | |
1039 ("pi" ?$(3$Y(B) | |
1040 ("pa" ?$(3$Z(B) | |
1041 ("pE" ?$(3$[(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1042 ("pee" ?$(3$[(B) |
18673 | 1043 ("p" ?$(3$\(B) |
1044 ("po" ?$(3$](B) | |
1045 ("pWe" ?$(3%5(B) | |
1046 ("pWu" ?$(3%e(B) | |
1047 ("pWi" ?$(3%E(B) | |
1048 ("pW" ?$(3$^(B) | |
1049 ("pWa" ?$(3$^(B) | |
1050 ("pWE" ?$(3%U(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1051 ("pWee" ?$(3%U(B) |
18673 | 1052 ("pW'" ?$(3%e(B) |
1053 | |
1054 ("'" [""]) | |
1055 ("''" ?') | |
1056 (":" ?$(3$h(B) | |
1057 ("::" ?$(3$i(B) | |
1058 (":::" ?:) | |
1059 ("." ?$(3$i(B) | |
1060 (".." ?$(3%u(B) | |
1061 ("..." ?.) | |
1062 ("," ?$(3$j(B) | |
1063 (",," ?,) | |
1064 (";" ?$(3$k(B) | |
1065 (";;" ?\;) | |
1066 ("-:" ?$(3$l(B) | |
1067 (":-" ?$(3$m(B) | |
1068 ("*" ?*) | |
1069 ("**" ?$(3$o(B) | |
1070 (":|:" ?$(3$o(B) | |
1071 ("?" ?$(3%x(B) | |
1072 ("??" ?$(3$n(B) | |
1073 ("`?" ?$(3$n(B) | |
1074 ("???" ??) | |
1075 ("<<" ?$(3%v(B) | |
1076 (">>" ?$(3%w(B) | |
1077 ("`!" ?$(3%t(B) | |
1078 ("wWe" ?$(3%n(B) | |
1079 ("wWu" ?$(3%r(B) | |
1080 ("wWi" ?$(3%o(B) | |
1081 ("wW" ?$(3%p(B) | |
1082 ("wWa" ?$(3%p(B) | |
1083 ("wWE" ?$(3%q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1084 ("wWee" ?$(3%q(B) |
18673 | 1085 ("wW'" ?$(3%r(B) |
1086 ("We" ?$(3%n(B) | |
1087 ("Wu" ?$(3%r(B) | |
1088 ("Wi" ?$(3%o(B) | |
1089 ("W" ?$(3%p(B) | |
1090 ("Wa" ?$(3%p(B) | |
1091 ("WE" ?$(3%q(B) | |
24843
a555cf7d6f73
("ethiopic"): Add translation rules.
Kenichi Handa <handa@m17n.org>
parents:
23033
diff
changeset
|
1092 ("Wee" ?$(3%q(B) |
18673 | 1093 ("W'" ?$(3%r(B) |
1094 ("`1" ?$(3$p(B) | |
1095 ("`2" ?$(3$q(B) | |
1096 ("`3" ?$(3$r(B) | |
1097 ("`4" ?$(3$s(B) | |
1098 ("`5" ?$(3$t(B) | |
1099 ("`6" ?$(3$u(B) | |
1100 ("`7" ?$(3$v(B) | |
1101 ("`8" ?$(3$w(B) | |
1102 ("`9" ?$(3$x(B) | |
1103 ("`10" ?$(3$y(B) | |
1104 ("`20" ?$(3$z(B) | |
1105 ("`30" ?$(3${(B) | |
1106 ("`40" ?$(3$|(B) | |
1107 ("`50" ?$(3$}(B) | |
1108 ("`60" ?$(3$~(B) | |
1109 ("`70" ?$(3%!(B) | |
1110 ("`80" ?$(3%"(B) | |
1111 ("`90" ?$(3%#(B) | |
1112 ("`100" ?$(3%$(B) | |
1113 ("`1000" ["$(3$y%$(B"]) | |
19093 | 1114 ("`2000" ["$(3$z%$(B"]) |
1115 ("`3000" ["$(3${%$(B"]) | |
1116 ("`4000" ["$(3$|%$(B"]) | |
1117 ("`5000" ["$(3$}%$(B"]) | |
1118 ("`6000" ["$(3$~%$(B"]) | |
1119 ("`7000" ["$(3%!%$(B"]) | |
1120 ("`8000" ["$(3%"%$(B"]) | |
1121 ("`9000" ["$(3%#%$(B"]) | |
18673 | 1122 ("`10000" ?$(3%%(B) |
19093 | 1123 ("`20000" ["$(3$q%%(B"]) |
1124 ("`30000" ["$(3$r%%(B"]) | |
1125 ("`40000" ["$(3$s%%(B"]) | |
1126 ("`50000" ["$(3$t%%(B"]) | |
1127 ("`60000" ["$(3$u%%(B"]) | |
1128 ("`70000" ["$(3$v%%(B"]) | |
1129 ("`80000" ["$(3$w%%(B"]) | |
1130 ("`90000" ["$(3$x%%(B"]) | |
1131 ("`100000" ["$(3$y%%(B"]) | |
1132 ("`200000" ["$(3$z%%(B"]) | |
1133 ("`300000" ["$(3${%%(B"]) | |
1134 ("`400000" ["$(3$|%%(B"]) | |
1135 ("`500000" ["$(3$}%%(B"]) | |
1136 ("`600000" ["$(3$~%%(B"]) | |
1137 ("`700000" ["$(3%!%%(B"]) | |
1138 ("`800000" ["$(3%"%%(B"]) | |
1139 ("`900000" ["$(3%#%%(B"]) | |
1140 ("`1000000" ["$(3%$%%(B"]) | |
18673 | 1141 ) |
1142 | |
22516
31e6e5b66fea
Don't add hook to quail-mode-hook.
Kenichi Handa <handa@m17n.org>
parents:
20166
diff
changeset
|
1143 (defun ethio-select-a-translation () |
31e6e5b66fea
Don't add hook to quail-mode-hook.
Kenichi Handa <handa@m17n.org>
parents:
20166
diff
changeset
|
1144 ;; The translation of `a' depends on the language |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40710
diff
changeset
|
1145 ;; (either Tigrigna or Amharic). |
22516
31e6e5b66fea
Don't add hook to quail-mode-hook.
Kenichi Handa <handa@m17n.org>
parents:
20166
diff
changeset
|
1146 (quail-defrule "a" |
31e6e5b66fea
Don't add hook to quail-mode-hook.
Kenichi Handa <handa@m17n.org>
parents:
20166
diff
changeset
|
1147 (if (ethio-prefer-amharic-p) ?$(3"c(B ?$(3"f(B) |
31e6e5b66fea
Don't add hook to quail-mode-hook.
Kenichi Handa <handa@m17n.org>
parents:
20166
diff
changeset
|
1148 "ethiopic")) |
18673 | 1149 |
52401 | 1150 ;;; arch-tag: 66c182a8-d802-40fa-9c0d-d8ebe2f909d5 |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
36559
diff
changeset
|
1151 ;;; ethiopic.el ends here |