2020-09-01 14:51:59 +00:00
|
|
|
import i18n from "i18next";
|
|
|
|
import { initReactI18next } from "react-i18next";
|
2020-08-04 12:59:41 +00:00
|
|
|
// import backend from "i18next-http-backend";
|
|
|
|
|
2020-09-01 14:51:59 +00:00
|
|
|
import messages from "./messages.json";
|
2020-09-08 17:12:42 +00:00
|
|
|
import help from "./help.json";
|
2020-08-04 12:59:41 +00:00
|
|
|
|
|
|
|
const initOptions = {
|
2020-09-08 17:12:42 +00:00
|
|
|
ns: ["messages", "help"],
|
|
|
|
defaultNS: "messages",
|
|
|
|
resources: { ...messages, ...help },
|
2020-09-01 14:51:59 +00:00
|
|
|
lng: "en",
|
|
|
|
fallbackLng: "en",
|
2020-08-04 12:59:41 +00:00
|
|
|
saveMissing: true,
|
|
|
|
|
|
|
|
interpolation: {
|
|
|
|
escapeValue: false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
i18n
|
|
|
|
.use(initReactI18next)
|
|
|
|
// .use(backend)
|
|
|
|
.init(initOptions);
|
|
|
|
|
|
|
|
export { i18n, initOptions };
|