31 lines
773 B
JavaScript
31 lines
773 B
JavaScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
|
|
import en from '../locales/en/translation.json';
|
|
import fr from '../locales/fr/translation.json';
|
|
import es from '../locales/es/translation.json';
|
|
|
|
i18n
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources: {
|
|
en: { translation: en },
|
|
fr: { translation: fr },
|
|
es: { translation: es },
|
|
},
|
|
fallbackLng: 'en',
|
|
supportedLngs: ['en', 'fr', 'es'],
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
detection: {
|
|
order: ['localStorage', 'navigator', 'htmlTag'],
|
|
caches: ['localStorage'],
|
|
lookupLocalStorage: 'sociowire:lang',
|
|
},
|
|
});
|
|
|
|
export default i18n;
|