diff options
author | lpsolit%gmail.com <> | 2007-05-10 16:15:29 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-05-10 16:15:29 +0000 |
commit | 1bbfb0eb667bcce1875a68aeaca4b2b753e6edb8 (patch) | |
tree | 472a6dd21c92d6f1868cab58dd080f60f4aad2d5 | |
parent | Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav V... (diff) | |
download | bugzilla-1bbfb0eb667bcce1875a68aeaca4b2b753e6edb8.tar.gz bugzilla-1bbfb0eb667bcce1875a68aeaca4b2b753e6edb8.tar.bz2 bugzilla-1bbfb0eb667bcce1875a68aeaca4b2b753e6edb8.zip |
Bug 325691: terms.Bugs not used everywhere in templates - Patch by victory <spam@bmo2007.rsz.jp> r=wicked a=mkanat
5 files changed, 5 insertions, 5 deletions
diff --git a/template/en/default/account/prefs/saved-searches.html.tmpl b/template/en/default/account/prefs/saved-searches.html.tmpl index 7f0052bba..35d09e023 100644 --- a/template/en/default/account/prefs/saved-searches.html.tmpl +++ b/template/en/default/account/prefs/saved-searches.html.tmpl @@ -42,7 +42,7 @@ </th> </tr> <tr> - <td>My Bugs</td> + <td>My [% terms.Bugs %]</td> <td> [% filtered_username = user.login FILTER url_quote %] <a href="[% Param('mybugstemplate').replace('%userid%', filtered_username) %]">Run</a> diff --git a/template/en/default/admin/components/edit.html.tmpl b/template/en/default/admin/components/edit.html.tmpl index 7fa374883..d2ae789ca 100644 --- a/template/en/default/admin/components/edit.html.tmpl +++ b/template/en/default/admin/components/edit.html.tmpl @@ -79,7 +79,7 @@ <td>[% terms.Bugs %]:</td> <td> [% IF comp.bug_count > 0 %] - <a title="Bugs in component '[% comp.name FILTER html %]'" + <a title="[% terms.Bugs %] in component '[% comp.name FILTER html %]'" href="buglist.cgi?component= [%- comp.name FILTER url_quote %]&product= [%- prod.name FILTER url_quote %]">[% comp.bug_count %]</a> diff --git a/template/en/default/admin/keywords/list.html.tmpl b/template/en/default/admin/keywords/list.html.tmpl index b0b909618..085333273 100755 --- a/template/en/default/admin/keywords/list.html.tmpl +++ b/template/en/default/admin/keywords/list.html.tmpl @@ -48,7 +48,7 @@ }, { name => "bug_count" - heading => "Bugs" + heading => "$terms.Bugs" align => "right" contentlink => "buglist.cgi?keywords=%%name%%" }, diff --git a/template/en/default/reports/chart.png.tmpl b/template/en/default/reports/chart.png.tmpl index 119ff344f..a3933e4b7 100644 --- a/template/en/default/reports/chart.png.tmpl +++ b/template/en/default/reports/chart.png.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] -[% y_label = "Bugs" %] +[% y_label = "$terms.Bugs" %] [% x_label = "Time" %] [% IF chart.cumulate %] diff --git a/template/en/default/reports/report-simple.html.tmpl b/template/en/default/reports/report-simple.html.tmpl index 04db73b76..9ef863835 100644 --- a/template/en/default/reports/report-simple.html.tmpl +++ b/template/en/default/reports/report-simple.html.tmpl @@ -22,7 +22,7 @@ <html> - [% title = "Bug List" %] + [% title = "$terms.Bug List" %] <head> <title>[% title FILTER html %]</title> |