20 lines
982 B
TypeScript
20 lines
982 B
TypeScript
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 };
|