From a2481b0ccba0d86a73234b6ba55066b3eb331877 Mon Sep 17 00:00:00 2001 From: toto6038 <50100922+toto6038@users.noreply.github.com> Date: Wed, 1 Dec 2021 03:08:50 +0800 Subject: [PATCH 1/2] Enable Traditional Chinese --- config.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config.js b/config.js index 9e6c5b3..c8f9bbf 100644 --- a/config.js +++ b/config.js @@ -733,18 +733,18 @@ exports.languages = { number: function(n) { return n; } + }, + "zh-hant": { + menuTitle: "正體中文", // Traditional Chinese + plural: function(n) { + return 1; // other + }, + number: function(n) { + return n; + } } }; -// "zh-hant": { -// menuTitle: "汉语", // Traditional Chinese -// plural: function(n) { -// return 1; // other -// }, -// number: function(n) { -// return n; -// } -// } -// }; + // ********** List of localization domains ********** exports.domains = [ From 1c70989214db46baf02e6b6d067db7be8b056570 Mon Sep 17 00:00:00 2001 From: toto6038 <50100922+toto6038@users.noreply.github.com> Date: Thu, 2 Dec 2021 21:34:44 +0800 Subject: [PATCH 2/2] Update config.js --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index c8f9bbf..85709b5 100644 --- a/config.js +++ b/config.js @@ -726,7 +726,7 @@ exports.languages = { } }, "zh-hans": { - menuTitle: "中文(简体)", // Simplified Chinese + menuTitle: "简体中文", // Simplified Chinese plural: function(n) { return 1; // other },