aboutsummaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/workflow/comment.html.tmpl
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-11-18 07:04:57 +0000
committermkanat%bugzilla.org <>2009-11-18 07:04:57 +0000
commita44e152480c9c22ca9b3a89da774317c5590d21b (patch)
tree035210618c0987beaffc953cbf09611866e0d3e5 /template/en/default/admin/workflow/comment.html.tmpl
parentbc19f61c0c33e71a00dcc8e4ca3e791a9e3b661d (diff)
downloadbugs-a44e152480c9c22ca9b3a89da774317c5590d21b.tar
bugs-a44e152480c9c22ca9b3a89da774317c5590d21b.tar.gz
bugs-a44e152480c9c22ca9b3a89da774317c5590d21b.tar.bz2
bugs-a44e152480c9c22ca9b3a89da774317c5590d21b.tar.xz
bugs-a44e152480c9c22ca9b3a89da774317c5590d21b.zip
Bug 519142: Replace IF/ELSE statements about bug_status/resolution with just a display_value call, and use display_value in more places to translate field values.
Patch by Vitaly Fedrushkov <vitaly.fedrushkov@gmail.com> r=mkanat, a=mkanat
Diffstat (limited to 'template/en/default/admin/workflow/comment.html.tmpl')
-rw-r--r--template/en/default/admin/workflow/comment.html.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/admin/workflow/comment.html.tmpl b/template/en/default/admin/workflow/comment.html.tmpl
index 2fa78f003..a7a6a74c2 100644
--- a/template/en/default/admin/workflow/comment.html.tmpl
+++ b/template/en/default/admin/workflow/comment.html.tmpl
@@ -49,7 +49,7 @@
<th>&nbsp;</th>
[% FOREACH status = statuses %]
<th class="col-header[% status.is_open ? " open-status" : " closed-status" %]">
- [% status.name FILTER html %]
+ [% display_value("bug_status", status.name) FILTER html %]
</th>
[% END %]
</tr>
@@ -59,7 +59,7 @@
[% FOREACH status = p.merge(statuses) %]
<tr class="highlight">
<th align="right" class="[% status.is_open ? "open-status" : "closed-status" %]">
- [% status.name FILTER html %]
+ [% display_value("bug_status", status.name) FILTER html %]
</th>
[% FOREACH new_status = statuses %]