File size: 627 Bytes
6248bf4 0f2f80a 6248bf4 0f2f80a 6248bf4 0f2f80a 6248bf4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
import en from '../locales/en.json';
import fr from '../locales/fr.json';
import es from '../locales/es.json';
import pt from '../locales/pt.json';
i18n
.use(LanguageDetector)
.use(initReactI18next)
.init({
resources: {
en: { translation: en },
fr: { translation: fr },
es: { translation: es },
pt: { translation: pt }
},
fallbackLng: 'en',
debug: false,
interpolation: {
escapeValue: false,
}
});
export default i18n;
|