Commit ce4354ac authored by Petr Prikryl's avatar Petr Prikryl

Korean translator converted to UTF-8.

parent f2d61620
/****************************************************************************** /******************************************************************************
* *
* *
* *
* Copyright (C) 1997-2013 by Dimitri van Heesch. * Copyright (C) 1997-2013 by Dimitri van Heesch.
* *
* Permission to use, copy, modify, and distribute this software and its * Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby * documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software * granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty. * for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details. * See the GNU General Public License for more details.
* *
...@@ -198,19 +198,19 @@ bool setTranslator(const char *langName) ...@@ -198,19 +198,19 @@ bool setTranslator(const char *langName)
theTranslator=new TranslatorCzech; theTranslator=new TranslatorCzech;
} }
#endif #endif
#ifdef LANG_FR #ifdef LANG_FR
else if (L_EQUAL("french")) else if (L_EQUAL("french"))
{ {
theTranslator=new TranslatorFrench; theTranslator=new TranslatorFrench;
} }
#endif #endif
#ifdef LANG_ID #ifdef LANG_ID
else if (L_EQUAL("indonesian")) else if (L_EQUAL("indonesian"))
{ {
theTranslator=new TranslatorDecoder(new TranslatorIndonesian); theTranslator=new TranslatorDecoder(new TranslatorIndonesian);
} }
#endif #endif
#ifdef LANG_IT #ifdef LANG_IT
else if (L_EQUAL("italian")) else if (L_EQUAL("italian"))
{ {
theTranslator=new TranslatorItalian; theTranslator=new TranslatorItalian;
...@@ -279,7 +279,7 @@ bool setTranslator(const char *langName) ...@@ -279,7 +279,7 @@ bool setTranslator(const char *langName)
#ifdef LANG_KR #ifdef LANG_KR
else if (L_EQUAL("korean")) else if (L_EQUAL("korean"))
{ {
theTranslator=new TranslatorDecoder(new TranslatorKorean); theTranslator=new TranslatorKorean;
} }
#endif #endif
#ifdef LANG_KE #ifdef LANG_KE
...@@ -426,7 +426,7 @@ bool setTranslator(const char *langName) ...@@ -426,7 +426,7 @@ bool setTranslator(const char *langName)
theTranslator=new TranslatorEnglish; theTranslator=new TranslatorEnglish;
return FALSE; return FALSE;
} }
QCString msg = theTranslator->updateNeededMessage(); QCString msg = theTranslator->updateNeededMessage();
if (!msg.isEmpty()) warn_uncond(msg); if (!msg.isEmpty()) warn_uncond(msg);
return TRUE; return TRUE;
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment