blob: 7c5c2f853ac43282876387d5b079e34b19c71c21 [file] [log] [blame]
simond47ef9e2022-09-28 22:24:28 -04001import i18n from 'i18next';
2import { initReactI18next } from 'react-i18next';
simon07b4eb02022-09-29 17:50:26 -04003
simond47ef9e2022-09-28 22:24:28 -04004import translationEn from '../public/locale/en/translation.json';
5import translationFr from '../public/locale/fr/translation.json';
idillon5815c732022-09-16 13:54:45 -04006
simond47ef9e2022-09-28 22:24:28 -04007i18n.use(initReactI18next).init({
8 debug: process.env.NODE_ENV == 'development',
9 lng: 'en',
idillon5815c732022-09-16 13:54:45 -040010 interpolation: {
11 escapeValue: false,
12 },
13 resources: {
14 en: {
15 translation: translationEn,
16 },
17 fr: {
18 translation: translationFr,
19 },
20 },
simond47ef9e2022-09-28 22:24:28 -040021});
idillon5815c732022-09-16 13:54:45 -040022
simond47ef9e2022-09-28 22:24:28 -040023export default i18n;