From 2311ca059bdb0cf44e5788a365e5651b5a54dfbe Mon Sep 17 00:00:00 2001 From: Mehedi Hasan Janny <26045285+MHJanny@users.noreply.github.com> Date: Sun, 28 Jun 2026 22:21:51 +0600 Subject: [PATCH] fix(LoginForm): improve login throttle warning wording Signed-off-by: Mehedi Hasan Janny <26045285+MHJanny@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 463807ccceb42..4a350907db74c 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', '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 },