From 0677888291ee78be455cfe7700e583c15d3b6f97 Mon Sep 17 00:00:00 2001 From: himehatsumi <95652868+himehatsumi@users.noreply.github.com> Date: Mon, 1 Dec 2025 11:04:36 +0100 Subject: [PATCH] fix(login): Improve wording for login throttle warning Signed-off-by: himehatsumi <95652868+himehatsumi@users.noreply.github.com> --- core/src/components/login/LoginForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/login/LoginForm.vue b/core/src/components/login/LoginForm.vue index 9c8c16c47ee..463807ccceb 100644 --- a/core/src/components/login/LoginForm.vue +++ b/core/src/components/login/LoginForm.vue @@ -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 },