Add translation for oid4vc protocol name

Fixes #30286

Signed-off-by: Thomas Darimont <thomas.darimont@googlemail.com>
This commit is contained in:
Thomas Darimont 2024-06-10 10:16:58 +02:00 committed by Alexander Schwartz
parent c7361ccf6e
commit 60ebce8d85
2 changed files with 3 additions and 0 deletions

View file

@ -491,6 +491,7 @@ loginWithEmailAllowed=Login with email
expireTime=Expire time
requestObject.request\ or\ request_uri=Request or Request URI
policyProvider.user=Define conditions for your permissions where a set of one or more users is permitted to access an object.
protocolTypes.oid4vc=OpenID for Verifiable Credentials
protocolTypes.openid-connect=OpenID Connect
clientTypeHelp='OpenID Connect' allows Clients to verify the identity of the End-User based on the authentication performed by an Authorization Server.'SAML' enables web-based authentication and authorization scenarios including cross-domain single sign-on (SSO) and uses security tokens containing assertions to pass information.
addOpenIdProvider=Add OpenID Connect provider

View file

@ -15,6 +15,8 @@ export const getProtocolName = (t: TFunction<"clients">, protocol: string) => {
return t("protocolTypes.openid-connect");
case "saml":
return t("protocolTypes.saml");
case "oid4vc":
return t("protocolTypes.oid4vc");
default:
return protocol;
}