summaryrefslogtreecommitdiffstats
path: root/template/en/default/search/search-specific.html.tmpl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-05-07 22:26:14 +0200
committerlpsolit%gmail.com <>2005-05-07 22:26:14 +0200
commitab723ea0b90a8a5aae1b264246a17936d7d230b5 (patch)
treea499cc46552a821b32f5951bfde9c2fb1e90b8bd /template/en/default/search/search-specific.html.tmpl
parent9af44ff9bcd32fd7d2c084c7d662148ccbdd178d (diff)
downloadbugzilla-ab723ea0b90a8a5aae1b264246a17936d7d230b5.tar.gz
bugzilla-ab723ea0b90a8a5aae1b264246a17936d7d230b5.tar.xz
Bug 290972: In the "Find a Specific Bug" page, the status of the bug being searched cannot be translated - Patch by Emmanuel Seyman <eseyman@linagora.com> r=myk a=myk
Diffstat (limited to 'template/en/default/search/search-specific.html.tmpl')
-rw-r--r--template/en/default/search/search-specific.html.tmpl11
1 files changed, 7 insertions, 4 deletions
diff --git a/template/en/default/search/search-specific.html.tmpl b/template/en/default/search/search-specific.html.tmpl
index 8b351bc36..8edda69ee 100644
--- a/template/en/default/search/search-specific.html.tmpl
+++ b/template/en/default/search/search-specific.html.tmpl
@@ -59,10 +59,13 @@ for "crash secure SSL flash".
</td>
<td>
<select name="bug_status" id="bug_status">
- [% FOREACH s = ['open', 'closed', 'all'] %]
- <option value="__[% s %]__"
- [% " selected" IF default.bug_status.0 == "__${s}__" %]>
- [% s %]
+ [% statuses = [ { name = 'open', label = "Open" },
+ { name = 'closed', label = "Closed" },
+ { name = 'all', label = "All" } ] %]
+ [% FOREACH status = statuses %]
+ <option value="__[% status.name %]__"
+ [% " selected" IF default.bug_status.0 == "__${status.name}__" %]>
+ [% status.label FILTER html %]
</option>
[% END %]
</select>