Fix language fallback

This commit is contained in:
Isra 2024-01-05 10:54:40 +01:00
parent 1d8d555578
commit ca4437f86a

View File

@ -10,7 +10,7 @@ const resources = Object.fromEntries(
Object.entries(locales).map((entry) => [entry[0], { translation: entry[1] }]),
);
i18n.use(initReactI18next).init({
fallbackLng: "en-US",
fallbackLng: "en",
resources,
interpolation: {
escapeValue: false, // not needed for react as it escapes by default