keycloak-scim/src/i18n.ts

27 lines
523 B
TypeScript
Raw Normal View History

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