32 lines
756 B
TypeScript
32 lines
756 B
TypeScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
import Backend from 'i18next-http-backend';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
|
|
i18n
|
|
.use(Backend)
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
fallbackLng: 'de',
|
|
supportedLngs: ['de', 'en'],
|
|
ns: ['marketing', 'auth', 'common'],
|
|
defaultNS: 'marketing',
|
|
debug: import.meta.env.DEV,
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
backend: {
|
|
loadPath: '/lang/{{lng}}/{{ns}}.json',
|
|
},
|
|
detection: {
|
|
order: ['path', 'localStorage', 'htmlTag'],
|
|
lookupFromPathIndex: 0,
|
|
caches: ['localStorage'],
|
|
},
|
|
react: {
|
|
useSuspense: false,
|
|
},
|
|
});
|
|
|
|
export default i18n; |