feat(i18n): add zh-Hant UI translations and locale mapping (#1777)

* feat(i18n): add zh-Hant UI translations and locale mapping

* chore(i18n): format config

* fix(i18n): add zh-Hant config enum

* chore(types): regenerate
This commit is contained in:
Alex Huang
2026-01-06 04:43:31 +08:00
committed by GitHub
parent 2cd4c1b181
commit 875b1068a0
9 changed files with 1179 additions and 2 deletions

View File

@@ -320,7 +320,7 @@ export type GitHubConfig = { pat: string | null, oauth_token: string | null, use
export enum SoundFile { ABSTRACT_SOUND1 = "ABSTRACT_SOUND1", ABSTRACT_SOUND2 = "ABSTRACT_SOUND2", ABSTRACT_SOUND3 = "ABSTRACT_SOUND3", ABSTRACT_SOUND4 = "ABSTRACT_SOUND4", COW_MOOING = "COW_MOOING", PHONE_VIBRATION = "PHONE_VIBRATION", ROOSTER = "ROOSTER" }
export type UiLanguage = "BROWSER" | "EN" | "JA" | "ES" | "KO" | "ZH_HANS";
export type UiLanguage = "BROWSER" | "EN" | "JA" | "ES" | "KO" | "ZH_HANS" | "ZH_HANT";
export type ShowcaseState = { seen_features: Array<string>, };