Files
freeCodeCamp/client/i18n/config.js
Mrugesh Mohapatra 8f0e441644 revert(api): decouple api from curriculum
This reverts commit c077ffe4b9
via PR #40703
2021-02-25 03:40:09 +05:30

43 lines
1.2 KiB
JavaScript

import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import { clientLocale } from '../../config/env.json';
import { i18nextCodes } from './allLangs';
const i18nextCode = i18nextCodes[clientLocale];
i18n.use(initReactI18next).init({
fallbackLng: 'en',
lng: i18nextCode,
// we only load one language since each language will have it's own server
resources: {
[i18nextCode]: {
translations: require(`./locales/${clientLocale}/translations.json`),
trending: require(`./locales/${clientLocale}/trending.json`),
intro: require(`./locales/${clientLocale}/intro.json`),
metaTags: require(`./locales/${clientLocale}/meta-tags.json`)
},
en: {
translations: require('./locales/english/translations.json'),
trending: require('./locales/english/trending.json'),
intro: require('./locales/english/intro.json'),
metaTags: require('./locales/english/meta-tags.json')
}
},
ns: ['translations', 'trending', 'intro', 'metaTags'],
defaultNS: 'translations',
returnObjects: true,
// Uncomment the next line for debug logging
// debug: true,
interpolation: {
escapeValue: false
},
react: {
wait: true
}
});
i18n.languages = clientLocale;
export default i18n;