33 lines
634 B
TypeScript
33 lines
634 B
TypeScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
import LanguageDetector from "i18next-browser-languagedetector";
|
|
|
|
const resources = {
|
|
en: {
|
|
translation: {
|
|
login: "Login",
|
|
},
|
|
},
|
|
fa: {
|
|
translation: {
|
|
login: "ورود",
|
|
},
|
|
},
|
|
};
|
|
|
|
i18n
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources,
|
|
lng: "fa", // مقدار زبان از کوکی خوانده میشود
|
|
fallbackLng: "fa",
|
|
interpolation: { escapeValue: false },
|
|
detection: {
|
|
order: ["cookie", "navigator"],
|
|
caches: ["cookie"],
|
|
},
|
|
});
|
|
|
|
export default i18n;
|