diff options
author | Albert <albert.tests@gmail.com> | 2013-10-21 17:50:38 (GMT) |
---|---|---|
committer | Albert <albert.tests@gmail.com> | 2013-10-21 17:50:38 (GMT) |
commit | 537510677993992e0d7c59e570ed11cbfaab27ca (patch) | |
tree | 1bd61c9c7e41e0f441364d94f655e40c3dbe2057 | |
parent | 8c9e829765aeac42e9c9096e322812b582052782 (diff) | |
download | Doxygen-537510677993992e0d7c59e570ed11cbfaab27ca.zip Doxygen-537510677993992e0d7c59e570ed11cbfaab27ca.tar.gz Doxygen-537510677993992e0d7c59e570ed11cbfaab27ca.tar.bz2 |
Esperanto not supported by htmlhelp compiler
reverting for esperanto to default language (US English)
-rw-r--r-- | src/htmlhelp.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index c4cca17..23d5194 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -435,7 +435,10 @@ void HtmlHelp::initialize() s_languageDict.insert("latvian", new QCString("0x426 Latvian")); s_languageDict.insert("macedonian", new QCString("0x042f Macedonian (Former Yugoslav Republic of Macedonia)")); s_languageDict.insert("armenian", new QCString("0x42b Armenian")); - s_languageDict.insert("esperanto", new QCString("0x48f Esperanto")); + //Code for Esperanto should be as shown below but the htmlhelp compiler 1.3 does not support this + // (and no newer version is available). + //So do a fallback to the default language (see getLanguageString()) + //s_languageDict.insert("esperanto", new QCString("0x48f Esperanto")); s_languageDict.insert("serbian-cyrillic", new QCString("0xC1A Serbian (Serbia, Cyrillic)")); } |