feat: 添加繁体中文翻译 (#348)

* feat: Add Traditional Chinese language UI locale

* chore: 添加新翻译

---------

Co-authored-by: ChenZhaoYu <790348264@qq.com>
This commit is contained in:
Peter Dave Hello
2023-03-07 18:44:27 +08:00
committed by GitHub
parent 45cbfbf002
commit ecc2afd164
5 changed files with 55 additions and 6 deletions

View File

@@ -52,6 +52,7 @@ const themeOptions: { label: string; key: Theme; icon: string }[] = [
const languageOptions: { label: string; key: Language; value: Language }[] = [
{ label: '中文', key: 'zh-CN', value: 'zh-CN' },
{ label: '繁體中文', key: 'zh-TW', value: 'zh-TW' },
{ label: 'English', key: 'en-US', value: 'en-US' },
]