2025-09-16 17:19:58 +08:00

14 lines
294 B
TypeScript

import { zhCN } from './zh-CN';
import { zhTW } from './zh-TW';
import { en } from './en';
export const supportTranslations = {
'zh-CN': zhCN,
'zh-TW': zhTW,
en: en,
};
export type SupportLanguage = keyof typeof supportTranslations;
export type SupportTranslation = typeof zhCN;