mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
fix wrong error message in registration when phone number threepid is in use. (#9571)
This commit is contained in:
parent
e8d4fbb8ff
commit
7c33fc6cf6
2 changed files with 2 additions and 2 deletions
|
@ -333,7 +333,7 @@ export default class Registration extends React.Component<IProps, IState> {
|
||||||
} else if (response.errcode === "M_USER_IN_USE") {
|
} else if (response.errcode === "M_USER_IN_USE") {
|
||||||
errorText = _t("Someone already has that username, please try another.");
|
errorText = _t("Someone already has that username, please try another.");
|
||||||
} else if (response.errcode === "M_THREEPID_IN_USE") {
|
} else if (response.errcode === "M_THREEPID_IN_USE") {
|
||||||
errorText = _t("That e-mail address is already in use.");
|
errorText = _t("That e-mail address or phone number is already in use.");
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
|
|
|
@ -3465,7 +3465,7 @@
|
||||||
"Unable to query for supported registration methods.": "Unable to query for supported registration methods.",
|
"Unable to query for supported registration methods.": "Unable to query for supported registration methods.",
|
||||||
"This server does not support authentication with a phone number.": "This server does not support authentication with a phone number.",
|
"This server does not support authentication with a phone number.": "This server does not support authentication with a phone number.",
|
||||||
"Someone already has that username, please try another.": "Someone already has that username, please try another.",
|
"Someone already has that username, please try another.": "Someone already has that username, please try another.",
|
||||||
"That e-mail address is already in use.": "That e-mail address is already in use.",
|
"That e-mail address or phone number is already in use.": "That e-mail address or phone number is already in use.",
|
||||||
"Continue with %(ssoButtons)s": "Continue with %(ssoButtons)s",
|
"Continue with %(ssoButtons)s": "Continue with %(ssoButtons)s",
|
||||||
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Or %(usernamePassword)s",
|
"%(ssoButtons)s Or %(usernamePassword)s": "%(ssoButtons)s Or %(usernamePassword)s",
|
||||||
"Already have an account? <a>Sign in here</a>": "Already have an account? <a>Sign in here</a>",
|
"Already have an account? <a>Sign in here</a>": "Already have an account? <a>Sign in here</a>",
|
||||||
|
|
Loading…
Reference in a new issue