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