Add identity trust administration surfaces

This commit is contained in:
2026-08-04 01:04:39 +02:00
parent 0ffc8b6b0f
commit 9640ec29dd
16 changed files with 1143 additions and 10 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { PlatformTranslations } from "@govoplan/core-webui";
const en = {
"i18n:govoplan-identity-trust.identity_trust": "Identity trust",
"i18n:govoplan-identity-trust.device_trust": "Device trust",
"i18n:govoplan-identity-trust.identity_trust_administration": "Identity trust administration",
"i18n:govoplan-identity-trust.key_epochs": "Key epochs",
"i18n:govoplan-identity-trust.key_access_decisions": "Key-access decisions"
} as const;
const de: Record<keyof typeof en, string> = {
"i18n:govoplan-identity-trust.identity_trust": "Identitaetsvertrauen",
"i18n:govoplan-identity-trust.device_trust": "Geraetevertrauen",
"i18n:govoplan-identity-trust.identity_trust_administration": "Administration des Identitaetsvertrauens",
"i18n:govoplan-identity-trust.key_epochs": "Schluesselepochen",
"i18n:govoplan-identity-trust.key_access_decisions": "Schluesselzugriffsentscheidungen"
};
export const generatedTranslations: PlatformTranslations = { en, de };