email spam reminder
This commit is contained in:
parent
f84eb929cb
commit
91f25abf2c
1 changed files with 7 additions and 4 deletions
|
@ -79,10 +79,13 @@ class UserEmailVerify extends React.PureComponent<Props, State> {
|
||||||
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%.', {
|
{__(
|
||||||
email,
|
'We just sent an email to %email% with a link for you to %verify_text%. Remember to check other email folders like spam or promotions.',
|
||||||
verify_text: isReturningUser ? __('log in') : __('verify your account'),
|
{
|
||||||
})}
|
email,
|
||||||
|
verify_text: isReturningUser ? __('log in') : __('verify your account'),
|
||||||
|
}
|
||||||
|
)}
|
||||||
</p>
|
</p>
|
||||||
}
|
}
|
||||||
actions={
|
actions={
|
||||||
|
|
Loading…
Reference in a new issue