diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-04-19 00:52:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 00:52:10 +0900 |
commit | 368f9ab4d38f54356b06bf849e5d64ab26565e0a (patch) | |
tree | 7bec5ed211e622e1ded74a3c6c3b09d5c09d831d | |
parent | 50d2d289e150cb429de15770bdd48a723de8c45d (diff) | |
parent | 69e8c5d6d9246e9d65bbc9f2bd3caf0025c2d761 (diff) | |
download | sphinx-git-368f9ab4d38f54356b06bf849e5d64ab26565e0a.tar.gz |
Merge pull request #7414 from cgudrian/fix_xindy_lang_options
Fix for Xindy language options
-rw-r--r-- | sphinx/builders/latex/__init__.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index 390a5d9c7..183708520 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -54,13 +54,13 @@ XINDY_LANG_OPTIONS = { 'hr': '-L croatian -C utf8 ', 'cs': '-L czech -C utf8 ', 'da': '-L danish -C utf8 ', - 'nl': '-L dutch -C ij-as-ij-utf8 ', + 'nl': '-L dutch-ij-as-ij -C utf8 ', 'en': '-L english -C utf8 ', 'eo': '-L esperanto -C utf8 ', 'et': '-L estonian -C utf8 ', 'fi': '-L finnish -C utf8 ', 'fr': '-L french -C utf8 ', - 'de': '-L german -C din5007-utf8 ', + 'de': '-L german-din5007 -C utf8 ', 'is': '-L icelandic -C utf8 ', 'it': '-L italian -C utf8 ', 'la': '-L latin -C utf8 ', @@ -73,9 +73,9 @@ XINDY_LANG_OPTIONS = { 'pl': '-L polish -C utf8 ', 'pt': '-L portuguese -C utf8 ', 'ro': '-L romanian -C utf8 ', - 'sk': '-L slovak -C small-utf8 ', # there is also slovak-large + 'sk': '-L slovak-small -C utf8 ', # there is also slovak-large 'sl': '-L slovenian -C utf8 ', - 'es': '-L spanish -C modern-utf8 ', # there is also spanish-traditional + 'es': '-L spanish-modern -C utf8 ', # there is also spanish-traditional 'sv': '-L swedish -C utf8 ', 'tr': '-L turkish -C utf8 ', 'hsb': '-L upper-sorbian -C utf8 ', @@ -86,7 +86,7 @@ XINDY_LANG_OPTIONS = { 'be': '-L belarusian -C utf8 ', 'bg': '-L bulgarian -C utf8 ', 'mk': '-L macedonian -C utf8 ', - 'mn': '-L mongolian -C cyrillic-utf8 ', + 'mn': '-L mongolian-cyrillic -C utf8 ', 'ru': '-L russian -C utf8 ', 'sr': '-L serbian -C utf8 ', 'sh-cyrl': '-L serbian -C utf8 ', @@ -96,7 +96,7 @@ XINDY_LANG_OPTIONS = { # can work only with xelatex/lualatex, not supported by texindy+pdflatex 'el': '-L greek -C utf8 ', # FIXME, not compatible with [:2] slice but does Sphinx support Greek ? - 'el-polyton': '-L greek -C polytonic-utf8 ', + 'el-polyton': '-L greek-polytonic -C utf8 ', } XINDY_CYRILLIC_SCRIPTS = [ |