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')}
|
title={isReturningUser ? __('Check Your Email') : __('Confirm your account')}
|
||||||
subtitle={
|
subtitle={
|
||||||
<p>
|
<p>
|
||||||
{__('We just sent an email to %email% with a link for you to %verify_text%.', {
|
{__(
|
||||||
|
'We just sent an email to %email% with a link for you to %verify_text%. Be sure to check any Promotions folders.',
|
||||||
|
{
|
||||||
email,
|
email,
|
||||||
verify_text: isReturningUser ? __('sign in') : __('verify your account'),
|
verify_text: isReturningUser ? __('sign in') : __('verify your account'),
|
||||||
})}
|
}
|
||||||
|
)}
|
||||||
</p>
|
</p>
|
||||||
}
|
}
|
||||||
actions={
|
actions={
|
||||||
|
|
Loading…
Add table
Reference in a new issue