Initial Commit
[packages] / mule-packages / leim / quail / georgian.el
1 ;;; georgian.el --- Quail package for inputting Georgian characters  -*-coding: utf-8;-*-
2
3 ;; Copyright (C) 2001, 2006  Free Software Foundation, Inc.
4
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: i18n
7
8 ;; This file is part of GNU Emacs.
9
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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Synched up with: FSF 22.0.50.6
26
27 ;;; Commentary:
28
29 ;; Georgian input following the Yudit map from Mark Leisher
30 ;; <mleisher@crl.nmsu.edu>.
31
32 ;;; Code:
33
34 (require 'quail)
35
36 ;; This file breaks with 21.4 and early 21.5. 
37 (unless (and (fboundp 'decode-char) (decode-char 'ucs #x31C)
38              (eq #x31C (encode-char (decode-char 'ucs #x31C) 'ucs)))
39   (error "Unicode support needed for this file not available!"))
40
41 (quail-define-package
42  "georgian" "Georgian" "გ" t
43  "A common Georgian transliteration (using Unicode)"
44  nil t nil nil t nil nil nil nil nil t)
45
46 (quail-define-rules
47  ("a" ?ა)
48  ("b" ?ბ)
49  ("g" ?გ)
50  ("d" ?დ)
51  ("e" ?ე)
52  ("v" ?ვ)
53  ("z" ?ზ)
54  ("t" ?თ)
55  ("i" ?ი)
56  (".k" ?კ)
57  ("l" ?ლ)
58  ("m" ?მ)
59  ("n" ?ნ)
60  ("o" ?ო)
61  (".p" ?პ)
62  ("\+z" ?ჟ)
63  ("r" ?რ)
64  ("s" ?ს)
65  (".t" ?ტ)
66  ("u" ?უ)
67  ("p" ?ფ)
68  ("k" ?ქ)
69  (".g" ?ღ)
70  ("q" ?ყ)
71  ("\+s" ?შ)
72  ("\+c" ?ჩ)
73  ("c" ?ც)
74  ("j" ?ძ)
75  (".c" ?წ)
76  (".\+c" ?ჭ)
77  ("x" ?ხ)
78  ("\+j" ?ჯ)
79  ("h" ?ჰ)
80  ("q1" ?ჴ)
81  ("e0" ?ჱ)
82  ("o1" ?ჵ)
83  ("i1" ?ჲ)
84  ("w" ?ჳ)
85  ("f" ?ჶ)
86  ;; Presumably, these are GEORGIAN LETTER YN, GEORGIAN LETTER ELIFI,
87  ;; accepted for U+10F7, U+10F8  -- fx
88  ("y" ?) ;; Letter not in Unicode (private use code).
89  ("e1" ?) ;; Letter not in Unicode (private use code).
90  )
91
92 ;;; arch-tag: 7b26f205-7091-435e-a2cf-8778f899dc8a
93 ;;; georgian.el ends here