diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-07-29 21:10:30 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-07-29 21:10:30 -0300 |
commit | e896261b87b2b8703a447f4bfaee5251bcb59b23 (patch) | |
tree | 8ba1b720e1037c2195fcc8dcfce5059876101d3b /platform/windows/lang_table.h | |
parent | ac52eb444f868b14db9eac4d29a10d2fc40919c0 (diff) |
Added missing support for traditional chinese on Windows, fixes #7674
Diffstat (limited to 'platform/windows/lang_table.h')
-rw-r--r-- | platform/windows/lang_table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/windows/lang_table.h b/platform/windows/lang_table.h index 1a966b502a..78bfadfeae 100644 --- a/platform/windows/lang_table.h +++ b/platform/windows/lang_table.h @@ -186,6 +186,7 @@ static const _WinLocale _win_locales[] = { { "zh_CN", LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED }, { "zh_HK", LANG_CHINESE, SUBLANG_CHINESE_HONGKONG }, { "zh_SG", LANG_CHINESE, SUBLANG_CHINESE_SINGAPORE }, + { "zh_TW", LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL }, { 0, 0, 0 }, }; |