feat(i18n): add Spanish (es) translation

Adds complete Spanish locale with 964 translated strings. Registered in i18n.ts, added to language dropdown in Settings. 8 languages total.
This commit is contained in:
Kveld.
2026-04-12 06:25:54 -03:00
committed by GitHub
parent 1a2352009b
commit 8f18f73b33
4 changed files with 973 additions and 5 deletions
+5 -3
View File
@@ -3,10 +3,11 @@ import { initReactI18next } from 'react-i18next';
import { deTranslation } from './locales/de';
import { enTranslation } from './locales/en';
import { frTranslation } from './locales/fr';
import { nbTranslation } from './locales/nb';
import { nlTranslation } from './locales/nl';
import { ruTranslation } from './locales/ru';
import { zhTranslation } from './locales/zh';
import { nbTranslation } from './locales/nb';
import { ruTranslation } from './locales/ru';
import { nlTranslation } from './locales/nl';
import { esTranslation } from './locales/es';
const savedLanguage = localStorage.getItem('psysonic_language') || 'en';
@@ -16,6 +17,7 @@ i18n
resources: {
en: { translation: enTranslation },
de: { translation: deTranslation },
es: { translation: esTranslation },
fr: { translation: frTranslation },
nl: { translation: nlTranslation },
zh: { translation: zhTranslation },