File size: 1,341 Bytes
219639b 9d25a00 42fe171 219639b 9d25a00 219639b 9d25a00 219639b 9d25a00 42fe171 219639b 4d610b4 219639b 4d610b4 219639b 9d25a00 219639b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
import i18n from 'i18next'
import { initReactI18next } from 'react-i18next'
import { useSettingsStore } from '@/stores/settings'
import en from './locales/en.json'
import zh from './locales/zh.json'
import fr from './locales/fr.json'
import ar from './locales/ar.json'
import zh_TW from './locales/zh_TW.json'
const getStoredLanguage = () => {
try {
const settingsString = localStorage.getItem('settings-storage')
if (settingsString) {
const settings = JSON.parse(settingsString)
return settings.state?.language || 'en'
}
} catch (e) {
console.error('Failed to get stored language:', e)
}
return 'en'
}
i18n
.use(initReactI18next)
.init({
resources: {
en: { translation: en },
zh: { translation: zh },
fr: { translation: fr },
ar: { translation: ar },
zh_TW: { translation: zh_TW }
},
lng: getStoredLanguage(), // Use stored language settings
fallbackLng: 'en',
interpolation: {
escapeValue: false
},
// Configuration to handle missing translations
returnEmptyString: false,
returnNull: false,
})
// Subscribe to language changes
useSettingsStore.subscribe((state) => {
const currentLanguage = state.language
if (i18n.language !== currentLanguage) {
i18n.changeLanguage(currentLanguage)
}
})
export default i18n
|