Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / language / czech.el
blobe9935616da1ca6b1e911bd172d00e327ec6ea152
1 ;;; czech.el --- support for Czech -*- coding: utf-8 -*-
3 ;; Copyright (C) 1998, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Milan Zamazal <pdm@zamazal.org>
6 ;; Maintainer: Pavel Janík <Pavel@Janik.cz>
7 ;; Keywords: multilingual, Czech
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs 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 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs 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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Czech ISO 8859-2 environment.
28 ;;; Code:
30 (set-language-info-alist
31 "Czech" '((charset . (ascii latin-iso8859-2))
32 (coding-system . (iso-8859-2))
33 (coding-priority . (iso-8859-2))
34 (input-method . "czech")
35 (nonascii-translation . iso-8859-2)
36 (unibyte-display . iso-8859-2)
37 (tutorial . "TUTORIAL.cs")
38 (sample-text . "Přejeme vám hezký den!")
39 (documentation . "\
40 This language environment is almost the same as Latin-2,
41 but sets the default input method to \"czech\",
42 and selects the Czech tutorial."))
43 '("European"))
45 (provide 'czech)
47 ;;; czech.el ends here