diff --git a/src/page/firstRun/index.js b/src/page/firstRun/index.js index 819b68e..70d95b8 100644 --- a/src/page/firstRun/index.js +++ b/src/page/firstRun/index.js @@ -8,6 +8,7 @@ import { doUserEmailNew, doUserResendVerificationEmail, selectAuthToken, + selectEmailAlreadyExists, selectEmailNewErrorMessage, selectEmailNewIsPending, selectEmailToVerify, @@ -28,6 +29,7 @@ const select = state => ({ authenticating: selectAuthenticationIsPending(state), authToken: selectAuthToken(state), emailToVerify: selectEmailToVerify(state), + emailAlreadyExists: selectEmailAlreadyExists(state), emailNewErrorMessage: selectEmailNewErrorMessage(state), emailNewPending: selectEmailNewIsPending(state), hasSyncedWallet: selectHasSyncedWallet(state), diff --git a/src/page/firstRun/internal/email-collect-page.js b/src/page/firstRun/internal/email-collect-page.js index 1c870ba..04c9b43 100644 --- a/src/page/firstRun/internal/email-collect-page.js +++ b/src/page/firstRun/internal/email-collect-page.js @@ -64,7 +64,7 @@ class EmailCollectPage extends React.PureComponent { }} /> - {__('An account will allow you to earn rewards and keep your account and settings synced.')} + {__('A lbry.tv account allows you to earn rewards, backup your wallet, and keep everything in sync.')} {__('This information is disclosed only to LBRY, Inc. and not to the LBRY network.')} diff --git a/src/page/firstRun/internal/email-verify-page.js b/src/page/firstRun/internal/email-verify-page.js index c4f2575..835849d 100644 --- a/src/page/firstRun/internal/email-verify-page.js +++ b/src/page/firstRun/internal/email-verify-page.js @@ -17,24 +17,26 @@ class EmailVerifyPage extends React.PureComponent { }; render() { - const { onEmailViewLayout, email } = this.props; + const { onEmailViewLayout, email, emailAlreadyExists } = this.props; const content = ( onEmailViewLayout('verify')}> - Verify Email + {emailAlreadyExists ? __('Sign In') : __('Verify Email')} + - An email has been sent to{' '} - - {email} - - . Please follow the instructions in the message to verify your email address. + {__('An email has been sent to')} + {'\n\n'} + {email} + {'\n\n'} + {emailAlreadyExists && __('Please click the link in the message to complete signing in')} + {!emailAlreadyExists && __('Please click the link in the message to verify your email address')}.