mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
20 lines
289 B
TypeScript
20 lines
289 B
TypeScript
type Item = {
|
|
value: number | string
|
|
name: string
|
|
}
|
|
export const languages: Item[] = [
|
|
{
|
|
value: 'en-US',
|
|
name: 'English(United States)',
|
|
},
|
|
{
|
|
value: 'zh-Hans',
|
|
name: '简体中文',
|
|
},
|
|
]
|
|
|
|
export const languageMaps = {
|
|
'en': 'en-US',
|
|
'zh-Hans': 'zh-Hans',
|
|
}
|