* Changed temporaryDisabled to temporaryLocked * Changed temporaryDisabled to temporaryLocked Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
parent
eb7063df84
commit
e28277846d
2 changed files with 2 additions and 3 deletions
|
@ -43,7 +43,6 @@
|
|||
"unlockSuccess": "User successfully unlocked",
|
||||
"unlockError": "Could not unlock user due to {{error}}",
|
||||
"emailInvalid": "You must enter a valid email.",
|
||||
"temporaryDisabled": "Temporarily disabled",
|
||||
"notVerified": "Not verified",
|
||||
"requiredUserActions": "Required user actions",
|
||||
"addUser": "Add user",
|
||||
|
@ -71,7 +70,7 @@
|
|||
"link": "Link",
|
||||
"linkAccountTitle": "Link account to {{provider}}",
|
||||
"idpLinkSuccess": "Identity provider has been linked",
|
||||
"idpUnlinkSuccess" : "The provider link has been removed",
|
||||
"idpUnlinkSuccess": "The provider link has been removed",
|
||||
"idpType": {
|
||||
"social": "Social login",
|
||||
"custom": "Custom"
|
||||
|
|
|
@ -187,7 +187,7 @@ export default function UsersSection() {
|
|||
)}
|
||||
{user.bruteForceStatus?.disabled && (
|
||||
<Label key={user.id} color="orange" icon={<WarningTriangleIcon />}>
|
||||
{t("temporaryDisabled")}
|
||||
{t("temporaryLocked")}
|
||||
</Label>
|
||||
)}
|
||||
{user.enabled && !user.bruteForceStatus?.disabled && "—"}
|
||||
|
|
Loading…
Reference in a new issue