From b2a9402d3fd15a3343b28fe90dcd7f4bea56fac6 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 7 Jun 2019 13:57:28 +0100 Subject: [PATCH] Clarify that only lowercase letters are allowed We only allow lowercase letters in localparts. Fixes https://github.com/vector-im/riot-web/issues/9983 --- src/components/views/auth/RegistrationForm.js | 2 +- src/i18n/strings/en_EN.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/views/auth/RegistrationForm.js b/src/components/views/auth/RegistrationForm.js index b1af6ea42c..c4b3dbb8fb 100644 --- a/src/components/views/auth/RegistrationForm.js +++ b/src/components/views/auth/RegistrationForm.js @@ -380,7 +380,7 @@ module.exports = React.createClass({ }, validateUsernameRules: withValidation({ - description: () => _t("Use letters, numbers, dashes and underscores only"), + description: () => _t("Use lowercase letters, numbers, dashes and underscores only"), rules: [ { key: "required", diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 7673b5f6ab..53642816b7 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -304,7 +304,6 @@ "Custom user status messages": "Custom user status messages", "Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)", "Render simple counters in room header": "Render simple counters in room header", - "Custom Notification Sounds": "Custom Notification Sounds", "Edit messages after they have been sent (refresh to apply changes)": "Edit messages after they have been sent (refresh to apply changes)", "React to messages with emoji (refresh to apply changes)": "React to messages with emoji (refresh to apply changes)", "Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing", @@ -1356,7 +1355,7 @@ "Other users can invite you to rooms using your contact details": "Other users can invite you to rooms using your contact details", "Enter phone number (required on this homeserver)": "Enter phone number (required on this homeserver)", "Doesn't look like a valid phone number": "Doesn't look like a valid phone number", - "Use letters, numbers, dashes and underscores only": "Use letters, numbers, dashes and underscores only", + "Use lowercase letters, numbers, dashes and underscores only": "Use lowercase letters, numbers, dashes and underscores only", "Enter username": "Enter username", "Some characters not allowed": "Some characters not allowed", "Email (optional)": "Email (optional)",