74 lines
4.1 KiB
TypeScript
74 lines
4.1 KiB
TypeScript
import type { PlatformTranslations } from "@govoplan/core-webui";
|
|
|
|
const en = {
|
|
"i18n:govoplan-dashboard.dashboard.3f8b4df2": "Dashboard",
|
|
"i18n:govoplan-dashboard.summary": "Dashboard summary",
|
|
"i18n:govoplan-dashboard.library": "Widget library",
|
|
"i18n:govoplan-dashboard.grid": "Dashboard grid",
|
|
"i18n:govoplan-dashboard.widget_settings": "Widget settings",
|
|
"i18n:govoplan-dashboard.installed_modules_widget": "Active interface modules widget",
|
|
"i18n:govoplan-dashboard.loading_reason": "The saved Dashboard layout is still loading.",
|
|
"i18n:govoplan-dashboard.saving_reason": "The Dashboard layout is still being saved.",
|
|
"i18n:govoplan-dashboard.no_changes_reason": "There are no unsaved Dashboard changes.",
|
|
"i18n:govoplan-dashboard.invalid_widget_reason": "Complete the required widget settings with values inside their allowed ranges.",
|
|
"i18n:govoplan-dashboard.unsaved_layout_title": "Unsaved Dashboard layout",
|
|
"i18n:govoplan-dashboard.unsaved_layout_message": "Save or discard the Dashboard arrangement before leaving this page.",
|
|
"i18n:govoplan-dashboard.unsaved_widget_title": "Unapplied widget settings",
|
|
"i18n:govoplan-dashboard.unsaved_widget_message": "Apply or discard the widget settings before leaving this dialog.",
|
|
"Personal workspace assembled from installed module widgets.": "Personal workspace assembled from installed module widgets.",
|
|
"Refresh": "Refresh",
|
|
"Configure": "Configure",
|
|
"Cancel": "Cancel",
|
|
"Save layout": "Save layout",
|
|
"Saving...": "Saving...",
|
|
"Active interface modules": "Active interface modules",
|
|
"Available widgets": "Available widgets",
|
|
"On dashboard": "On dashboard",
|
|
"Layout": "Layout",
|
|
"Widget library": "Widget library",
|
|
"Search widgets": "Search widgets",
|
|
"Reset to module defaults": "Reset to module defaults",
|
|
"Widget size": "Widget size",
|
|
"Reset": "Reset",
|
|
"Apply": "Apply",
|
|
"Select an option": "Select an option",
|
|
"None": "None"
|
|
} as const;
|
|
|
|
const de: Record<keyof typeof en, string> = {
|
|
"i18n:govoplan-dashboard.dashboard.3f8b4df2": "Übersicht",
|
|
"i18n:govoplan-dashboard.summary": "Übersichtszusammenfassung",
|
|
"i18n:govoplan-dashboard.library": "Widget-Bibliothek",
|
|
"i18n:govoplan-dashboard.grid": "Übersichtsraster",
|
|
"i18n:govoplan-dashboard.widget_settings": "Widget-Einstellungen",
|
|
"i18n:govoplan-dashboard.installed_modules_widget": "Widget für aktive Oberflächenmodule",
|
|
"i18n:govoplan-dashboard.loading_reason": "Die gespeicherte Übersichtsanordnung wird noch geladen.",
|
|
"i18n:govoplan-dashboard.saving_reason": "Die Übersichtsanordnung wird noch gespeichert.",
|
|
"i18n:govoplan-dashboard.no_changes_reason": "Es gibt keine ungespeicherten Änderungen an der Übersicht.",
|
|
"i18n:govoplan-dashboard.invalid_widget_reason": "Füllen Sie die erforderlichen Widget-Einstellungen mit Werten innerhalb der erlaubten Bereiche aus.",
|
|
"i18n:govoplan-dashboard.unsaved_layout_title": "Ungespeicherte Übersichtsanordnung",
|
|
"i18n:govoplan-dashboard.unsaved_layout_message": "Speichern oder verwerfen Sie die Übersichtsanordnung, bevor Sie diese Seite verlassen.",
|
|
"i18n:govoplan-dashboard.unsaved_widget_title": "Nicht angewendete Widget-Einstellungen",
|
|
"i18n:govoplan-dashboard.unsaved_widget_message": "Wenden Sie die Widget-Einstellungen an oder verwerfen Sie sie, bevor Sie den Dialog verlassen.",
|
|
"Personal workspace assembled from installed module widgets.": "Persönlicher Arbeitsbereich aus Widgets der installierten Module.",
|
|
"Refresh": "Aktualisieren",
|
|
"Configure": "Konfigurieren",
|
|
"Cancel": "Abbrechen",
|
|
"Save layout": "Anordnung speichern",
|
|
"Saving...": "Speichert...",
|
|
"Active interface modules": "Aktive Oberflächenmodule",
|
|
"Available widgets": "Verfügbare Widgets",
|
|
"On dashboard": "Auf der Übersicht",
|
|
"Layout": "Anordnung",
|
|
"Widget library": "Widget-Bibliothek",
|
|
"Search widgets": "Widgets suchen",
|
|
"Reset to module defaults": "Auf Modulvorgaben zurücksetzen",
|
|
"Widget size": "Widget-Größe",
|
|
"Reset": "Zurücksetzen",
|
|
"Apply": "Anwenden",
|
|
"Select an option": "Option auswählen",
|
|
"None": "Keine"
|
|
};
|
|
|
|
export const generatedTranslations: PlatformTranslations = { en, de };
|