Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / leim / quail / georgian.el
blobfab67ace46f5b7938a4bfa7e107fc88383fdd946
1 ;;; georgian.el --- Quail package for inputting Georgian characters -*-coding: utf-8;-*-
3 ;; Copyright (C) 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: i18n
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs 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 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs 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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Georgian input following the Yudit map from Mark Leisher
26 ;; <mleisher@crl.nmsu.edu>.
28 ;;; Code:
30 (require 'quail)
32 (quail-define-package
33 "georgian" "Georgian" "გ" t
34 "A common Georgian transliteration (using Unicode)"
35 nil t nil nil t nil nil nil nil nil t)
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).
83 ;;; georgian.el ends here