frontend, localization, bugfix

This commit is contained in:
2023-01-15 00:32:17 +01:00
parent 0418118841
commit 1d6ff17994
18 changed files with 297 additions and 84 deletions

View File

@@ -4,15 +4,60 @@ return [
"something_went_wrong" => "Etwas ist schief gelaufen",
"error_occurred" => "Ein Fehler ist aufgetreten",
"retry" => "Erneut versuchen",
"Go back" => "Zurück",
"go_back" => "Zurück",
"save" => "Speichern",
"saving" => "Speichere",
"unsaved_changes" => "Du hast nicht gespeicherte Änderungen",
"new" => "Neu",
"edit" => "Bearbeiten",
"submitting" => "Übermittle",
"submit" => "Absenden",
"request" => "Anfordern",
"cancel" => "Abbrechen",
"confirm" => "Bestätigen",
"language" => "Sprache",
"loading" => "Laden",
"logout" => "Ausloggen",
"noscript" => "Sie müssen Javascript aktivieren um diese Anwendung zu benutzen",
"name" => "Name",
"type" => "Typ",
"size" => "Größe",
"last_modified" => "Zuletzt geändert",
# dialog / actions
"action" => "Aktion",
"title" => "Titel",
"message" => "Nachricht",
"rename" => "Umbenennen",
"move" => "Verschieben",
"delete" => "Löschen",
"info" => "Info",
"download" => "Herunterladen",
"download_all" => "Alles Herunterladen",
"upload" => "Hochladen",
"uploading" => "Lade hoch",
"overwrite" => "Überschreiben",
"reload" => "Aktualisieren",
# data table
"showing_x_of_y_entries" => "Zeige %d von %d Einträgen",
"controls" => "Steuerung",
# date / time
"date" => "Datum",
"start_date" => "Startdatum",
"end_date" => "Enddatum",
"date_format" => "d.m.Y",
"date_time_format" => "d.m.Y H:i",
"date_time_format_precise" => "d.m.Y H:i:s",
"time_format" => "H:i",
"time_format_precise" => "H:i:s",
"datefns_date_format" => "dd.MM.yyyy",
"datefns_time_format" => "HH:mm",
"datefns_time_format_precise" => "HH:mm:ss",
"datefns_datetime_format" => "dd.MM.yyyy HH:mm",
"datefns_datetime_format_precise" => "dd.MM.yyyy HH:mm:ss",
# API
"no_api_key_registered" => "Kein gültiger API-Schlüssel registriert",
];

View File

@@ -3,16 +3,61 @@
return [
"something_went_wrong" => "Something went wrong",
"error_occurred" => "An error occurred",
"retry" => "Retry",
"go_back" => "Go Back",
"submitting" => "Submitting",
"submit" => "Submit",
"request" => "Request",
"unsaved_changes" => "You have unsaved changed",
"new" => "New",
"language" => "Language",
"loading" => "Loading",
"logout" => "Logout",
"noscript" => "You need Javascript enabled to run this app",
"name" => "Name",
"type" => "Type",
"size" => "Size",
"last_modified" => "Last Modified",
# dialog / actions
"action" => "Action",
"title" => "Title",
"message" => "Message",
"edit" => "Edit",
"submitting" => "Submitting",
"submit" => "Submit",
"request" => "Request",
"cancel" => "Cancel",
"confirm" => "Confirm",
"retry" => "Retry",
"go_back" => "Go Back",
"save" => "Save",
"saving" => "Saving",
"delete" => "Delete",
"info" => "Info",
"download" => "Download",
"download_all" => "Download All",
"upload" => "Upload",
"uploading" => "Uploading",
"rename" => "Rename",
"move" => "Move",
"overwrite" => "Overwrite",
"reload" => "Reload",
# data table
"showing_x_of_y_entries" => "Showing %d of %d entries",
"controls" => "Controls",
# date / time
"date" => "Date",
"start_date" => "Start Date",
"end_date" => "End Date",
"date_format" => "m/d/Y",
"date_time_format" => "m/d/Y G:i A",
"date_time_format_precise" => "m/d/Y G:i:s A",
"time_format" => "G:i A",
"time_format_precise" => "G:i:s A",
"datefns_date_format" => "MM/dd/yyyy",
"datefns_time_format" => "p",
"datefns_time_format_precise" => "pp",
"datefns_datetime_format" => "MM/dd/yyyy p",
"datefns_datetime_format_precise" => "MM/dd/yyyy pp",
# API
"no_api_key_registered" => "No valid API-Key registered",
];