diff --git a/_locales/en/messages.json b/_locales/en/messages.json index a07b9b0a7..1fbe3f2ac 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1389,9 +1389,12 @@ "hub_home_header_checkbox_label": { "message": "Share additional anonymous analytics data to improve Ghostery’s performance." }, - "hub_home_header_info": { - "message": "New users are opted in to participating in Human Web and Ghostery Rewards. You may change these settings in custom setup or in the extension. " + "hub_home_header_info_opted_out": { + "message": "New users are opted out of participating in Ghostery Rewards and Human Web by default. You may opt in to these recommended features in custom setup or in the extension. " }, + "hub_home_header_info": { + "message": "New users are opted in to participating in Human Web and Ghostery Rewards. You may change these settings in custom setup or in the extension. " + }, "hub_home_header_info_link": { "message": "Learn More." }, diff --git a/app/hub/Views/HomeView/HomeView.jsx b/app/hub/Views/HomeView/HomeView.jsx index 80f35a195..7369d40a6 100644 --- a/app/hub/Views/HomeView/HomeView.jsx +++ b/app/hub/Views/HomeView/HomeView.jsx @@ -34,6 +34,9 @@ const HomeView = (props) => { isPlus, } = props; const accountHref = `https://account.${globals.GHOSTERY_DOMAIN}.com`; + const headerInfoText = (globals.BROWSER_INFO && globals.BROWSER_INFO.name === 'firefox') + ? t('hub_home_header_info_opted_out') + : t('hub_home_header_info'); const tutorialFeatureClassNames = ClassNames('HomeView__onboardingFeature columns flex-container align-middle flex-dir-column', { 'feature-tutorial-complete': tutorial_complete, 'feature-tutorial': !tutorial_complete, @@ -68,7 +71,7 @@ const HomeView = (props) => {