40712
|
1 ;;; georgian.el --- Quail package for inputting Georgian characters -*-coding: utf-8;-*-
|
|
2
|
|
3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Author: Dave Love <fx@gnu.org>
|
|
6 ;; Keywords: i18n
|
|
7
|
42320
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
40712
|
10 ;; This file is free software; you can redistribute it and/or modify
|
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; This file is distributed in the hope that it will be useful,
|
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Commentary:
|
|
26
|
|
27 ;; Georgian input following the Yudit map from Mark Leisher
|
|
28 ;; <mleisher@crl.nmsu.edu>.
|
|
29
|
|
30 ;;; Code:
|
|
31
|
|
32 (require 'quail)
|
|
33
|
|
34 (quail-define-package
|
|
35 "georgian" "Georgian" "გ" t
|
|
36 "A common Georgian transliteration (using Unicode)"
|
|
37 nil t nil nil nil nil nil nil nil nil t)
|
|
38
|
|
39 (quail-define-rules
|
|
40 ("a" ?ა)
|
|
41 ("b" ?ბ)
|
|
42 ("g" ?გ)
|
|
43 ("d" ?დ)
|
|
44 ("e" ?ე)
|
|
45 ("v" ?ვ)
|
|
46 ("z" ?ზ)
|
|
47 ("t" ?თ)
|
|
48 ("i" ?ი)
|
|
49 (".k" ?კ)
|
|
50 ("l" ?ლ)
|
|
51 ("m" ?მ)
|
|
52 ("n" ?ნ)
|
|
53 ("o" ?ო)
|
|
54 (".p" ?პ)
|
|
55 ("\+z" ?ჟ)
|
|
56 ("r" ?რ)
|
|
57 ("s" ?ს)
|
|
58 (".t" ?ტ)
|
|
59 ("u" ?უ)
|
|
60 ("p" ?ფ)
|
|
61 ("k" ?ქ)
|
|
62 (".g" ?ღ)
|
|
63 ("q" ?ყ)
|
|
64 ("\+s" ?შ)
|
|
65 ("\+c" ?ჩ)
|
|
66 ("c" ?ც)
|
|
67 ("j" ?ძ)
|
|
68 (".c" ?წ)
|
|
69 (".\+c" ?ჭ)
|
|
70 ("x" ?ხ)
|
|
71 ("\+j" ?ჯ)
|
|
72 ("h" ?ჰ)
|
|
73 ("q1" ?ჴ)
|
|
74 ("e0" ?ჱ)
|
|
75 ("o1" ?ჵ)
|
|
76 ("i1" ?ჲ)
|
|
77 ("w" ?ჳ)
|
|
78 ("f" ?ჶ)
|
|
79 ;; Presumably, these are GEORGIAN LETTER YN, GEORGIAN LETTER ELIFI,
|
|
80 ;; accepted for U+10F7, U+10F8 -- fx
|
|
81 ("y" ?) ;; Letter not in Unicode (private use code).
|
|
82 ("e1" ?) ;; Letter not in Unicode (private use code).
|
|
83 )
|
|
84
|
|
85 ;;; georgian.el ends here
|