Presupuestador_web/client/src/locales/i18n.ts

30 lines
787 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";
2024-06-29 19:39:25 +00:00
import catResources from "./ca.json";
import enResources from "./en.json";
import esResources from "./es.json";
2024-06-09 20:04:46 +00:00
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({
2024-09-23 17:37:09 +00:00
debug: false,
2024-06-29 19:39:25 +00:00
fallbackLng: "es",
2024-06-09 20:04:46 +00:00
interpolation: {
escapeValue: false,
},
resources: {
ca: catResources,
en: enResources,
es: esResources,
},
});
export default i18n;