Skip to content

Commit

Permalink
Add translation for oid4vc protocol name
Browse files Browse the repository at this point in the history
Fixes keycloak#30286

Signed-off-by: Thomas Darimont <[email protected]>
  • Loading branch information
thomasdarimont authored and ahus1 committed Jun 12, 2024
1 parent c7361cc commit 60ebce8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions js/apps/admin-ui/src/clients/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 60ebce8

Please sign in to comment.