From 10a71ab4d64faa7e167e7a4864e550ead971cb4c Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sun, 29 Jul 2018 21:10:30 -0300 Subject: [PATCH] Added missing support for traditional chinese on Windows, fixes #7674 (cherry picked from commit e896261b87b2b8703a447f4bfaee5251bcb59b23) --- platform/windows/lang_table.h | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/windows/lang_table.h b/platform/windows/lang_table.h index 1a966b502ab..78bfadfeaed 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 }, };