1 ;; hi-itrans.mim -- Hindi input method with ITRANS method
2 ;; Copyright (C) 2003, 2004, 2005
3 ;; National Institute of Advanced Industrial Science and Technology (AIST)
4 ;; Registration Number H15PRO112
6 ;; This file is part of the m17n database; a sub-part of the m17n
9 ;; The m17n library is free software; you can redistribute it and/or
10 ;; modify it under the terms of the GNU Lesser General Public License
11 ;; as published by the Free Software Foundation; either version 2.1 of
12 ;; the License, or (at your option) any later version.
14 ;; The m17n library is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ;; Lesser General Public License for more details.
19 ;; You should have received a copy of the GNU Lesser General Public
20 ;; License along with the m17n library; if not, write to the Free
21 ;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 (input-method hi itrans)
26 (description "Hindi input method by ITRANS transliteration.
27 For the detail of ITRANS, see the page:
28 <http://www.aczoom.com/itrans/>
35 (".") ("~") ("#") ("$") ("^") ("*") ((S-\ )) ((C-@))
36 ("0") ("1") ("2") ("3") ("4")
37 ("5") ("6") ("7") ("8") ("9")
38 ("A") ("C") ("D") ("G") ("H") ("I") ("J") ("K") ("L")
39 ("M") ("N") ("O") ("R") ("S") ("T") ("U") ("Y")
40 ("a") ("b") ("c") ("d") ("e") ("f") ("g") ("h") ("i")
41 ("j") ("k") ("l") ("m") ("n") ("o") ("p") ("q") ("r")
42 ("s") ("t") ("u") ("v") ("w") ("x") ("y") ("z"))
157 ("aa" (delete @-) "ा")
158 ("A" (delete @-) "ा")
159 ("i" (delete @-) "ि")
160 ("ii" (delete @-) "ी")
161 ("I" (delete @-) "ी")
162 ("u" (delete @-) "ु")
163 ("uu" (delete @-) "ू")
164 ("U" (delete @-) "ू")
165 ("RRi" (delete @-) "ृ")
166 ("R^i" (delete @-) "ृ")
167 ("LLi" (delete @-) "ॢ")
168 ("L^i" (delete @-) "ॢ")
169 (".c" (delete @-) "ॅ")
170 ("e.c" (delete @-) "ॅ")
171 ("E" (delete @-) "ॆ")
172 ("e" (delete @-) "े")
173 ("ai" (delete @-) "ै")
174 ("o.c" (delete @-) "ॉ")
175 ("O" (delete @-) "ॊ")
176 ("o" (delete @-) "ो")
177 ("au" (delete @-) "ौ")
178 ("RRI" (delete @-) "ॄ")
179 ("R^I" (delete @-) "ॄ")
180 ("LLI" (delete @-) "ॣ")
181 ("L^I" (delete @-) "ॣ"))
187 ((BackSpace) (undo))))
191 (starter (pushback 1) (shift intermediate)))
194 (consonant (shift second))
195 (independent (shift finish))
197 (return (shift init)))
201 (dependent (shift finish))
203 (return (shift init)))