Add internationalization support for Simplified Chinese (vibe-kanban 1e5a14ae)

This commit is contained in:
CG-man
2025-12-05 15:29:23 +08:00
committed by Gabriel Gordon-Hall
parent 9c434822d6
commit 52c84f0cce
9 changed files with 1052 additions and 2 deletions

View File

@@ -286,7 +286,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";
export type UiLanguage = "BROWSER" | "EN" | "JA" | "ES" | "KO" | "ZH_HANS";
export type ShowcaseState = { seen_features: Array<string>, };