Files
spestexnika/i18n/index.ts
2025-10-04 12:55:44 +05:00

25 lines
587 B
TypeScript

import i18n from "i18next";
import { initReactI18next } from "react-i18next";
import Backend from "i18next-http-backend";
import LanguageDetector from "i18next-browser-languagedetector";
// import lanaguage files
import uzWords from "../public/locales/uz/common.json";
import enWords from "../public/locales/ru/common.json";
i18n
.use(Backend)
.use(LanguageDetector)
.use(initReactI18next)
.init({
resources: {
uz: { translation: uzWords },
en: { translation: enWords },
},
lng: "uz",
fallbackLng: "uz",
debug: true,
});
export default i18n;