dorfteich/packages/shared/i18n/de/labels.json
Claude Opus 4.8 03e72242d3
All checks were successful
CD / Build and push images (push) Successful in 2m53s
CI / Lint, typecheck, test (push) Successful in 2m8s
CI / Auth e2e pack (push) Successful in 2m31s
CI / Build container images (push) Has been skipped
CD / Deploy to Test (push) Successful in 9s
CD / Smoke tests against Test (push) Successful in 1m13s
CD / Promote to Int (push) Successful in 11s
Add label UI: tree management, page assignment, and sidebar filter (#44)
Build the M4 label experience on top of the #43 label API.

- shared: `flattenLabelTree` (tree → depth-first list) for chip lookup,
  filtering, and the picker; `PageListItemView` adds each page's `labelIds`
  to the sidebar list response.
- api: `GET /ponds/:id/pages` now includes `labelIds` per page (one grouped
  query), so the sidebar can render chips and filter without extra calls.
- web:
  - Pond settings page (`/p/:pondSlug/settings`) with a `LabelManager`
    tree: inline create, rename, recolour (`<input type=color>`), move via a
    parent picker that excludes the label's own subtree, and delete that
    confirms then force-detaches assigned pages. Every control is a native
    button/input/select — the tree is fully keyboard-operable.
  - `LabelPicker` panel on the page editor: searchable, hierarchy-indented
    multi-select that assigns/unassigns immediately and refreshes the page's
    labels and the sidebar.
  - Sidebar: colored label chips on page entries (readable text via a
    luminance-based contrast helper) and a descendant-inclusive label filter
    (selecting a parent matches pages tagged with its children, via the
    shared `collectSubtreeIds`). Owner link to pond settings.
  - i18n `labels` namespace (de + en).
- e2e `labels.spec.ts` (new CI pack): full lifecycle from the settings UI
  and picker-assign + parent-filter-includes-child. Selectors are
  language-independent because the UI language follows the user's locale.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PGdhRiwU1WRL4XxJfZYipY
2026-07-09 11:41:42 +02:00

44 lines
1.5 KiB
JSON

{
"settings": {
"title": "Labels",
"description": "Seiten mit hierarchischen Labels organisieren. Unter-Labels werden beim Filtern mit einbezogen.",
"newRootPlaceholder": "Name des neuen Labels",
"add": "Label hinzufügen",
"addChild": "Unter-Label hinzufügen",
"rename": "Umbenennen",
"nameLabel": "Label-Name",
"colorLabel": "Label-Farbe",
"move": "Verschieben",
"moveTo": "Verschieben nach",
"root": "Oberste Ebene",
"delete": "Löschen",
"save": "Speichern",
"cancel": "Abbrechen",
"empty": "Noch keine Labels. Füge eines hinzu, um Seiten zu organisieren.",
"deleteConfirm": "Dieses Label und alle Unter-Labels löschen?",
"detachConfirm": "Diesem Label oder seinen Unter-Labels sind {{count}} Seite(n) zugeordnet. Trotzdem löschen und die Zuordnungen entfernen?",
"childrenCount": "{{count}} Unter-Labels"
},
"picker": {
"open": "Labels",
"title": "Labels",
"close": "Schließen",
"searchPlaceholder": "Labels suchen",
"empty": "Dieser Teich hat noch keine Labels.",
"manageHint": "Labels in den Teich-Einstellungen verwalten.",
"noMatches": "Keine Labels passen zur Suche."
},
"filter": {
"label": "Nach Label filtern",
"toggle": "Nach Label filtern",
"clear": "Filter zurücksetzen",
"none": "Keine Seiten passen zu den gewählten Labels.",
"active": "{{count}} Label-Filter aktiv",
"active_other": "{{count}} Label-Filter aktiv"
},
"chip": {
"ariaLabel": "Label: {{name}}"
},
"link": "Teich-Einstellungen"
}