0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 00:46:26 +00:00

Numeric character entities for proper rendering of non-UTF8 documents

* org-exp.el (org-export-language-setup): Use numeric character
entities for proper rendering of non-UTF8 documents.
This commit is contained in:
David Maus 2012-03-18 19:39:18 +01:00
parent b2913c9227
commit dab84afa75

View file

@ -197,9 +197,13 @@ This option can also be set with the +OPTIONS line, e.g. \"-:nil\"."
("nb" "Forfatter" "Dato" "Innhold" "Fotnoter") ;; nb = Norsk (bokm.l)
("nn" "Forfattar" "Dato" "Innhald" "Fotnotar") ;; nn = Norsk (nynorsk)
("pl" "Autor" "Data" "Spis treści" "Przypis")
("ru" "Автор" "Дата" "Содержание" "Сноски")
;; Use numeric character entities for proper rendering of non-UTF8 documents
;; ("ru" "Автор" "Дата" "Содержание" "Сноски")
("ru" "Автор" "Дата" "Содержание" "Сноски")
("sv" "Författare" "Datum" "Innehåll" "Fotnoter")
("zh_CN" "作者" "日期" "目录" "脚注"))
;; Use numeric character entities for proper rendering of non-UTF8 documents
;; ("zh_CN" "作者" "日期" "目录" "脚注")
("zh_CN" "作者" "日期" "目录" "脚注"))
"Terms used in export text, translated to different languages.
Use the variable `org-export-default-language' to set the language,
or use the +OPTION lines for a per-file setting."