diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-01-09 21:06:42 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-01-09 21:06:42 +0100 |
commit | f200da35c6283c71b7c29b2fc88d655b1e26db06 (patch) | |
tree | 56e70b312f95fedc60d40ab97d5fcbff11670893 | |
parent | 3e325ecec91d8610c719218e11fbe2dae6d2bc6d (diff) | |
download | bugzilla-f200da35c6283c71b7c29b2fc88d655b1e26db06.tar.gz bugzilla-f200da35c6283c71b7c29b2fc88d655b1e26db06.tar.xz |
Fixed 009bugwords.t errors
5 files changed, 7 insertions, 7 deletions
diff --git a/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl b/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl index e5cd64399..32be3beb7 100644 --- a/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl +++ b/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl @@ -92,7 +92,7 @@ <div id="query_container"> <div class="query_heading"></div> <div class="query_description"></div> - <span class="items_found" id="query_bugs_found">0 bugs found</span> + <span class="items_found" id="query_bugs_found">0 [% terms.bugs %] found</span> | <a class="refresh" href="javascript:void(0);" id="query_refresh">Refresh</a> <div id="query_pagination_top"></div> <div id="query_table"></div> diff --git a/extensions/ProductDashboard/template/en/default/pages/productdashboard/components.html.tmpl b/extensions/ProductDashboard/template/en/default/pages/productdashboard/components.html.tmpl index 8f3703770..6b0e7240a 100644 --- a/extensions/ProductDashboard/template/en/default/pages/productdashboard/components.html.tmpl +++ b/extensions/ProductDashboard/template/en/default/pages/productdashboard/components.html.tmpl @@ -12,7 +12,7 @@ <script> <!-- - // Past due bugs + // Past due [% IF user.is_timetracker %] PD.past_due = [ [% FOREACH bug = summary.past_due %] @@ -28,7 +28,7 @@ ]; [% END %] - // Bugs updated recently + // Updated recently PD.updated_recently = [ [% FOREACH bug = summary.updated_recently %] { diff --git a/extensions/ProductDashboard/template/en/default/pages/productdashboard/recents.html.tmpl b/extensions/ProductDashboard/template/en/default/pages/productdashboard/recents.html.tmpl index 18227aec2..66320e174 100644 --- a/extensions/ProductDashboard/template/en/default/pages/productdashboard/recents.html.tmpl +++ b/extensions/ProductDashboard/template/en/default/pages/productdashboard/recents.html.tmpl @@ -9,7 +9,7 @@ <script type="text/javascript"> PD.recents = {}; - // Recently opened bugs + // Recently opened PD.recents.opened = [ [% FOREACH bug = recently_opened %] { @@ -23,7 +23,7 @@ [% END %] ]; - // Recently closed bugs + // Recently closed PD.recents.closed = [ [% FOREACH bug = recently_closed %] { diff --git a/extensions/ProductDashboard/template/en/default/pages/productdashboard/roadmap.html.tmpl b/extensions/ProductDashboard/template/en/default/pages/productdashboard/roadmap.html.tmpl index 48f96499d..b31827fbd 100644 --- a/extensions/ProductDashboard/template/en/default/pages/productdashboard/roadmap.html.tmpl +++ b/extensions/ProductDashboard/template/en/default/pages/productdashboard/roadmap.html.tmpl @@ -13,7 +13,7 @@ { name: '[% milestone.name FILTER js %]', percentage: '[% milestone.percentage FILTER js %]', - link: '<a href="[% milestone.link_closed FILTER html %]">[% milestone.closed_bugs FILTER html %]</a> of <a href="[% milestone.link_total FILTER html %]"> [% milestone.total_bugs FILTER html %]</a> bugs have been closed', + link: '<a href="[% milestone.link_closed FILTER html %]">[% milestone.closed_bugs FILTER html %]</a> of <a href="[% milestone.link_total FILTER html %]"> [% milestone.total_bugs FILTER html %]</a> [% terms.bugs %] have been closed', }, [% END %] ]; diff --git a/extensions/ProductDashboard/template/en/default/pages/productdashboard/summary.html.tmpl b/extensions/ProductDashboard/template/en/default/pages/productdashboard/summary.html.tmpl index e454ee8e8..ea3bcf89a 100644 --- a/extensions/ProductDashboard/template/en/default/pages/productdashboard/summary.html.tmpl +++ b/extensions/ProductDashboard/template/en/default/pages/productdashboard/summary.html.tmpl @@ -9,7 +9,7 @@ <script> PD.summary = {}; - // Bug counts + // global counts PD.summary.bug_counts = [ { name: "Total [% terms.Bugs %]", |