summaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
authorSheogorath2017-10-23 11:53:31 +0200
committerGitHub2017-10-23 11:53:31 +0200
commitc794412714cdd7b0f6ebfadaf108f72098004d64 (patch)
tree2d3cc7a8dcaa0551d3b7de872250f39a1206d498 /public/js
parenta23048254ddfb36a2c204c96db042fd0a6012b48 (diff)
parent362a7eaf65d902a93890f3510a58a092de3ac467 (diff)
Merge pull request #591 from Rwing/master
support Simplified Chinese and rename original zh to Traditional Chinese
Diffstat (limited to 'public/js')
-rw-r--r--public/js/locale.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/public/js/locale.js b/public/js/locale.js
index 2a2c1814..71c0f99f 100644
--- a/public/js/locale.js
+++ b/public/js/locale.js
@@ -11,6 +11,9 @@ $('.ui-locale option').each(function () {
})
if (Cookies.get('locale')) {
lang = Cookies.get('locale')
+ if (lang === 'zh') {
+ lang = 'zh-TW'
+ }
} else if (supportLangs.indexOf(userLang) !== -1) {
lang = supportLangs[supportLangs.indexOf(userLang)]
} else if (supportLangs.indexOf(userLangCode) !== -1) {