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