dorfteich/packages/shared/i18n/de/editor.json
Claude Sonnet 5 a645763679
All checks were successful
CD / Build and push images (push) Successful in 2m5s
CI / Lint, typecheck, test (push) Successful in 1m45s
CI / Auth e2e pack (push) Successful in 1m50s
CI / Build container images (push) Has been skipped
CD / Deploy to Test (push) Successful in 8s
CD / Smoke tests against Test (push) Successful in 1m11s
CD / Promote to Int (push) Successful in 10s
Add page trash: soft delete, restore, and purge job (#31)
Backend: a generic maintenance-job scheduler (SchedulerService, `jobs`
table) that any later maintenance job registers with instead of
growing its own timer loop. Due-ness and the run-mutex both live in
the DB row (`lastRunAt` survives a restart; claiming a due job is one
atomic `UPDATE ... WHERE status != 'RUNNING'`), and an injectable
ClockService lets tests simulate retention elapsing without waiting or
faking the global clock.

Trash endpoints: GET /ponds/:id/trash (list), POST /pages/:id/restore,
DELETE /pages/:id/purge (manual, bypasses retention) — all sharing the
same purge logic as the scheduled daily job (default 30-day retention,
new trash.retentionDays instance setting). Purging deletes a page's
content cache, update log, and attachment files/quota; page_versions
is a placeholder until M3 exists. Direct navigation to a trashed page
now 404s with a distinguishable `page_trashed` code for editors (a
plain 404 for everyone else) instead of the generic not-found.

Attachment.pageId — added in #27 but never wired up — now gets set on
every page state save to whichever page's document currently embeds
the file, which is what lets purge find a page's files.

Frontend: a per-pond trash view (restore/purge), a "move to trash"
action with confirmation in the page menu, and a trash link in the
sidebar for pond owners. Also fixes react-query retrying 4xx responses
for several seconds by default, which was masking the trash-hint 404
in the UI (and would have affected any other not-found/permission
error the same way).

Closes #31
2026-07-08 12:48:17 +02:00

89 lines
2.8 KiB
JSON

{
"title": {
"placeholder": "Unbenannte Seite"
},
"mode": {
"edit": "Bearbeiten",
"view": "Lesen",
"toggleToEdit": "In den Bearbeitungsmodus wechseln",
"toggleToView": "In den Lesemodus wechseln"
},
"save": {
"saved": "Gespeichert",
"saving": "Speichert …",
"error": "Speichern fehlgeschlagen, erneuter Versuch …",
"unsavedTitle": "Titel wird gespeichert …"
},
"toolbar": {
"paragraph": "Absatz",
"heading1": "Überschrift 1",
"heading2": "Überschrift 2",
"heading3": "Überschrift 3",
"heading4": "Überschrift 4",
"bold": "Fett",
"italic": "Kursiv",
"code": "Inline-Code",
"strikethrough": "Durchgestrichen",
"bulletList": "Aufzählungsliste",
"orderedList": "Nummerierte Liste",
"taskList": "Aufgabenliste",
"blockquote": "Zitat",
"codeBlock": "Codeblock",
"horizontalRule": "Trennlinie",
"image": "Bild einfügen",
"undo": "Rückgängig",
"redo": "Wiederholen",
"link": {
"add": "Link hinzufügen",
"edit": "URL bearbeiten",
"remove": "Link entfernen",
"openNewTab": "In neuem Tab öffnen",
"urlLabel": "Link-URL",
"apply": "Übernehmen",
"cancel": "Abbrechen",
"invalidProtocol": "Dieser Link-Typ ist nicht erlaubt."
},
"table": {
"insert": "Tabelle einfügen",
"addColumnBefore": "Spalte davor einfügen",
"addColumnAfter": "Spalte danach einfügen",
"deleteColumn": "Spalte löschen",
"addRowBefore": "Zeile davor einfügen",
"addRowAfter": "Zeile danach einfügen",
"deleteRow": "Zeile löschen",
"toggleHeaderRow": "Kopfzeile umschalten",
"deleteTable": "Tabelle löschen"
}
},
"image": {
"uploading": "Bild wird hochgeladen …",
"uploadFailed": "Bild-Upload fehlgeschlagen",
"altLabel": "Alt-Text",
"widthLabel": "Bildbreite",
"width": {
"small": "Klein",
"medium": "Mittel",
"full": "Voll"
}
},
"page": {
"copyMarkdown": "Als Markdown kopieren",
"markdownCopied": "Kopiert!",
"markdownCopyFailed": "Kopieren fehlgeschlagen",
"downloadMarkdown": "Als Markdown herunterladen",
"delete": "In den Papierkorb verschieben",
"deleteConfirm": "Diese Seite in den Papierkorb verschieben? Du kannst sie über den Papierkorb des Teichs wiederherstellen."
},
"trash": {
"link": "Papierkorb",
"title": "Papierkorb — {{pond}}",
"empty": "Der Papierkorb ist leer.",
"deletedAt": "Gelöscht am {{date}}",
"restore": "Wiederherstellen",
"purge": "Endgültig löschen",
"purgeConfirm": "Diese Seite und ihre Dateien endgültig löschen? Das kann nicht rückgängig gemacht werden.",
"pageTrashedHint": "Diese Seite wurde in den Papierkorb verschoben.",
"restoreLink": "Im Papierkorb ansehen"
}
}