Changed temporarily disabled to temporarily locked status - #1705 (#3917)

* Changed temporaryDisabled to temporaryLocked

* Changed temporaryDisabled to temporaryLocked

Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
agagancarczyk 2022-12-02 09:41:15 +00:00 committed by GitHub
parent eb7063df84
commit e28277846d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -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",

View file

@ -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 && "—"}