Merge pull request #5234 from lbryio/spam-warning

email spam reminder
This commit is contained in:
jessopb 2020-12-24 11:21:01 -05:00 committed by GitHub
commit 070d051e16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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={