30 lines
767 B
JavaScript
30 lines
767 B
JavaScript
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',
|
|
debug: process.env.NODE_ENV === 'development',
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
backend: {
|
|
loadPath: '/lang/{{lng}}/{{ns}}.json',
|
|
},
|
|
ns: ['marketing', 'auth', 'profile', 'common', 'legal'],
|
|
defaultNS: 'marketing',
|
|
supportedLngs: ['de', 'en'],
|
|
detection: {
|
|
order: ['path', 'cookie', 'localStorage', 'htmlTag', 'subdomain'],
|
|
lookupFromPathIndex: 0,
|
|
caches: ['cookie'],
|
|
},
|
|
});
|
|
|
|
export default i18n;
|