advise users to check email folders on sign in
This commit is contained in:
parent
68ef9a0561
commit
389fce161c
1 changed files with 7 additions and 4 deletions
|
@ -66,10 +66,13 @@ class UserEmailVerify extends React.PureComponent<Props> {
|
|||
title={isReturningUser ? __('Check Your Email') : __('Confirm your account')}
|
||||
subtitle={
|
||||
<p>
|
||||
{__('We just sent an email to %email% with a link for you to %verify_text%.', {
|
||||
email,
|
||||
verify_text: isReturningUser ? __('sign in') : __('verify your account'),
|
||||
})}
|
||||
{__(
|
||||
'We just sent an email to %email% with a link for you to %verify_text%. Be sure to check any Promotions folders.',
|
||||
{
|
||||
email,
|
||||
verify_text: isReturningUser ? __('sign in') : __('verify your account'),
|
||||
}
|
||||
)}
|
||||
</p>
|
||||
}
|
||||
actions={
|
||||
|
|
Loading…
Reference in a new issue