Fix typo in suggest password resetting message

This commit is contained in:
ErickSkrauch 2019-03-09 03:31:31 +03:00
parent 38eff395c7
commit d042f796b4
3 changed files with 6 additions and 6 deletions

View File

@ -254,7 +254,7 @@
"services.errorsDict.emailNotFound": "Specified Email is not found",
"services.errorsDict.emailRequired": "Email is required",
"services.errorsDict.emailToLong": "Email is too long",
"services.errorsDict.forgotYourPassword": "forgot your password",
"services.errorsDict.forgottenYourPassword": "forgotten your password",
"services.errorsDict.invalidPassword": "You have entered wrong account password.",
"services.errorsDict.keyNotExists": "The key is incorrect or has expired.",
"services.errorsDict.keyRequired": "Please, enter an activation key",
@ -270,7 +270,7 @@
"services.errorsDict.redirectUriInvalid": "Redirect URI is invalid",
"services.errorsDict.redirectUriRequired": "Redirect URI is required",
"services.errorsDict.rulesAgreementRequired": "You must accept rules in order to create an account",
"services.errorsDict.suggestResetPassword": "Are you have {link}?",
"services.errorsDict.suggestResetPassword": "Have you {forgottenYourPassword}?",
"services.errorsDict.totpIncorrect": "The code is incorrect",
"services.errorsDict.totpRequired": "Please, enter the code",
"services.errorsDict.usernameInvalid": "Username is invalid",

View File

@ -1,8 +1,8 @@
{
"captchaRequired": "Please, solve the captcha",
"invalidPassword": "You have entered wrong account password.",
"suggestResetPassword": "Are you have {link}?",
"forgotYourPassword": "forgot your password",
"suggestResetPassword": "Have you {forgottenYourPassword}?",
"forgottenYourPassword": "forgotten your password",
"loginRequired": "Please enter Email or username",
"loginNotExist": "Sorry, Ely doesn't recognise your login.",
"passwordRequired": "Please enter password",

View File

@ -93,9 +93,9 @@ const errorsMap = {
<span>
<br/>
<Message {...messages.suggestResetPassword} values={{
link: (
forgottenYourPassword: (
<Link to="/forgot-password">
<Message {...messages.forgotYourPassword} />
<Message {...messages.forgottenYourPassword} />
</Link>
)
}} />