Add datasource quality and schema gates

This commit is contained in:
2026-08-04 11:23:14 +02:00
parent a6d5c9839d
commit 075d2fc087
16 changed files with 1305 additions and 10 deletions
+18 -2
View File
@@ -62,7 +62,15 @@ const en = {
"Publication state": "Publication state",
"Semantic definition": "Semantic definition",
"Freshness policy (JSON)": "Freshness policy (JSON)",
"Quality policy (JSON)": "Quality policy (JSON)"
"Quality policy (JSON)": "Quality policy (JSON)",
"Quality policy": "Quality policy",
"Policy hash": "Policy hash",
"Schema change": "Schema change",
"Local default": "Local default",
"Promotion blockers": "Promotion blockers",
"Review warnings": "Review warnings",
"All configured quality rules passed and no blocking schema change was detected.": "All configured quality rules passed and no blocking schema change was detected.",
"Schema comparison": "Schema comparison"
} as const;
const de: Record<keyof typeof en, string> = {
@@ -127,7 +135,15 @@ const de: Record<keyof typeof en, string> = {
"Publication state": "Veröffentlichungsstatus",
"Semantic definition": "Semantische Definition",
"Freshness policy (JSON)": "Aktualitätsrichtlinie (JSON)",
"Quality policy (JSON)": "Qualitätsrichtlinie (JSON)"
"Quality policy (JSON)": "Qualitätsrichtlinie (JSON)",
"Quality policy": "Qualitätsrichtlinie",
"Policy hash": "Richtlinien-Hash",
"Schema change": "Schemaänderung",
"Local default": "Lokaler Standard",
"Promotion blockers": "Übernahmehindernisse",
"Review warnings": "Prüfhinweise",
"All configured quality rules passed and no blocking schema change was detected.": "Alle konfigurierten Qualitätsregeln wurden erfüllt und es wurde keine blockierende Schemaänderung erkannt.",
"Schema comparison": "Schemavergleich"
};
export const generatedTranslations: PlatformTranslations = { en, de };