From b4880315a063a70ea0ae927b176122e1654738f3 Mon Sep 17 00:00:00 2001 From: Noach Magedman Date: Sun, 3 Sep 2023 11:34:06 +0300 Subject: [PATCH] PATCH: AR-3091 Login form "Email or username" label incorrect Our hack to the login form currently only supports identifying the user by email address, not by username. Until that is fixed, we should change the field label to read "Email address" rather than "Email or username". Concurrent with this patch, we should remove the custom configuration for `Accounts_EmailOrUsernamePlaceholder`, returning it to the default empty string. We had customized it "Email address" when 5.x treated the empty string as "Email or username". However 6.x treats the empty string as "example@example.com". --- apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json b/apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json index cf4267c34713..fcd02720c221 100644 --- a/apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json +++ b/apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json @@ -5741,7 +5741,7 @@ "registration.component.login.incorrectPassword": "Incorrect password", "registration.component.switchLanguage": "Switch to <1>en", "registration.component.resetPassword": "Reset password", - "registration.component.form.emailOrUsername": "Email or username", + "registration.component.form.emailOrUsername": "Email address", "registration.component.form.username": "Username", "registration.component.form.name": "Name", "registration.component.form.nameOptional": "Name optional",