movie-web/src/setup/i18n.ts

31 lines
746 B
TypeScript
Raw Normal View History

2023-01-08 15:42:35 +01:00
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
import LanguageDetector from "i18next-browser-languagedetector";
2022-12-17 08:02:57 +00:00
// Languages
import en from "./locales/en/translation.json";
2022-12-17 08:02:57 +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({
fallbackLng: "en",
resources: {
en: {
translation: en,
},
},
2022-12-17 08:02:57 +00:00
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
2023-01-08 15:42:35 +01:00
},
2022-12-17 08:02:57 +00:00
});
2023-01-08 15:42:35 +01:00
export default i18n;