spanish translation

This commit is contained in:
SPRINX0\prochazka
2025-11-18 14:56:38 +01:00
parent 60c10a69a3
commit 305796af53
3 changed files with 910 additions and 0 deletions

View File

@@ -155,6 +155,7 @@ ORDER BY
{ value: 'sk', label: 'Slovenčina' },
{ value: 'de', label: 'Deutsch' },
{ value: 'fr', label: 'Français' },
{ value: 'es', label: 'Español' },
]}
on:change={() => {
showModal(ConfirmModal, {

View File

@@ -2,6 +2,7 @@ import cs from '../../../translations/cs.json';
import sk from '../../../translations/sk.json';
import de from '../../../translations/de.json';
import fr from '../../../translations/fr.json';
import es from '../../../translations/es.json';
import MessageFormat, { MessageFunction } from '@messageformat/core';
import { getStringSettingsValue } from './settings/settingsTools';
@@ -12,6 +13,7 @@ const translations = {
sk,
de,
fr,
es,
};
const supportedLanguages = Object.keys(translations);