blob: b9cdf11829affb971b123e2eda18f65ae1c1bca6 [file] [log] [blame]
simond47ef9e2022-09-28 22:24:28 -04001import i18n from 'i18next';
2import { initReactI18next } from 'react-i18next';
3import translationEn from '../public/locale/en/translation.json';
4import translationFr from '../public/locale/fr/translation.json';
idillon5815c732022-09-16 13:54:45 -04005
simond47ef9e2022-09-28 22:24:28 -04006i18n.use(initReactI18next).init({
7 debug: process.env.NODE_ENV == 'development',
8 lng: 'en',
idillon5815c732022-09-16 13:54:45 -04009 interpolation: {
10 escapeValue: false,
11 },
12 resources: {
13 en: {
14 translation: translationEn,
15 },
16 fr: {
17 translation: translationFr,
18 },
19 },
simond47ef9e2022-09-28 22:24:28 -040020});
idillon5815c732022-09-16 13:54:45 -040021
simond47ef9e2022-09-28 22:24:28 -040022export default i18n;