mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
26 lines
791 B
TypeScript
26 lines
791 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 type { 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]!
|
|
}
|