feat(i18n): add Traditional Chinese language support

This commit is contained in:
sao-coding
2024-11-25 02:35:24 +00:00
parent ac33b6b6a1
commit 54eb5544ac
6 changed files with 46 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import Cookies from "js-cookie";
const SUPPORTED_LOCALES = ["en", "pl", "ru", "de", "zh-Hans"] as const;
const SUPPORTED_LOCALES = ["en", "pl", "ru", "de", "zh-Hant", "zh-Hans"] as const;
type Locale = (typeof SUPPORTED_LOCALES)[number];