Skip to content

Commit

Permalink
Merge pull request mozilla#2827 from MikkCZ/bug-1260987
Browse files Browse the repository at this point in the history
[Bug 1260987] Make "en-US" locale code not localizable
  • Loading branch information
rehandalal committed Apr 1, 2016
2 parents ff5024c + e710cb5 commit bb1cd35
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kitsune/community/jinja2/community/metrics.html
Expand Up @@ -16,7 +16,8 @@ <h2>{{ _('Retention') }}</h2>
<div class="inline-controls">
<div>
<select id="toggle-cohort-type">
<option value="contributor:kb:en-US">{{ _('en-US') }}</option>
{# The locale code is not localizable - the data are for English only. #}
<option value="contributor:kb:en-US">en-US</option>
<option value="contributor:kb:l10n">{{ _('L10N') }}</option>
<option value="contributor:supportforum:helper">{{ _('Support Forum Help') }}</option>
<option value="contributor:aoa">{{ _('Army of Awesome') }}</option>
Expand All @@ -29,7 +30,8 @@ <h2>{{ _('Retention') }}</h2>
<section id="kpi-csat-enus"
data-url="{{ url('api.kpi.csat-contributors-kb-enus') }}">

<h2>{{ _('Contributor Satisfaction: en-us') }}</h2>
{# The locale code is not localizable - the data are for English only. #}
<h2>{{ _('Contributor Satisfaction: %(locale)s', locale='en-US') }}</h2>

<div class="rickshaw">
<div class="inline-controls"></div>
Expand Down

0 comments on commit bb1cd35

Please sign in to comment.