Add a Hebrew translation of the tutorial.

etc/tutorials/TUTORIAL.he: New file.
 etc/tutorials/TUTORIAL.translators: Add TUTORIAL.he.
 lisp/files.el (bidi-paragraph-direction): Define safe local values.
 lisp/language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
 language-info-alist.  Remove outdated FIXME in a comment.
This commit is contained in:
Eli Zaretskii 2010-07-31 18:46:58 +03:00
parent 28e5cf7c6a
commit cd83d52209
6 changed files with 1060 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2010-07-31 Eli Zaretskii <eliz@gnu.org>
* tutorials/TUTORIAL.he: New file.
* tutorials/TUTORIAL.translators: Add TUTORIAL.he.
2010-07-24 Christoph Scholtes <cschol2112@gmail.com> 2010-07-24 Christoph Scholtes <cschol2112@gmail.com>
* NEWS: Document new --distfiles configure.bat option and * NEWS: Document new --distfiles configure.bat option and

1037
etc/tutorials/TUTORIAL.he Normal file

File diff suppressed because it is too large Load diff

View file

@ -31,6 +31,10 @@ Maintainer: Rafael Sepúlveda <drs@gnulinux.org.mx>
Author: Éric Jacoboni <jaco@teaser.fr> Author: Éric Jacoboni <jaco@teaser.fr>
Maintainer: Éric Jacoboni <jaco@teaser.fr> Maintainer: Éric Jacoboni <jaco@teaser.fr>
* TUTORIAL.he
Author: Eli Zaretskii <eliz@gnu.org>
Maintainer: Eli Zaretskii <eliz@gnu.org>
* TUTORIAL.it: * TUTORIAL.it:
Author: Alfredo Finelli <alfredofnl@tiscali.it> Author: Alfredo Finelli <alfredofnl@tiscali.it>
Italian GNU Translation Group <tp@lists.linux.it> Italian GNU Translation Group <tp@lists.linux.it>

View file

@ -1,3 +1,10 @@
2010-07-31 Eli Zaretskii <eliz@gnu.org>
* files.el (bidi-paragraph-direction): Define safe local values.
* language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
language-info-alist. Remove outdated FIXME in a comment.
2010-07-31 Alan Mackenzie <acm@muc.de> 2010-07-31 Alan Mackenzie <acm@muc.de>
* progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688: * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:

View file

@ -2784,6 +2784,9 @@ asking you for confirmation."
(truncate-lines . booleanp) ;; C source code (truncate-lines . booleanp) ;; C source code
(bidi-display-reordering . booleanp))) ;; C source code (bidi-display-reordering . booleanp))) ;; C source code
(put 'bidi-paragraph-direction 'safe-local-variable
(lambda (v) (memq v '(nil right-to-left left-to-right))))
(put 'c-set-style 'safe-local-eval-function t) (put 'c-set-style 'safe-local-eval-function t)
(defvar file-local-variables-alist nil (defvar file-local-variables-alist nil

View file

@ -46,14 +46,13 @@
(define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit) (define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit)
;; These are for Explicit and Implicit directionality information, as ;; These are for Explicit and Implicit directionality information, as
;; defined in RFC 1556. We don't yet support directional information ;; defined in RFC 1556.
;; in bidi languages, so these aliases are a lie, especially as far as
;; iso-8859-8-e is concerned. FIXME.
(define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit) (define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit)
(define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit) (define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit)
(set-language-info-alist (set-language-info-alist
"Hebrew" '((charset iso-8859-8) "Hebrew" '((tutorial . "TUTORIAL.he")
(charset iso-8859-8)
(coding-priority hebrew-iso-8bit) (coding-priority hebrew-iso-8bit)
(coding-system hebrew-iso-8bit windows-1255 cp862) (coding-system hebrew-iso-8bit windows-1255 cp862)
(nonascii-translation . iso-8859-8) (nonascii-translation . iso-8859-8)