Skip to content

Commit

Permalink
Fix bug 1337123: Update newsletter sign-up language to avoid confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
fitojb committed Feb 13, 2017
1 parent e2527ab commit 13433f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bedrock/newsletter/templates/newsletter/index.html
Expand Up @@ -12,7 +12,11 @@
{# Remove the span tags from the headline next time it changes: #}
<h1 class="large">{{ _('Read all about it in our <span>newsletter</span>') }}</h1>
<p>
{% trans %}Subscribe to monthly updates and keep current with Mozilla news, including the latest tips and tricks for getting the most out of your Firefox browser. It’s the perfect way for us to keep in touch!{% endtrans %}
{% if l10n_has_tag('mozilla_newsletter_2017') %}
{{ _('Subscribe to updates and keep current with Mozilla news. It’s the perfect way for us to keep in touch!') }}
{% else %}
{{ _('Subscribe to monthly updates and keep current with Mozilla news, including the latest tips and tricks for getting the most out of your Firefox browser. It’s the perfect way for us to keep in touch!') }}
{% endif %}
</p>
</div>
{% endblock %}

0 comments on commit 13433f4

Please sign in to comment.