mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-28 20:47:22 +00:00
fix: fetch data after save, change i18n (#2178)
This commit is contained in:
parent
cf8515598c
commit
87fa6e58fb
@ -104,6 +104,7 @@ export class PasswordLockoutPolicyComponent implements OnDestroy {
|
||||
this.lockoutData.maxPasswordAttempts,
|
||||
).then(() => {
|
||||
this.toast.showInfo('POLICY.TOAST.SET', true);
|
||||
this.fetchData();
|
||||
}).catch(error => {
|
||||
this.toast.showError(error);
|
||||
});
|
||||
@ -113,6 +114,7 @@ export class PasswordLockoutPolicyComponent implements OnDestroy {
|
||||
this.lockoutData.maxPasswordAttempts,
|
||||
).then(() => {
|
||||
this.toast.showInfo('POLICY.TOAST.SET', true);
|
||||
this.fetchData();
|
||||
}).catch(error => {
|
||||
this.toast.showError(error);
|
||||
});
|
||||
@ -121,6 +123,7 @@ export class PasswordLockoutPolicyComponent implements OnDestroy {
|
||||
this.lockoutData.maxPasswordAttempts,
|
||||
).then(() => {
|
||||
this.toast.showInfo('POLICY.TOAST.SET', true);
|
||||
this.fetchData();
|
||||
}).catch(error => {
|
||||
this.toast.showError(error);
|
||||
});
|
||||
|
@ -691,7 +691,7 @@
|
||||
"DESCRIPTION": "You can set a policy for the aging of passwords. This policy emits a warning after the specific aging time has elapsed."
|
||||
},
|
||||
"PWD_LOCKOUT": {
|
||||
"TITLE": "Password Lockout",
|
||||
"TITLE": "Lockout Policy",
|
||||
"DESCRIPTION": "Set a maximum number of passwordretries, after which accounts will be blocked."
|
||||
},
|
||||
"IAM_POLICY": {
|
||||
@ -803,7 +803,7 @@
|
||||
"HASLOWERCASE": "has lowercase",
|
||||
"HASUPPERCASE": "has uppercase",
|
||||
"SHOWLOCKOUTFAILURES": "show lockout failures",
|
||||
"MAXATTEMPTS": "Max Attempts",
|
||||
"MAXATTEMPTS": "Password maximum Attempts",
|
||||
"EXPIREWARNDAYS": "Expiration Warning after day",
|
||||
"MAXAGEDAYS": "Max Age in days",
|
||||
"USERLOGINMUSTBEDOMAIN": "User Login must be Domain",
|
||||
|
Loading…
x
Reference in New Issue
Block a user