docs: complete German structured documentation
Module Package Release / publish-packages (push) Successful in 12s
Module Package Release / publish-packages (push) Successful in 12s
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "govoplan-dataflow"
|
name = "govoplan-dataflow"
|
||||||
version = "0.1.21"
|
version = "0.1.22"
|
||||||
description = "Governed graphical and SQL data pipelines for GovOPlaN."
|
description = "Governed graphical and SQL data pipelines for GovOPlaN."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
__version__ = "0.1.21"
|
__version__ = "0.1.22"
|
||||||
|
|||||||
@@ -0,0 +1,95 @@
|
|||||||
|
"""German translations for public structured documentation metadata."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
|
||||||
|
GERMAN_STRUCTURED_TRANSLATIONS: dict[str, dict[str, Any]] = {'dataflow.execution-and-recovery': {'consequence_classes': {'cancel_run': 'Stornierung von '
|
||||||
|
'Anfragen; bereits '
|
||||||
|
'anerkannte externe '
|
||||||
|
'Effekte können '
|
||||||
|
'verbleiben.',
|
||||||
|
'promote_revision': 'Macht eine '
|
||||||
|
'unveränderliche '
|
||||||
|
'Revision in '
|
||||||
|
'einer höheren '
|
||||||
|
'Ausführungsumgebung '
|
||||||
|
'geeignet.',
|
||||||
|
'publish_output': 'Erstellt oder '
|
||||||
|
'aktualisiert eine '
|
||||||
|
'geregelte '
|
||||||
|
'Datenquelle und '
|
||||||
|
'fügt eine '
|
||||||
|
'Materialisierung '
|
||||||
|
'hinzu.',
|
||||||
|
'queue_run': 'Erstellt einen '
|
||||||
|
'dauerhaften asynchronen '
|
||||||
|
'Befehls- und '
|
||||||
|
'Autorisierungsnachweis.'}},
|
||||||
|
'dataflow.reference.fields-and-consequences': {'consequence_classes': {'configure_trigger': 'Erstellt '
|
||||||
|
'oder '
|
||||||
|
'ändert '
|
||||||
|
'einen '
|
||||||
|
'Automatisierungsbefehl '
|
||||||
|
'mit '
|
||||||
|
'Revisions- '
|
||||||
|
'und '
|
||||||
|
'Autorisierungsnachweisen.',
|
||||||
|
'delete_pipeline': 'Verhindert '
|
||||||
|
'die '
|
||||||
|
'zukünftige '
|
||||||
|
'Verwendung, '
|
||||||
|
'während '
|
||||||
|
'beibehaltene '
|
||||||
|
'Nachweise '
|
||||||
|
'geregelt '
|
||||||
|
'bleiben.',
|
||||||
|
'derive_copy': 'Erstellt '
|
||||||
|
'eine '
|
||||||
|
'separat '
|
||||||
|
'verwaltete '
|
||||||
|
'Kopie, die '
|
||||||
|
'an die '
|
||||||
|
'Quellrevision '
|
||||||
|
'und den '
|
||||||
|
'Hash '
|
||||||
|
'gebunden '
|
||||||
|
'ist.',
|
||||||
|
'rebase_copy': 'Hängt die '
|
||||||
|
'genaue '
|
||||||
|
'überprüfte '
|
||||||
|
'Quellrevision '
|
||||||
|
'an eine '
|
||||||
|
'Scope-Kopie '
|
||||||
|
'an, '
|
||||||
|
'zeichnet '
|
||||||
|
'die '
|
||||||
|
'Herkunft '
|
||||||
|
'des '
|
||||||
|
'Reviewers '
|
||||||
|
'auf und '
|
||||||
|
'gibt sie '
|
||||||
|
'in den '
|
||||||
|
'Entwurf '
|
||||||
|
'zurück.',
|
||||||
|
'record_decision': 'Fügt '
|
||||||
|
'eine '
|
||||||
|
'vom '
|
||||||
|
'handelnde '
|
||||||
|
'Person '
|
||||||
|
'zugewiesene '
|
||||||
|
'unveränderliche '
|
||||||
|
'Entscheidungsrevision '
|
||||||
|
'gegen '
|
||||||
|
'einen '
|
||||||
|
'genauen '
|
||||||
|
'Eingabe-Hash '
|
||||||
|
'an.',
|
||||||
|
'save_revision': 'Fügt '
|
||||||
|
'eine '
|
||||||
|
'unveränderliche '
|
||||||
|
'Überarbeitung '
|
||||||
|
'der '
|
||||||
|
'Pipelinedefinition '
|
||||||
|
'an.'}}}
|
||||||
@@ -1,5 +1,8 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from govoplan_core.core.modules import with_documentation_structured_translations
|
||||||
|
from govoplan_dataflow.backend.german_structured_documentation import GERMAN_STRUCTURED_TRANSLATIONS
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from govoplan_core.core.module_guards import (
|
from govoplan_core.core.module_guards import (
|
||||||
@@ -60,7 +63,7 @@ from govoplan_dataflow.backend.german_documentation import (
|
|||||||
|
|
||||||
MODULE_ID = "dataflow"
|
MODULE_ID = "dataflow"
|
||||||
MODULE_NAME = "Dataflow"
|
MODULE_NAME = "Dataflow"
|
||||||
MODULE_VERSION = "0.1.21"
|
MODULE_VERSION = "0.1.22"
|
||||||
|
|
||||||
READ_SCOPE = "dataflow:pipeline:read"
|
READ_SCOPE = "dataflow:pipeline:read"
|
||||||
WRITE_SCOPE = "dataflow:pipeline:write"
|
WRITE_SCOPE = "dataflow:pipeline:write"
|
||||||
@@ -799,6 +802,11 @@ manifest = ModuleManifest(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
manifest = with_documentation_structured_translations(
|
||||||
|
manifest, locale="de", translations=GERMAN_STRUCTURED_TRANSLATIONS
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def get_manifest() -> ModuleManifest:
|
def get_manifest() -> ModuleManifest:
|
||||||
return manifest
|
return manifest
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@govoplan/dataflow-webui",
|
"name": "@govoplan/dataflow-webui",
|
||||||
"version": "0.1.21",
|
"version": "0.1.22",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user