Skip to content

Commit

Permalink
Merge pull request #5188 from kyoshino/bug-1387466-channel-all-label
Browse files Browse the repository at this point in the history
Fix Bug 1387466 - Adjust download page strings to remove "(incl. Win 64)" now that Win64 builds are default on all channels
  • Loading branch information
Schalk Neethling committed Oct 10, 2017
2 parents 54c6004 + 1a9365f commit 31afa69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bedrock/firefox/templates/firefox/channel/android.html
Expand Up @@ -52,7 +52,7 @@ <h2>{{_('Beta')}}</h2>
<div class="container">
<ul>
<li><a href="{{ firefox_url('android', 'notes', 'beta') }}">{{_('Release Notes')}}</a></li>
<li><a href="{{ firefox_url('android', 'all', 'beta') }}">{{_('All Languages and Builds')}}</a></li>
<li><a href="{{ firefox_url('android', 'all', 'beta') }}">{% if l10n_has_tag('firefox_channel_bug1387466') %}{{_('All Languages and Platforms')}}{% else %}{{_('All Languages and Builds')}}{% endif %}</a></li>
</ul>
</div>
</footer>
Expand Down
6 changes: 3 additions & 3 deletions bedrock/firefox/templates/firefox/channel/desktop.html
Expand Up @@ -50,7 +50,7 @@ <h2>{{_('Beta')}}</h2>
<div class="container">
<ul>
<li><a href="{{ firefox_url('desktop', 'notes', 'beta') }}">{{_('Release Notes')}}</a></li>
<li><a href="{{ firefox_url('desktop', 'all', 'beta') }}">{{_('All Languages and Builds (incl. Win 64)')}}</a></li>
<li><a href="{{ firefox_url('desktop', 'all', 'beta') }}">{% if l10n_has_tag('firefox_channel_bug1387466') %}{{_('All Languages and Platforms')}}{% else %}{{_('All Languages and Builds')}}{% endif %}</a></li>
</ul>
</div>
</footer>
Expand All @@ -75,7 +75,7 @@ <h2>{{_('Developer Edition')}}</h2>
<ul>
<li><a href="{{ firefox_url('desktop', 'notes', 'developer') }}">{{_('Release Notes')}}</a></li>
<li><a href="{{ url('firefox.developer') }}">{{_('Learn more')}}</a></li>
<li><a href="{{ firefox_url('desktop', 'all', 'developer') }}">{{_('All Languages and Builds (incl. Win 64)')}}</a></li>
<li><a href="{{ firefox_url('desktop', 'all', 'developer') }}">{% if l10n_has_tag('firefox_channel_bug1387466') %}{{_('All Languages and Platforms')}}{% else %}{{_('All Languages and Builds')}}{% endif %}</a></li>
</ul>
</div>
</footer>
Expand Down Expand Up @@ -104,7 +104,7 @@ <h2>{{_('Nightly')}}</h2>
<ul>
<li><a href="{{ firefox_url('desktop', 'notes', 'nightly') }}">{{_('Release Notes')}}</a></li>
<li><a rel="external" href="https://blog.nightly.mozilla.org/">{{_('Nightly Blog')}}</a></li>
<li><a href="{{ firefox_url('desktop', 'all', 'nightly') }}">{{_('All Languages and Builds (incl. Win 64)')}}</a></li>
<li><a href="{{ firefox_url('desktop', 'all', 'nightly') }}">{% if l10n_has_tag('firefox_channel_bug1387466') %}{{_('All Languages and Platforms')}}{% else %}{{_('All Languages and Builds')}}{% endif %}</a></li>
</ul>
</div>
</footer>
Expand Down

0 comments on commit 31afa69

Please sign in to comment.