keycloak-scim/src/i18n.ts

30 lines
639 B
TypeScript
Raw Normal View History

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