fixed message for disabling clients (#25672)
fixes: #25636 Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
parent
2a0ca1cb84
commit
6ea9df2cf2
2 changed files with 5 additions and 3 deletions
|
@ -17,7 +17,7 @@ secretHasExpired=Secret has expired, please generate a new one by clicking the "
|
|||
requiredRoles=Please add at least one role.
|
||||
addLdapWizardTitle=Add LDAP user federation provider
|
||||
wantAssertionsSignedHelp=Indicates whether this service provider expects a signed Assertion.
|
||||
disableConfirm=Are you sure you want to disable the provider '{{provider}}'
|
||||
disableConfirm=Are you sure you want to disable '{{name}}'
|
||||
eventTypes.CUSTOM_REQUIRED_ACTION.description=Custom required action
|
||||
flowName=Flow name
|
||||
userInfoResponseEncryptionContentEncryptionAlgorithm=User info response encryption content encryption algorithm
|
||||
|
@ -892,6 +892,8 @@ eventTypes.FEDERATED_IDENTITY_LINK_ERROR.name=Federated identity link error
|
|||
eventTypes.EXECUTE_ACTIONS.name=Execute actions
|
||||
encryptAssertions=Encrypt assertions
|
||||
disableConfirmTitle=Disable realm?
|
||||
disableConfirmTitleClient=Disable client?
|
||||
dirableConfirmClient=Are you sure you want to disable this client?
|
||||
custom=Custom Attribute...
|
||||
keyTab=Key tab
|
||||
addSamlProvider=Add SAML provider
|
||||
|
|
|
@ -94,8 +94,8 @@ const ClientDetailHeader = ({
|
|||
}: ClientDetailHeaderProps) => {
|
||||
const { t } = useTranslation();
|
||||
const [toggleDisableDialog, DisableConfirm] = useConfirmDialog({
|
||||
titleKey: "disableConfirmTitle",
|
||||
messageKey: "disableConfirm",
|
||||
titleKey: "disableConfirmClientTitle",
|
||||
messageKey: "disableConfirmClient",
|
||||
continueButtonLabel: "disable",
|
||||
onConfirm: () => {
|
||||
onChange(!value);
|
||||
|
|
Loading…
Reference in a new issue