fix(LoginForm): improve login throttle warning wording

Signed-off-by: Mehedi Hasan Janny <26045285+MHJanny@users.noreply.github.com>
This commit is contained in:
Mehedi Hasan Janny 2026-06-28 22:21:51 +06:00
parent ae4619052c
commit bbda757efe

View file

@ -249,7 +249,7 @@ export default {
return t('core', 'This account is disabled')
}
if (this.throttleDelay > 5000) {
return t('core', 'Too many incorrect login attempts. Please try again in 30 seconds.')
return t('core', 'Too many failed login attempts from your location. Try again in 30 seconds.')
}
return undefined
},