first commit
This commit is contained in:
28
src/shared/config/i18n/index.ts
Normal file
28
src/shared/config/i18n/index.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import i18n from 'i18next';
|
||||
import { initReactI18next } from 'react-i18next';
|
||||
import LanguageDetector from 'i18next-browser-languagedetector';
|
||||
|
||||
import uz from './locales/uz/translation.json';
|
||||
import ki from './locales/ki/translation.json';
|
||||
import ru from './locales/ru/translation.json';
|
||||
|
||||
i18n
|
||||
.use(LanguageDetector)
|
||||
.use(initReactI18next)
|
||||
.init({
|
||||
resources: {
|
||||
uz: { translation: uz },
|
||||
ru: { translation: ru },
|
||||
ki: { translation: ki },
|
||||
},
|
||||
fallbackLng: 'uz',
|
||||
interpolation: {
|
||||
escapeValue: false,
|
||||
},
|
||||
detection: {
|
||||
order: ['localStorage', 'navigator'],
|
||||
caches: ['localStorage'],
|
||||
},
|
||||
});
|
||||
|
||||
export default i18n;
|
||||
Reference in New Issue
Block a user