Skip to content

Commit

Permalink
Fix hard-coded strings in VPN pages (Fixes #13935, #13934) (#13936)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgibson authored Nov 27, 2023
1 parent dfb7481 commit 1befb9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bedrock/products/templates/products/vpn/features.html
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ <h2 class="c-section-title">{{ ftl('vpn-features-trustworthy') }}</h2>
{% endcall %}

{% call picto(
title='We never log, track or share your network data',
title=ftl('vpn-features-we-never-log'),
image=resp_img(
url='img/products/vpn/features/icons/eye.svg',
optional_attributes={
Expand Down
6 changes: 3 additions & 3 deletions bedrock/products/templates/products/vpn/includes/macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ <h2 class="vpn-hero-sub-heading">{{ subheading }}</h2>
<p>
{% set pricing_url = '#pricing' if request.path.endswith('/products/vpn/') else url('products.vpn.landing') + '#pricing' %}
<a class="mzp-c-button mzp-t-product mzp-t-xl" href="{{ pricing_url }}" data-cta-type="button" data-cta-text="Get Mozilla VPN" data-cta-position="{{ position }}">
Get Mozilla VPN
{{ ftl('vpn-shared-subscribe-link') }}
</a>
</p>
<p class="c-guarantee">30-day money-back guarantee</p>
<p class="c-guarantee">{{ ftl('vpn-shared-features-guarantee') }}</p>
{% else %}
<p>
<a class="mzp-c-button mzp-t-product mzp-t-xl" href="{{ url('products.vpn.invite') }}" data-cta-type="button" data-cta-text="Join the VPN Waitlist">
Join the Waitlist
{{ ftl('vpn-shared-waitlist-link') }}
</a>
</p>
{% endif %}
Expand Down

0 comments on commit 1befb9c

Please sign in to comment.