mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
19 lines
484 B
TypeScript
19 lines
484 B
TypeScript
import { createContext } from 'use-context-selector'
|
|
import type { Locale } from '@/i18n'
|
|
|
|
type II18NContext = {
|
|
locale: Locale
|
|
i18n: Record<string, any>
|
|
setLocaleOnClient: (locale: Locale, reloadPage?: boolean) => void
|
|
// setI8N: (i18n: Record<string, string>) => void,
|
|
}
|
|
|
|
const I18NContext = createContext<II18NContext>({
|
|
locale: 'en',
|
|
i18n: {},
|
|
setLocaleOnClient: (lang: Locale, reloadPage?: boolean) => { },
|
|
// setI8N: () => {},
|
|
})
|
|
|
|
export default I18NContext
|