diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-07-03 17:43:17 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-07-03 17:43:17 (GMT) |
commit | adb81f79061729efc28e71c1474c35e21283b049 (patch) | |
tree | d1720b58a91abcbfb70196c277ad3b7a11da8263 /src/language.cpp | |
parent | 9b28530018c59ce65519f49e8095ecd58b082c87 (diff) | |
download | Doxygen-adb81f79061729efc28e71c1474c35e21283b049.zip Doxygen-adb81f79061729efc28e71c1474c35e21283b049.tar.gz Doxygen-adb81f79061729efc28e71c1474c35e21283b049.tar.bz2 |
Release-1.1.5
Diffstat (limited to 'src/language.cpp')
-rw-r--r-- | src/language.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/language.cpp b/src/language.cpp index 31e0e6e..27b6c7c 100644 --- a/src/language.cpp +++ b/src/language.cpp @@ -15,6 +15,7 @@ * */ +#include "message.h" #include "language.h" #if !defined(ENGLISH_ONLY) #include "translator_nl.h" @@ -51,6 +52,10 @@ bool setTranslator(const char *langName) } else if (L_EQUAL("czech")) { +#ifndef _WIN32 + err("Warning: The Czech translation uses the windows code page 1250 encoding.\n" + "Please convert translator_cz.h to ISO Latin-2 to use it under UNIX.\n"); +#endif theTranslator=new TranslatorCzech; } else if (L_EQUAL("french")) |