mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-01 05:12:00 +08:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import { LanguagesSupported } from '@/utils/language'
|
|
|
|
export const i18n = {
|
|
defaultLocale: 'en',
|
|
locales: LanguagesSupported,
|
|
} as const
|
|
|
|
export type Locale = typeof i18n['locales'][number]
|