cra-template-rb
Version:
The official React Boilerplate template for Create React App
39 lines (33 loc) • 1.12 kB
text/typescript
import i18next from 'i18next';
import { initReactI18next } from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
import en from './en/translation.json';
import de from './de/translation.json';
import { convertLanguageJsonToObject } from './translations';
export const translationsJson = {
en: {
translation: en,
},
de: {
translation: de,
},
};
// Create the 'translations' object to provide full intellisense support for the static json files.
convertLanguageJsonToObject(en);
export const i18n = i18next
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
resources: translationsJson,
fallbackLng: 'en',
debug:
process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test',
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},
});