dorfteich/packages/shared/i18n/en/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.4 KiB
JSON

{
"settings": {
"title": "Labels",
"description": "Organize pages with hierarchical labels. Sub-labels inherit their parent when filtering.",
"newRootPlaceholder": "New label name",
"add": "Add label",
"addChild": "Add sub-label",
"rename": "Rename",
"nameLabel": "Label name",
"colorLabel": "Label colour",
"move": "Move",
"moveTo": "Move to",
"root": "Top level",
"delete": "Delete",
"save": "Save",
"cancel": "Cancel",
"empty": "No labels yet. Add one to start organizing pages.",
"deleteConfirm": "Delete this label and all its sub-labels?",
"detachConfirm": "This label or its sub-labels are assigned to {{count}} page(s). Delete anyway and remove those assignments?",
"childrenCount": "{{count}} sub-labels"
},
"picker": {
"open": "Labels",
"title": "Labels",
"close": "Close",
"searchPlaceholder": "Search labels",
"empty": "This pond has no labels yet.",
"manageHint": "Manage labels in pond settings.",
"noMatches": "No labels match your search."
},
"filter": {
"label": "Filter by label",
"toggle": "Filter by label",
"clear": "Clear filter",
"none": "No pages match the selected labels.",
"active": "{{count}} label filter active",
"active_other": "{{count}} label filters active"
},
"chip": {
"ariaLabel": "Label: {{name}}"
},
"link": "Pond settings"
}