31 lines
954 B
JavaScript
31 lines
954 B
JavaScript
import i18n from "i18next";
|
|
import detector from "i18next-browser-languagedetector";
|
|
import { initReactI18next } from "react-i18next";
|
|
import en from "./translations/en.json";
|
|
import lv from "./translations/lv.json";
|
|
|
|
const resources = {
|
|
en: {
|
|
translation: en,
|
|
},
|
|
lv: {
|
|
translation: lv,
|
|
},
|
|
};
|
|
|
|
i18n
|
|
.use(detector)
|
|
.use(initReactI18next) // passes i18n down to react-i18next
|
|
.init({
|
|
resources,
|
|
lng: "en", // language to use, more information here: https://www.i18next.com/overview/configuration-options#languages-namespaces-resources
|
|
// you can use the i18n.changeLanguage function to change the language manually: https://www.i18next.com/overview/api#changelanguage
|
|
// if you're using a language detector, do not define the lng option
|
|
fallbackLng: "en", // use en if detected lng is not available
|
|
|
|
interpolation: {
|
|
escapeValue: false, // react already safes from xss
|
|
},
|
|
});
|
|
|
|
export default i18n;
|