Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix duplicate period #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions locales.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"It looks like you have another account with the same email address. We recommend you link these accounts.",
"skipAlternativeLink": "I want to skip this and create a new account. (Not recommended)",
"sameEmailAddressError": "Accounts must have matching email addresses. Please try again.",
"identities": "You may sign in with {{identities}} to link accounts",
"identities": "You may sign in with {{identities}} to link accounts.",
"or": "or"
},

Expand All @@ -23,7 +23,7 @@
"skipAlternativeLink": "Quiero saltar esto y crear una nueva cuenta. (No recomendado)",
"sameEmailAddressError":
"Las cuentas deben tener la misma dirección de correo electrónico. Por favor intenta nuevamente.",
"identities": "Puedes iniciar sesión con {{identities}} para vincular las cuentas",
"identities": "Puedes iniciar sesión con {{identities}} para vincular las cuentas.",
"or": "o"
},

Expand Down
2 changes: 1 addition & 1 deletion templates/utils/auth0widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = (dynamicSettings, identities, locale = 'en') =>
<div class="auth0-lock-form" id="content-container">
<div>
<p id="message">
${t('introduction')} ${t('identities').replace(identitiesRegex, identities)}.
${t('introduction')} ${t('identities').replace(identitiesRegex, identities)}
</p>
<p class="auth0-lock-alternative">
<a class="auth0-lock-alternative-link" id="skip" href="#">
Expand Down