Merge pull request #128 from jrmi/romain/welcome_modal_typo_fixes
Fixes various typos on welcome modal.
This commit is contained in:
commit
8e985ceb04
6 changed files with 13 additions and 13 deletions
|
@ -2,7 +2,7 @@ describe("Board interactions", () => {
|
|||
beforeEach(() => {
|
||||
cy.viewport(1000, 600);
|
||||
cy.visit("/");
|
||||
cy.contains("I want play...", { timeout: 5000 }).click();
|
||||
cy.contains("I want to play...", { timeout: 5000 }).click();
|
||||
cy.contains("Menu").click();
|
||||
cy.contains("Test game").click();
|
||||
// Way board loading
|
||||
|
|
|
@ -2,7 +2,7 @@ describe("Item interactions", () => {
|
|||
beforeEach(() => {
|
||||
cy.viewport(1000, 600);
|
||||
cy.visit("/");
|
||||
cy.contains("I want play...", { timeout: 5000 }).click();
|
||||
cy.contains("I want to play...", { timeout: 5000 }).click();
|
||||
cy.contains("Menu").click();
|
||||
cy.contains("Test game").click();
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ describe("Selection action", () => {
|
|||
beforeEach(() => {
|
||||
cy.viewport(1000, 600);
|
||||
cy.visit("/");
|
||||
cy.contains("I want play...", { timeout: 5000 }).click();
|
||||
cy.contains("I want to play...", { timeout: 5000 }).click();
|
||||
cy.contains("Menu").click();
|
||||
cy.contains("Test game").click();
|
||||
// Way board loading
|
||||
|
|
|
@ -20,7 +20,7 @@ const WelcomeModal = ({ show, setShow }) => {
|
|||
}}
|
||||
className="button"
|
||||
>
|
||||
{t("I want play...")}
|
||||
{t("I want to play...")}
|
||||
</button>
|
||||
}
|
||||
>
|
||||
|
@ -34,16 +34,16 @@ const WelcomeModal = ({ show, setShow }) => {
|
|||
<h3>{t("Invite your friends")}</h3>
|
||||
<Trans i18nKey="InviteFriends">
|
||||
<p>
|
||||
To invite other players to play with you, share the following links
|
||||
To invite other players to play with you, share the following link
|
||||
with your friends.
|
||||
</p>
|
||||
</Trans>
|
||||
<span>{currentUrl}</span>
|
||||
|
||||
<h3>{t("More informations")}</h3>
|
||||
<h3>{t("More information")}</h3>
|
||||
<Trans i18nKey="moreInformation">
|
||||
<p>
|
||||
For more informations, visit{" "}
|
||||
For more information, visit{" "}
|
||||
<a href="https://github.com/jrmi/airboardgame/">github repository</a>.
|
||||
</p>
|
||||
</Trans>
|
||||
|
|
|
@ -69,11 +69,11 @@
|
|||
"Welcome to Airboardgame": "Welcome to Airboardgame",
|
||||
"What is it?": "What is it?",
|
||||
"Invite your friends": "Invite your friends",
|
||||
"More informations": "More informations",
|
||||
"More information": "More information",
|
||||
"welcomeText": "<0>Airboardgame is a tabletop simulator to play your favorite board games with your friends online.</0>",
|
||||
"InviteFriends": "<0>To invite other players to play with you, share the following links with your friends.</0>",
|
||||
"moreInformation": "<0>For more informations, visit <2>github repository</2>.</0>",
|
||||
"I want play...": "I want play...",
|
||||
"InviteFriends": "<0>To invite other players to play with you, share the following link with your friends.</0>",
|
||||
"moreInformation": "<0>For more information, visit <2>github repository</2>.</0>",
|
||||
"I want to play...": "I want to play...",
|
||||
"Zone": "Zone",
|
||||
"Reveal for me": "Reveal for me",
|
||||
"Waiting for connection…": "Waiting for connection…"
|
||||
|
|
|
@ -69,11 +69,11 @@
|
|||
"Welcome to Airboardgame": "Bienvenue sur Airboardgame",
|
||||
"What is it?": "Qu'est-ce que c'est ?",
|
||||
"Invite your friends": "Invitez vos amis",
|
||||
"More informations": "Plus d'informations",
|
||||
"More information": "Plus d'informations",
|
||||
"welcomeText": "<0>Airboardgame est un simulateur de table de jeu qui vous permet de jouer en ligne avec vos amis à vos jeux de société préférés.</0>",
|
||||
"InviteFriends": "<0>Pour inviter d'autres joueurs, partagez le lien suivant avec vos amis.</0>",
|
||||
"moreInformation": "<0>Pour plus d'informations, visitez le <2>dépôt github</2>.</0>",
|
||||
"I want play...": "Je veux jouer...",
|
||||
"I want to play...": "Je veux jouer...",
|
||||
"Zone": "Zone",
|
||||
"Reveal for me": "Retourner pour moi",
|
||||
"Waiting for connection…": "En attente d'une connection…"
|
||||
|
|
Loading…
Reference in a new issue