fix(login): Improve wording for login throttle warning

Signed-off-by: himehatsumi <95652868+himehatsumi@users.noreply.github.com>
This commit is contained in:
himehatsumi 2025-12-01 11:04:36 +01:00 committed by Louis Chmn
parent 9b1227749f
commit 0677888291

View file

@ -249,7 +249,7 @@ export default {
return t('core', 'This account is disabled')
}
if (this.throttleDelay > 5000) {
return t('core', 'We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds.')
return t('core', 'Too many incorrect login attempts. Please try again in 30 seconds.')
}
return undefined
},