mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-09 01:22:27 +05:30
Fix typo in suggest password resetting message
This commit is contained in:
parent
38eff395c7
commit
d042f796b4
@ -254,7 +254,7 @@
|
||||
"services.errorsDict.emailNotFound": "Specified E‑mail is not found",
|
||||
"services.errorsDict.emailRequired": "E‑mail is required",
|
||||
"services.errorsDict.emailToLong": "E‑mail 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",
|
||||
|
@ -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 E‑mail or username",
|
||||
"loginNotExist": "Sorry, Ely doesn't recognise your login.",
|
||||
"passwordRequired": "Please enter password",
|
||||
|
@ -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>
|
||||
)
|
||||
}} />
|
||||
|
Loading…
Reference in New Issue
Block a user