mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
31 lines
802 B
TypeScript
31 lines
802 B
TypeScript
import type { Locale } from '@/i18n-config/language'
|
|
|
|
import Cookies from 'js-cookie'
|
|
import { LOCALE_COOKIE_NAME } from '@/config'
|
|
import { changeLanguage } from '@/i18n-config/client'
|
|
import { LanguagesSupported } from '@/i18n-config/language'
|
|
|
|
export const i18n = {
|
|
defaultLocale: 'en-US',
|
|
locales: LanguagesSupported,
|
|
} as const
|
|
|
|
export { Locale }
|
|
|
|
export const setLocaleOnClient = async (locale: Locale, reloadPage = true) => {
|
|
Cookies.set(LOCALE_COOKIE_NAME, locale, { expires: 365 })
|
|
await changeLanguage(locale)
|
|
if (reloadPage)
|
|
location.reload()
|
|
}
|
|
|
|
export const renderI18nObject = (obj: Record<string, string>, language: string) => {
|
|
if (!obj)
|
|
return ''
|
|
if (obj?.[language])
|
|
return obj[language]
|
|
if (obj?.en_US)
|
|
return obj.en_US
|
|
return Object.values(obj)[0]
|
|
}
|