Adding French Language

This commit is contained in:
Gary SEUBE
2025-11-10 00:47:05 +01:00
parent 9ca7df6542
commit 18c7646bd3
3 changed files with 1580 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import zhTranslation from "../locales/zh/translation.json";
import deTranslation from "../locales/de/translation.json";
import ptbrTranslation from "../locales/pt-BR/translation.json";
import ruTranslation from "../locales/ru/translation.json";
import frTranslation from "../locales/fr/translation.json";
i18n
.use(LanguageDetector)
@@ -40,6 +41,9 @@ i18n
ru: {
translation: ruTranslation,
},
fr: {
translation: frTranslation,
},
},
interpolation: {

File diff suppressed because it is too large Load Diff

View File

@@ -19,6 +19,7 @@ const languages = [
nativeName: "Português Brasileiro",
},
{ code: "ru", name: "Russian", nativeName: "Русский" },
{ code: "fr", name: "French", nativeName: "Français" },
];
export function LanguageSwitcher() {