mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-17 21:53:03 +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.emailNotFound": "Specified E‑mail is not found",
|
||||||
"services.errorsDict.emailRequired": "E‑mail is required",
|
"services.errorsDict.emailRequired": "E‑mail is required",
|
||||||
"services.errorsDict.emailToLong": "E‑mail is too long",
|
"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.invalidPassword": "You have entered wrong account password.",
|
||||||
"services.errorsDict.keyNotExists": "The key is incorrect or has expired.",
|
"services.errorsDict.keyNotExists": "The key is incorrect or has expired.",
|
||||||
"services.errorsDict.keyRequired": "Please, enter an activation key",
|
"services.errorsDict.keyRequired": "Please, enter an activation key",
|
||||||
@ -270,7 +270,7 @@
|
|||||||
"services.errorsDict.redirectUriInvalid": "Redirect URI is invalid",
|
"services.errorsDict.redirectUriInvalid": "Redirect URI is invalid",
|
||||||
"services.errorsDict.redirectUriRequired": "Redirect URI is required",
|
"services.errorsDict.redirectUriRequired": "Redirect URI is required",
|
||||||
"services.errorsDict.rulesAgreementRequired": "You must accept rules in order to create an account",
|
"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.totpIncorrect": "The code is incorrect",
|
||||||
"services.errorsDict.totpRequired": "Please, enter the code",
|
"services.errorsDict.totpRequired": "Please, enter the code",
|
||||||
"services.errorsDict.usernameInvalid": "Username is invalid",
|
"services.errorsDict.usernameInvalid": "Username is invalid",
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"captchaRequired": "Please, solve the captcha",
|
"captchaRequired": "Please, solve the captcha",
|
||||||
"invalidPassword": "You have entered wrong account password.",
|
"invalidPassword": "You have entered wrong account password.",
|
||||||
"suggestResetPassword": "Are you have {link}?",
|
"suggestResetPassword": "Have you {forgottenYourPassword}?",
|
||||||
"forgotYourPassword": "forgot your password",
|
"forgottenYourPassword": "forgotten your password",
|
||||||
"loginRequired": "Please enter E‑mail or username",
|
"loginRequired": "Please enter E‑mail or username",
|
||||||
"loginNotExist": "Sorry, Ely doesn't recognise your login.",
|
"loginNotExist": "Sorry, Ely doesn't recognise your login.",
|
||||||
"passwordRequired": "Please enter password",
|
"passwordRequired": "Please enter password",
|
||||||
|
@ -93,9 +93,9 @@ const errorsMap = {
|
|||||||
<span>
|
<span>
|
||||||
<br/>
|
<br/>
|
||||||
<Message {...messages.suggestResetPassword} values={{
|
<Message {...messages.suggestResetPassword} values={{
|
||||||
link: (
|
forgottenYourPassword: (
|
||||||
<Link to="/forgot-password">
|
<Link to="/forgot-password">
|
||||||
<Message {...messages.forgotYourPassword} />
|
<Message {...messages.forgottenYourPassword} />
|
||||||
</Link>
|
</Link>
|
||||||
)
|
)
|
||||||
}} />
|
}} />
|
||||||
|
Loading…
Reference in New Issue
Block a user