My code is this but when I go to localhost/fr ,it is not detecting the language from the path? what am i doing wrong here?
import { initReactI18next } from "react-i18next";
import LanguageDetector from "i18next-browser-languagedetector";
import HttpApi from "i18next-http-backend";
i18n
.use(HttpApi)
.use(LanguageDetector)
.use(initReactI18next)
.init({
supportedLngs: ["en", "fr"],
// lng: "en",
fallbackLng: "en",
detection: {
order: ["path", "querystring", "cookie"],
lookupFromPathIndex: 0,
lookupQuerystring: "lng",
caches: ["cookie"],
},
backend: {
loadPath: "/assets/locales/{{lng}}/translation.json",
},
// react: { useSuspense: false },
});
export default i18n;
You would need to use URL in the following way localhost?lng=fr
From LanguageDetector Package documentation
I tried using localhost:3000?lng=fr and that was working for me. let me know if that works for you. localhost:3000 is the URL on which create react app is running on.