import i18n from 'i18next'; import { initReactI18next } from 'react-i18next'; import LanguageDetector from 'i18next-browser-languagedetector'; const localeLoaders: Record Promise<{ default: Record }>> = { ru: () => import('./locales/ru.json'), en: () => import('./locales/en.json'), zh: () => import('./locales/zh.json'), fa: () => import('./locales/fa.json'), }; const SUPPORTED_LANGS = Object.keys(localeLoaders); const FALLBACK_LNG = 'ru'; const loadedLanguages = new Set(); async function loadLanguage(lng: string): Promise { if (loadedLanguages.has(lng)) return; const loader = localeLoaders[lng]; if (!loader) return; const mod = await loader(); i18n.addResourceBundle(lng, 'translation', mod.default, true, true); loadedLanguages.add(lng); } i18n .use(LanguageDetector) .use(initReactI18next) .init({ fallbackLng: FALLBACK_LNG, supportedLngs: SUPPORTED_LANGS, partialBundledLanguages: true, detection: { order: ['localStorage', 'navigator'], caches: ['localStorage'], lookupLocalStorage: 'cabinet_language', }, interpolation: { escapeValue: false, }, react: { useSuspense: false, }, }); // Load detected language + fallback on startup const detectedLng = i18n.language?.split('-')[0] || FALLBACK_LNG; const langsToLoad = [FALLBACK_LNG, ...(detectedLng !== FALLBACK_LNG ? [detectedLng] : [])]; Promise.all(langsToLoad.map(loadLanguage)); // Lazy-load on language change i18n.on('languageChanged', (lng: string) => { const code = lng.split('-')[0]; loadLanguage(code); }); export default i18n;