Skip to content

Commit

Permalink
[fix bug 1278380] Update newsletter thank you message
Browse files Browse the repository at this point in the history
  • Loading branch information
craigcook committed Jul 29, 2016
1 parent b9d14b3 commit e75caf8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
7 changes: 4 additions & 3 deletions bedrock/mozorg/templates/mozorg/contribute/friends.html
Expand Up @@ -94,13 +94,14 @@ <h2>{{ _('Feedback') }}</h2>
</div>{# /-- .ff-signup-wrapper #}

<div id="newsletter-form-thankyou" class="thank newsletter-form newsletter-form-extra">
<h3>{{ _('Thanks! Please check your inbox to confirm your subscription to the Firefox Friends newsletter.') }}</h3>
<h3>{{ _('Thanks!') }}</h3>

{# below matches text found in newsletter/includes/macros/email_form_thankyou() #}
<p>
{% trans %}
You'll receive an email from mozilla@e.mozilla.org to confirm your subscription.
If you don't see it, check your spam filter. You must confirm your subscription to receive our newsletter.
If you haven’t previously confirmed a subscription to a Mozilla-related
newsletter you may have to do so. Please check your inbox or your spam filter
for an email from us.
{% endtrans %}
</p>
</div>
Expand Down
11 changes: 6 additions & 5 deletions bedrock/newsletter/templates/newsletter/includes/macros.html
Expand Up @@ -5,11 +5,12 @@
{% set_lang_files "mozorg/newsletters" %}

{% macro email_form_thankyou() %}
<h3>{{ _('Thanks! Please check your inbox to confirm your subscription.') }}</h3>
<h3>{{ _('Thanks!') }}</h3>
<p>
{% trans %}
You'll receive an email from mozilla@e.mozilla.org to confirm your subscription.
If you don't see it, check your spam filter. You must confirm your subscription to receive our newsletter.
{% endtrans %}
{% trans %}
If you haven’t previously confirmed a subscription to a Mozilla-related
newsletter you may have to do so. Please check your inbox or your spam filter
for an email from us.
{% endtrans %}
</p>
{% endmacro %}
4 changes: 2 additions & 2 deletions bedrock/newsletter/templates/newsletter/mozilla-and-you.html
Expand Up @@ -18,6 +18,6 @@ <h1 class="large">{{ _('Read all about it in our <span>newsletter</span>') }}</h
{% endblock %}

{% block success_confirm %}
<p>{% trans %}Thanks! Please check your inbox to confirm your subscription.{% endtrans %}</p>
<p>{% trans %}You'll receive an email from mozilla@e.mozilla.org to confirm your subscription. If you don't see it, check your spam filter. You must confirm your subscription to receive our newsletter.{% endtrans %}</p>
<h3>{{ _('Thanks!') }}</h3>
{{ super() }}
{% endblock success_confirm %}
18 changes: 12 additions & 6 deletions bedrock/newsletter/templates/newsletter/one_newsletter_signup.html
Expand Up @@ -34,12 +34,18 @@
{% else %}
{# User has been subscribed #}
<div id="email-form" class="thank billboard">
<h3>{{ _('Thanks for Subscribing!') }}</h3>
{# user will have to confirm before starting subscription #}
{% block success_confirm %}
<p>{% trans %}Thanks! Please check your inbox to confirm your subscription.{% endtrans %}</p>
<p>{% trans %}You'll receive an email from mozilla@e.mozilla.org to confirm your subscription. If you don't see it, check your spam filter. You must confirm your subscription to receive our newsletter.{% endtrans %}</p>
{% endblock success_confirm %}
<h3>{{ _('Thanks!') }}</h3>

{# user may have to confirm before starting subscription #}
{% block success_confirm %}
<p>
{% trans %}
If you haven’t previously confirmed a subscription to a Mozilla-related
newsletter you may have to do so. Please check your inbox or your spam filter
for an email from us.
{% endtrans %}
</p>
{% endblock success_confirm %}
</div>
{% endif %}
</div><!-- doc -->
Expand Down

0 comments on commit e75caf8

Please sign in to comment.