Presupuestador_web/client/src/lib/i18n.ts

30 lines
813 B
TypeScript
Raw Normal View History

2024-06-09 20:04:46 +00:00
import i18n from "i18next";
import LanguageDetector from "i18next-browser-languagedetector";
import { initReactI18next } from "react-i18next";
import catResources from "../locales/ca.json";
import enResources from "../locales/en.json";
import esResources from "../locales/es.json";
i18n
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
debug: true,
fallbackLng: "en",
interpolation: {
escapeValue: false,
},
resources: {
ca: catResources,
en: enResources,
es: esResources,
},
});
export default i18n;