summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-10-21 18:20:57 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-10-21 18:20:57 (GMT)
commit74815268dd88f2cfb4473462cef3c33eebd5516a (patch)
tree3bc571e012e59ae2e630cb2ed78f9b7b944ce6f7
parent33ce9c337c8c7f5f60e6d8cdb5fcae03fd7598c1 (diff)
parent537510677993992e0d7c59e570ed11cbfaab27ca (diff)
downloadDoxygen-74815268dd88f2cfb4473462cef3c33eebd5516a.zip
Doxygen-74815268dd88f2cfb4473462cef3c33eebd5516a.tar.gz
Doxygen-74815268dd88f2cfb4473462cef3c33eebd5516a.tar.bz2
Merge pull request #50 from albert-github/feature_chm_esperanto
Esperanto not supported by htmlhelp compiler
-rw-r--r--src/htmlhelp.cpp5
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)"));
}