dify/web/i18n/index.ts

7 lines
139 B
TypeScript
Raw Normal View History

2023-05-15 08:51:32 +08:00
export const i18n = {
defaultLocale: 'en',
locales: ['en', 'zh-Hans'],
} as const
export type Locale = typeof i18n['locales'][number]