first commit

This commit is contained in:
Samandar Turgunboyev
2025-09-23 17:38:49 +05:00
commit a5baccf106
81 changed files with 11196 additions and 0 deletions

View 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;

View File

@@ -0,0 +1,4 @@
{
"welcome": "Kiril. Bizning saytga xush kelibsiz",
"language": "Til"
}

View File

@@ -0,0 +1,4 @@
{
"welcome": "Rus. Bizning saytga xush kelibsiz",
"language": "Til"
}

View File

@@ -0,0 +1,4 @@
{
"welcome": "Uzbek. Bizning saytga xush kelibsiz",
"language": "Til"
}

View File

@@ -0,0 +1,5 @@
export enum LanguageRoutes {
UZ = 'uz', // o'zbekcha
RU = 'ru', // ruscha
KI = 'ki', // kirilcha
}