fix localization
This commit is contained in:
parent
76f47f17f2
commit
f8d325b3f0
2 changed files with 4 additions and 2 deletions
|
@ -72,7 +72,9 @@ export const UserConsents = () => {
|
|||
|
||||
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
||||
titleKey: "users:revokeClientScopesTitle",
|
||||
messageKey: t("users:revokeClientScopes") + selectedClient?.clientId + "?",
|
||||
messageKey: t("users:revokeClientScopes", {
|
||||
clientId: selectedClient?.clientId,
|
||||
}),
|
||||
continueButtonLabel: "common:delete",
|
||||
continueButtonVariant: ButtonVariant.danger,
|
||||
onConfirm: async () => {
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"whoWillAppearPopoverText": "Groups are hierarchical. When you select Direct Membership, you see only the child group that the user joined. Ancestor groups are not included.",
|
||||
"revoke": "Revoke",
|
||||
"revokeClientScopesTitle": "Revoke all granted client scopes?",
|
||||
"revokeClientScopes": "Are you sure you want to revoke all granted client scopes for ",
|
||||
"revokeClientScopes": "Are you sure you want to revoke all granted client scopes for {{clientId}}?",
|
||||
"deleteGrantsSuccess": "Grants successfully revoked.",
|
||||
"deleteGrantsError": "Error deleting grants."
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue