dify/web/i18n/index.ts
2023-05-15 08:51:32 +08:00

7 lines
139 B
TypeScript

export const i18n = {
defaultLocale: 'en',
locales: ['en', 'zh-Hans'],
} as const
export type Locale = typeof i18n['locales'][number]