french translation

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

View File

@@ -154,6 +154,7 @@ ORDER BY
{ value: 'cs', label: 'Čeština' },
{ value: 'sk', label: 'Slovenčina' },
{ value: 'de', label: 'Deutsch' },
{ value: 'fr', label: 'Français' },
]}
on:change={() => {
showModal(ConfirmModal, {

View File

@@ -1,6 +1,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 MessageFormat, { MessageFunction } from '@messageformat/core';
import { getStringSettingsValue } from './settings/settingsTools';
@@ -10,6 +11,7 @@ const translations = {
cs,
sk,
de,
fr,
};
const supportedLanguages = Object.keys(translations);