Update copyright notices for 2013.
[bpt/emacs.git] / leim / quail / georgian.el
CommitLineData
7115232b
DL
1;;; georgian.el --- Quail package for inputting Georgian characters -*-coding: utf-8;-*-
2
ab422c4d 3;; Copyright (C) 2001-2013 Free Software Foundation, Inc.
7115232b
DL
4
5;; Author: Dave Love <fx@gnu.org>
6;; Keywords: i18n
7
041f4d74
PJ
8;; This file is part of GNU Emacs.
9
3d544458 10;; GNU Emacs is free software: you can redistribute it and/or modify
7115232b 11;; it under the terms of the GNU General Public License as published by
3d544458
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
7115232b 14
3d544458 15;; GNU Emacs is distributed in the hope that it will be useful,
7115232b
DL
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
3d544458 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
7115232b
DL
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)"
5d388082 35 nil t nil nil t nil nil nil nil nil t)
7115232b
DL
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" ?პ)
b514a395 53 ("+z" ?ჟ)
7115232b
DL
54 ("r" ?რ)
55 ("s" ?ს)
56 (".t" ?ტ)
57 ("u" ?უ)
58 ("p" ?ფ)
59 ("k" ?ქ)
60 (".g" ?ღ)
61 ("q" ?ყ)
b514a395
AS
62 ("+s" ?შ)
63 ("+c" ?ჩ)
7115232b
DL
64 ("c" ?ც)
65 ("j" ?ძ)
66 (".c" ?წ)
b514a395 67 (".+c" ?ჭ)
7115232b 68 ("x" ?ხ)
b514a395 69 ("+j" ?ჯ)
7115232b
DL
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