fix: i18n fallback

This commit is contained in:
Junyan Qin
2025-08-17 11:43:38 +08:00
parent 0ea7609ff1
commit 17d997c88e
2 changed files with 27 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
export interface I18nObject {
en_US: string;
zh_Hans: string;
zh_Hant?: string;
ja_JP?: string;
}