Fixed incorrect language codes in config.c (#3513)

This commit is contained in:
LRFLEW 2016-05-07 04:06:46 -05:00 committed by Ted John
parent ac6cba7047
commit 355b163f36
1 changed files with 5 additions and 5 deletions

View File

@ -144,13 +144,13 @@ config_enum_definition _languageEnum[] = {
{ "sv-SE", LANGUAGE_SWEDISH },
{ "it-IT", LANGUAGE_ITALIAN },
{ "pt-BR", LANGUAGE_PORTUGUESE_BR },
{ "zh-Hant",LANGUAGE_CHINESE_TRADITIONAL },
{ "zh-Hans",LANGUAGE_CHINESE_SIMPLIFIED },
{ "zh-TW", LANGUAGE_CHINESE_TRADITIONAL },
{ "zh-CN", LANGUAGE_CHINESE_SIMPLIFIED },
{ "fi-FI", LANGUAGE_FINNISH },
{ "ko", LANGUAGE_KOREAN },
{ "ko-KR", LANGUAGE_KOREAN },
{ "ru-RU", LANGUAGE_RUSSIAN },
{ "cz-CZ", LANGUAGE_CZECH },
{ "jp-JP", LANGUAGE_JAPANESE },
{ "cs-CZ", LANGUAGE_CZECH },
{ "ja-JP", LANGUAGE_JAPANESE },
END_OF_ENUM
};