1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
|
;;;;; -*-coding: iso-8859-1;-*-
;;;;;
;;;;; Copyright (C) 1991-2002 Lysator Academic Computer Association.
;;;;;
;;;;; This file is part of the LysKOM Emacs LISP client.
;;;;;
;;;;; LysKOM is free software; you can redistribute it and/or modify it
;;;;; under the terms of the GNU General Public License as published by
;;;;; the Free Software Foundation; either version 2, or (at your option)
;;;;; any later version.
;;;;;
;;;;; LysKOM is distributed in the hope that it will be useful, but WITHOUT
;;;;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;;;;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
;;;;; for more details.
;;;;;
;;;;; You should have received a copy of the GNU General Public License
;;;;; along with LysKOM; see the file COPYING. If not, write to
;;;;; Lysator, c/o ISY, Linkoping University, S-581 83 Linkoping, SWEDEN,
;;;;; or the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
;;;;; MA 02139, USA.
;;;;;
;;;;; Please mail bug reports to bug-lyskom@lysator.liu.se.
;;;;;
;;;; ================================================================
;;;; ================================================================
;;;;
;;;; File: language.el
;;;; Author: Niels Mller
;;;;
;;;;
(require 'lyskom-vars "vars")
;;; Variables
;;(defvar lyskom-language-symbols nil
;; "Symbols with language data bound to them")
(defvar lyskom-languages nil
"An alist of defined languages.
Each entry is a pair (SYMBOL . (NAME NAME ...)) where symbol is the symbol
used for identification, and the NAMEs are names of the language.")
(defvar lyskom-language-categories nil
"Categories of language-specific variables.
Each element is a cons cell (NAME . SCOPE), where NAME is the name of
the category and SCOPE is its scope (global or local).")
(defvar lyskom-language-vars nil
"A list of all language-dependent variables.
Each element is a cons cell (NAME . SCOPE), where NAME is the name of
the category and SCOPE is its scope (global or local).")
(defun lyskom-language-var-internal (scope var language val)
"Defines a language-local variable value."
(or (assq var lyskom-language-vars)
(setq lyskom-language-vars
(cons (cons var scope) lyskom-language-vars)))
(let* ((alist (get var 'lyskom-language-var))
(entry (assq language alist)))
(if entry
(setcdr entry val)
(put var 'lyskom-language-var (cons (cons language val) alist)))))
(defmacro lyskom-language-var (scope var language val)
`(lyskom-language-var-internal ',scope
',var
',language
',val))
(put 'lyskom-language-var 'lisp-indent-function 2)
(defun lyskom-set-language-vars (language scope)
"Set language-specific variables to values for LANGUAGE.
SCOPE must be one of global or local, and specifies the scope of the change.
If SCOPE is global, change all variables, even those that affect multiple
sessions."
(mapcar
(lambda (spec)
(let ((var (car spec))
(var-scope (cdr spec)))
(when (or (eq scope 'global)
(eq var-scope 'local))
(when (eq scope 'global)
(set-default var (eval (cdr (assq language
(get var 'lyskom-language-var))))))
(when (or (not (symbol-value var))
(get var 'lyskom-language-force))
(set var (eval (cdr (assq language
(get var 'lyskom-language-var)))))))))
lyskom-language-vars))
;;; Keymaps
(defvar lyskom-language-keymaps nil
"A list of all language-dependent keymaps.")
(defun lyskom-language-keymap-internal (keymap language langmap)
"Defines a language-local keymap."
;; If the "real" keymap has no value, set it to an empty keymap
(if (eval keymap)
nil
(set keymap (make-sparse-keymap))
(define-key (symbol-value keymap) [follow-link] 'mouse-face))
;; Add it to the list of keymaps
(or (memq keymap lyskom-language-keymaps)
(setq lyskom-language-keymaps
(cons keymap lyskom-language-keymaps)))
;; Modify the property list
(let* ((alist (get keymap 'lyskom-language-keymap))
(entry (assq language alist)))
(if entry
(setcdr entry langmap)
(put keymap 'lyskom-language-keymap
(cons (cons language langmap) alist)))))
(defmacro lyskom-language-keymap (keymap language langmap)
`(lyskom-language-keymap-internal ',keymap
',language
',langmap))
(put 'lyskom-language-keymap 'lisp-indent-function 2)
(defun lyskom-set-language-keymaps (language)
(mapcar
(lambda (map)
(lyskom-set-keymap-parent (symbol-value map)
(eval (cdr (assq language
(get map
'lyskom-language-keymap))))))
lyskom-language-keymaps))
;;; String catalogs
(defun lyskom-language-strings-internal (scope category language alist)
"Associates names to symbols.
See documentation of lyskom-language-strings for information on the
parameters to this function."
;; Record category
(or (assq category lyskom-language-categories)
(setq lyskom-language-categories
(cons (cons category scope) lyskom-language-categories)))
(let ((record (get category 'lyskom-language-symbols)))
(mapc (lambda (pair)
(let* ((symbol (car pair))
(string (cdr pair))
(llist (get symbol category))
(entry (assq language llist)))
;; Record symbol
(or (memq symbol record)
(setq record (cons symbol record)))
(if entry
(setcdr entry string)
(put symbol category (cons (cons language string) llist)))))
alist)
(put category 'lyskom-language-symbols record)))
(defmacro lyskom-language-strings (scope category language alist)
"Define a category of strings.
SCOPE is the scope of language-specificity. If it is global, then these
strings apply globally and will not be altered by changing the session
language.
CATEGORY is the name of the category.
LANGUAGE is the language, a symbol denoting the ISO639 language code.
ALIST is the list of strings."
`(lyskom-language-strings-internal ',scope
',category
',language
,alist))
(defun lyskom-language-missing-string-internal (category string languages)
(let ((old-missing (assq 'lyskom-missing-languages (get string category))))
(if old-missing
(setcdr old-missing (append languages (cdr old-missing)))
(put string category (cons (cons 'lyskom-missing-languages languages)
(get string category))))))
(defun lyskom-language-ending-mismatch-internal (category string l1 l2)
(let ((old-mismatch (assq 'lyskom-ending-mismatch (get string category))))
(if old-mismatch
(setcdr old-mismatch (append (list (cons l1 l2) (cons l2 l1))
(cdr old-mismatch)))
(put string category (cons (cons 'lyskom-ending-mismatch
(list (cons l1 l2) (cons l2 l1)))
(get string category))))))
(defmacro lyskom-language-missing-string (category string &rest languages)
`(lyskom-language-missing-string-internal ',category ',string ',languages))
(defmacro lyskom-language-ending-mismatch (category string l1 l2)
`(lyskom-language-ending-mismatch-internal ',category ',string ',l1 ',l2))
(put 'lyskom-language-strings 'lisp-indent-function 2)
(defsubst lyskom-tell-string (key)
"Retrieve the phrase indexed by the key from the kom-tell-phrases
assoc list."
(condition-case nil
(lyskom-get-string key 'kom-tell-phrases)
(lyskom-internal-error (message "Bad kom-tell-phrases: missing %s" key)
"")))
(defsubst lyskom-try-get-string (symbol category &optional language)
(cdr (assq (if (eq (cdr (assq category lyskom-language-categories)) 'local)
(or language lyskom-language)
(or language lyskom-global-language))
(get symbol category))))
(defsubst lyskom-get-string-error (function symbol category)
(signal 'lyskom-internal-error
(list function (list symbol category ": string not found"))))
(defun lyskom-get-string (symbol &optional category language)
"Returns string associated with SYMBOL"
(or (lyskom-try-get-string symbol (or category 'lyskom-message) language)
(lyskom-get-string-error 'lyskom-get-string
symbol
(or category 'lyskom-message))))
(defun lyskom-get-string-sol (symbol &optional category)
"Returns string associated with SYMBOL
If kom-long-lines is set, return the long form of the string, if it exists."
(or (and kom-long-lines
(lyskom-try-get-string (intern (concat (symbol-name symbol)
"-long"))
(or category 'lyskom-message)))
(lyskom-try-get-string symbol
(or category 'lyskom-message))
(lyskom-get-string-error 'lyskom-get-string
symbol
(or category 'lyskom-message))))
(defun lyskom-get-strings (symbols &optional category)
"Returns an alist of (symbol . string) pairs
according to CATEGORY and lyskom-language. Kind of inverse to
lyskom-define-language."
(mapcar (lambda (symbol)
(cons symbol (lyskom-get-string symbol category)))
symbols))
(defun lyskom-get-menu-string (symbol)
"Returns the name of a menu(item)
Looks for the 'lyskom-menu category, or 'lyskom-command
if 'lyskom-menu is not found."
(or (lyskom-try-get-string symbol 'lyskom-menu)
(lyskom-try-get-string symbol 'lyskom-command)
(lyskom-get-string-error 'lyskom-get-menu-string symbol 'lyskom-menu)))
(defun lyskom-define-language (language coding &rest names)
(let ((match (assq language lyskom-languages)))
(if match
(setcdr match names)
(setq lyskom-languages (cons (cons language names) lyskom-languages))))
(put language 'lyskom-language-coding coding))
(defun lyskom-language-coding (language)
(or (get language 'lyskom-language-coding)
'raw-text))
(defun lyskom-language-name (language)
"Return the name of language code LANGUAGE in the current language."
(save-excursion
(when lyskom-buffer (set-buffer lyskom-buffer))
(or (cdr (assq language lyskom-language-codes))
(lyskom-format (cdr (assq '-- lyskom-language-codes))
(symbol-name language)))))
(defun lyskom-set-language (language scope)
"Set the current language to LANGUAGE.
Returns non-nil on success and nil on failure."
(when (listp language)
(setq language (lyskom-first-available-language language)))
(cond ((not (assq language lyskom-languages))
(lyskom-format-insert-before-prompt 'language-not-loaded
(lyskom-language-name language))
nil)
(t
(cond ((eq scope 'local)
(setq lyskom-language language))
((eq scope 'global)
(setq lyskom-global-language language)
(lyskom-set-language-keymaps language)))
(lyskom-set-language-vars language scope)
(when (eq scope 'global) (lyskom-update-menus))
(lyskom-update-prompt t)
(lyskom-update-command-completion)
t)))
(defun lyskom-first-available-language (langs)
"Return the first language in LANGS that is supported."
(or (lyskom-traverse el (if (listp langs) langs (list langs))
(when (assq el lyskom-languages)
(lyskom-traverse-break el)))
(car (car lyskom-languages))))
(defun lyskom-language-from-environment (var)
"Return language name from value of environment variable VAR."
(let ((tmp (getenv var)))
(and tmp
(string-match "^\\([a-z]+\\)" tmp)
(intern (match-string 1 tmp)))))
(defun lyskom-default-language ()
"Return the default language for LysKOM"
(let ((languages (append
(if (listp kom-default-language)
kom-default-language
(list kom-default-language))
(list
(lyskom-language-from-environment "KOMLANGUAGE")
(lyskom-language-from-environment "LC_ALL")
(lyskom-language-from-environment "LC_MESSAGES")
(lyskom-language-from-environment "LANG")))))
(or (lyskom-traverse lang languages
(when (assq lang lyskom-languages)
(lyskom-traverse-break lang)))
(car (car (last lyskom-languages))))))
(eval-and-compile (provide 'lyskom-language))
;;; language.el ends here
|