mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
import type { InitOptions } from 'i18next'
|
|
import { namespacesCamelCase } from './resources'
|
|
|
|
export function getInitOptions(): InitOptions {
|
|
return {
|
|
// We do not have en for fallback
|
|
load: 'currentOnly',
|
|
fallbackLng: 'en-US',
|
|
partialBundledLanguages: true,
|
|
keySeparator: false,
|
|
ns: namespacesCamelCase,
|
|
}
|
|
}
|