Mercurial > emacs
annotate leim/quail/georgian.el @ 76009:15401c997551
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 19 Feb 2007 05:11:18 +0000 |
parents | f5f322eb227f |
children | 2904684117d6 95d0cdf160ea |
rev | line source |
---|---|
40712 | 1 ;;; georgian.el --- Quail package for inputting Georgian characters -*-coding: utf-8;-*- |
2 | |
75253
f5f322eb227f
Update copyright for years from Emacs 21 to present.
Glenn Morris <rgm@gnu.org>
parents:
70125
diff
changeset
|
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
f5f322eb227f
Update copyright for years from Emacs 21 to present.
Glenn Morris <rgm@gnu.org>
parents:
70125
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
40712 | 5 |
6 ;; Author: Dave Love <fx@gnu.org> | |
7 ;; Keywords: i18n | |
8 | |
42320 | 9 ;; This file is part of GNU Emacs. |
10 | |
40712 | 11 ;; This file is free software; you can redistribute it and/or modify |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; This file is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 23 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
40712 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; Georgian input following the Yudit map from Mark Leisher | |
29 ;; <mleisher@crl.nmsu.edu>. | |
30 | |
31 ;;; Code: | |
32 | |
33 (require 'quail) | |
34 | |
35 (quail-define-package | |
36 "georgian" "Georgian" "გ" t | |
37 "A common Georgian transliteration (using Unicode)" | |
56678
6165248b32a6
("georgian"): Call quail-define-package with the show-layout arg t.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
38 nil t nil nil t nil nil nil nil nil t) |
40712 | 39 |
40 (quail-define-rules | |
41 ("a" ?ა) | |
42 ("b" ?ბ) | |
43 ("g" ?გ) | |
44 ("d" ?დ) | |
45 ("e" ?ე) | |
46 ("v" ?ვ) | |
47 ("z" ?ზ) | |
48 ("t" ?თ) | |
49 ("i" ?ი) | |
50 (".k" ?კ) | |
51 ("l" ?ლ) | |
52 ("m" ?მ) | |
53 ("n" ?ნ) | |
54 ("o" ?ო) | |
55 (".p" ?პ) | |
56 ("\+z" ?ჟ) | |
57 ("r" ?რ) | |
58 ("s" ?ს) | |
59 (".t" ?ტ) | |
60 ("u" ?უ) | |
61 ("p" ?ფ) | |
62 ("k" ?ქ) | |
63 (".g" ?ღ) | |
64 ("q" ?ყ) | |
65 ("\+s" ?შ) | |
66 ("\+c" ?ჩ) | |
67 ("c" ?ც) | |
68 ("j" ?ძ) | |
69 (".c" ?წ) | |
70 (".\+c" ?ჭ) | |
71 ("x" ?ხ) | |
72 ("\+j" ?ჯ) | |
73 ("h" ?ჰ) | |
74 ("q1" ?ჴ) | |
75 ("e0" ?ჱ) | |
76 ("o1" ?ჵ) | |
77 ("i1" ?ჲ) | |
78 ("w" ?ჳ) | |
79 ("f" ?ჶ) | |
80 ;; Presumably, these are GEORGIAN LETTER YN, GEORGIAN LETTER ELIFI, | |
81 ;; accepted for U+10F7, U+10F8 -- fx | |
82 ("y" ?) ;; Letter not in Unicode (private use code). | |
83 ("e1" ?) ;; Letter not in Unicode (private use code). | |
84 ) | |
85 | |
52401 | 86 ;;; arch-tag: 7b26f205-7091-435e-a2cf-8778f899dc8a |
40712 | 87 ;;; georgian.el ends here |