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 English #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions src/components/Session/withEmailVerification.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ const withEmailVerification = Component => {
<div>
{this.state.isSent ? (
<p>
E-Mail confirmation sent: Check you E-Mails (Spam
folder included) for a confirmation E-Mail.
Refresh this page once you confirmed your E-Mail.
Email confirmation sent: check your Inbox (Spam
folder included) for a confirmation email.
Refresh this page once you confirmed your email.
</p>
) : (
<p>
Verify your E-Mail: Check you E-Mails (Spam folder
included) for a confirmation E-Mail or send
another confirmation E-Mail.
Verify your email: check your Inbox (Spam folder
included) for a confirmation email or send
another confirmation email.
</p>
)}

Expand All @@ -49,7 +49,7 @@ const withEmailVerification = Component => {
onClick={this.onSendEmailVerification}
disabled={this.state.isSent}
>
Send confirmation E-Mail
Send confirmation email
</button>
</div>
) : (
Expand Down