22 lines
1.5 KiB
Python
22 lines
1.5 KiB
Python
"""German translations for public structured documentation metadata."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
GERMAN_STRUCTURED_TRANSLATIONS: dict[str, dict[str, Any]] = {'tickets.module-boundary': {'consequence_classes': {'canonical_store': 'Tickets ist der einzige '
|
|
'betriebsbereite '
|
|
'Ticketshop; Helpdesk '
|
|
'liefert Richtlinien und '
|
|
'Warteschlangensemantik.',
|
|
'case_boundary': 'Fall Eskalation schafft '
|
|
'eine stabile auditierbare '
|
|
'Verbindung und konvertiert '
|
|
'oder kopiert nie '
|
|
'Ticket-Historie.',
|
|
'soft_delete': 'Die Löschung verbirgt die '
|
|
'aktuelle Arbeit, bewahrt aber '
|
|
'unveränderliche Nachweise der '
|
|
'Rechenschaftspflicht.'}}}
|