Fixed a typo.
[riece] / lisp / riece-mcat.el
1 ;;; riece-mcat.el --- message catalog
2 ;; Copyright (C) 2007 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5
6 ;; This file is part of Riece.
7
8 ;; This program 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 program 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 the
20 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 ;; Boston, MA 02110-1301, USA.
22
23 ;;; Code:
24
25 (require 'pp)
26
27 (defun riece-mcat (string)
28   "Translate STRING in the current language environment."
29   (let ((feature (get-language-info current-language-environment
30                                     'riece-mcat-feature)))
31     (if feature
32         (progn
33           (require feature)
34           (or (cdr (assoc string
35                           (symbol-value
36                            (intern (concat (symbol-name feature) "-alist")))))
37               string))
38       string)))
39
40 (defun riece-mcat-extract-from-form (form)
41   (if (and form (listp form) (listp (cdr form)))
42       (if (eq (car form) 'riece-mcat)
43           (cdr form)
44         (delq nil (apply #'nconc
45                          (mapcar #'riece-mcat-extract-from-form form))))))
46
47 (defun riece-mcat-extract (files alist)
48   (save-excursion
49     (let (message-list)
50       (while files
51         (with-temp-buffer
52           (insert-file-contents (car files))
53           (goto-char (point-min))
54           (while (progn
55                    (while (progn (skip-chars-forward " \t\n\f")
56                                  (looking-at ";"))
57                      (forward-line 1))
58                    (not (eobp)))
59             (setq message-list
60                   (nconc message-list
61                          (riece-mcat-extract-from-form
62                           (read (current-buffer)))))))
63         (setq files (cdr files)))
64       (setq message-list (sort message-list #'string-lessp))
65       (while message-list
66         (if (equal (car message-list)
67                    (nth 1 message-list))
68             (setq message-list (nthcdr 2 message-list))
69           (unless (assoc (car message-list) alist)
70             (setq alist (cons (list (car message-list)) alist)))
71           (setq message-list (cdr message-list))))
72       alist)))
73
74 (defun riece-mcat-update (files mcat-file mcat-alist-symbol)
75   "Update MCAT-FILE."
76   (let ((pp-escape-newlines t)
77         alist)
78     (save-excursion
79       (set-buffer (find-file-noselect mcat-file))
80       (goto-char (point-min))
81       (if (re-search-forward (concat "^\\s-*(\\(defvar\\|defconst\\)\\s-+"
82                                      (regexp-quote (symbol-name
83                                                     mcat-alist-symbol)))
84                              nil t)
85           (progn
86             (goto-char (match-beginning 0))
87             (save-excursion
88               (eval (read (current-buffer))))
89             (delete-region (point) (progn (forward-sexp) (point))))
90         (set mcat-alist-symbol nil))
91       (setq alist (riece-mcat-extract files (symbol-value mcat-alist-symbol)))
92       (insert "(defconst " (symbol-name mcat-alist-symbol) "\n  '(")
93       (while alist
94         (insert "(" (pp-to-string (car (car alist))) " . "
95                 (pp-to-string (cdr (car alist))) ")")
96         (if (cdr alist)
97             (insert "\n    "))
98         (setq alist (cdr alist)))
99       (insert "))")
100       (save-buffer))))
101
102 (defconst riece-mcat-description "Translate messages")
103
104 (defun riece-mcat-insinuate ()
105   (set-language-info "Japanese" 'riece-mcat-feature 'riece-mcat-japanese))
106
107 (defun riece-mcat-uninstall ()
108   (set-language-info "Japanese" 'riece-mcat-feature nil))
109
110 (provide 'riece-mcat)
111
112 ;;; riece-mcat.el ends here