From 4be3cb0f1f39dddf2e235a0c330bb63686b79658 Mon Sep 17 00:00:00 2001 From: Rob DiVincenzo Date: Tue, 23 Apr 2024 12:26:56 -0400 Subject: [PATCH] Refactor aliases to use actual strings --- .../newsletter-signup/organisms/default-layout-signup.jsx | 2 +- .../newsletter-signup/organisms/with-submission-logic.jsx | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/source/js/components/newsletter-signup/organisms/default-layout-signup.jsx b/source/js/components/newsletter-signup/organisms/default-layout-signup.jsx index 40fe630b5a6..de0dcaeccbf 100644 --- a/source/js/components/newsletter-signup/organisms/default-layout-signup.jsx +++ b/source/js/components/newsletter-signup/organisms/default-layout-signup.jsx @@ -266,7 +266,7 @@ class DefaultSignupForm extends Component { id={this.ids[name]} name={name} label={gettext( - "I'm okay with Mozilla handling my info as explained in this Privacy Notice" + "I'm okay with Mozilla handling my info as explained in this Privacy Notice" )} value={this.getFormFieldValue(name)} checked={this.getFormFieldValue(name) === "true"} diff --git a/source/js/components/newsletter-signup/organisms/with-submission-logic.jsx b/source/js/components/newsletter-signup/organisms/with-submission-logic.jsx index d74bce8b748..1f0298be2d1 100644 --- a/source/js/components/newsletter-signup/organisms/with-submission-logic.jsx +++ b/source/js/components/newsletter-signup/organisms/with-submission-logic.jsx @@ -238,8 +238,12 @@ function withSubmissionLogic(WrappedComponent) { ) { message = ( <> -

{gettext("confirm your email opt-in")}

-

{gettext("manage your subscriptions")}

+

+ {gettext("If you haven’t previously confirmed your opt-in to a Mozilla-related email subscription you may have to do so now. Please check your inbox or spam filter for an email from us to click and confirm your subscription.")} +

+

+ {gettext("If you have already confirmed your opt-in to receive Mozilla-related emails, you can now manage your subscriptions and update your email preferences.")} +

); }