Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ghostery Dawn Intro Hub Design Fixes #663

Merged
merged 2 commits into from Jan 22, 2021
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next

Update copies. Add higher res image for success screen

  • Loading branch information
benstrumeyer committed Jan 21, 2021
commit 3ac9fd5ca8a66b1a8b0f03910cdd8d2d369661eb
@@ -1846,7 +1846,7 @@
"message": "Create a Ghostery Account"
},
"ghostery_dawn_onboarding_sync_settings": {
"message": "Allows you to sync settings across browsers and devices."
"message": "Allows you to sync your privacy settings across devices."
},
"ghostery_dawn_onboarding_already_have_account": {
"message": "I already have an account."
@@ -2267,6 +2267,9 @@
"next": {
"message": "Next"
},
"next_or_start_trial": {
"message": "Next or Start Trial"
},
"previous": {
"message": "Previous"
},
@@ -2419,7 +2422,7 @@
"message": "Choose your default search"
},
"pick_a_default_search_engine": {
"message": "Pick a default engine for all your searches."
"message": "Choose a default search engine for all your searches."
},
"ghostery_dawn_hub_blocking_settings_view_toast_error_message": {
"message": "Please answer all questions"
@@ -348,14 +348,14 @@ class ChoosePlanView extends React.Component {
<div className="ChoosePlanView__ctaButtonContainer">
{(selectedPlan === BASIC) && (
<NavLink className="ChoosePlanView__searchCTAButton" to="/onboarding/5" onClick={() => setSetupStep({ setup_step: CHOOSE_PLAN, origin: ONBOARDING })}>
<span>{t('next')}</span>
<span>{t('next_or_start_trial')}</span>
</NavLink>
)}
{selectedPlan === PLUS && (
<a className="ChoosePlanView__searchCTAButton" href={plusCheckoutLink} target="_blank" rel="noreferrer">{t('next')}</a>
<a className="ChoosePlanView__searchCTAButton" href={plusCheckoutLink} target="_blank" rel="noreferrer">{t('next_or_start_trial')}</a>
)}
{selectedPlan === PREMIUM && (
<a className="ChoosePlanView__searchCTAButton" href={premiumCheckoutLink} target="_blank" rel="noreferrer">{t('next')}</a>
<a className="ChoosePlanView__searchCTAButton" href={premiumCheckoutLink} target="_blank" rel="noreferrer">{t('next_or_start_trial')}</a>
)}
</div>
))}
@@ -35,7 +35,7 @@ const SuccessView = (props) => {
<div className="SuccessView__container">
<div className="SuccessView__title">{t('ghostery_dawn_onboarding_youve_successfully_set_up_your_browser')}</div>

<div className="SuccessView__subtitle">{`${t('ghostery_dawn_onboarding_surf_with_ease')} Ghostery`}</div>
<div className="SuccessView__subtitle">{`${t('ghostery_dawn_onboarding_surf_with_ease')}`}</div>
<img className="SuccessView__ghosterySuite" src="/app/images/hub/success/ghostery-suite.png" />
<button className="SuccessView__ctaButton" onClick={() => sendPing({ type: 'gb_onboarding_success' })} type="button">{t('ghostery_dawn_onboarding_start_browsing')}</button>
</div>
Binary file not shown.
ProTip! Use n and p to navigate between commits in a pull request.