diff options
author | Matt Selsky <selsky@columbia.edu> | 2014-12-11 19:03:36 +0100 |
---|---|---|
committer | Gervase Markham <gerv@gerv.net> | 2014-12-11 19:03:36 +0100 |
commit | 8ab6357c5ad5aca8ecc0a622a3d0ceed7e3eb905 (patch) | |
tree | da8ab11f6fc65cc00253d111aea47343df6ffb64 /template | |
parent | 4d1c399ff6391b70e15a2c06d5bec10e2aaa3d3c (diff) | |
download | bugzilla-8ab6357c5ad5aca8ecc0a622a3d0ceed7e3eb905.tar.gz bugzilla-8ab6357c5ad5aca8ecc0a622a3d0ceed7e3eb905.tar.xz |
1099029: Display localized bug statuses in tooltips when editing the bug status workflow. r=gerv, a=simon.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/workflow/edit.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/workflow/edit.html.tmpl b/template/en/default/admin/workflow/edit.html.tmpl index a85db2339..d7d31cbc9 100644 --- a/template/en/default/admin/workflow/edit.html.tmpl +++ b/template/en/default/admin/workflow/edit.html.tmpl @@ -62,7 +62,7 @@ [% checked = workflow.${status.id}.${new_status.id}.defined ? 1 : 0 %] [% mandatory = (status.id && new_status.name == Param("duplicate_or_move_bug_status")) ? 1 : 0 %] <td class="[% "checked" IF checked || mandatory %]" - title="From [% status.name FILTER html %] to [% new_status.name FILTER html %]"> + title="From [% display_value("bug_status", status.name) FILTER html %] to [% display_value("bug_status", new_status.name) FILTER html %]"> <input type="checkbox" name="w_[% status.id %]_[% new_status.id %]" id="w_[% status.id %]_[% new_status.id %]" onclick="toggle_cell(this)" [%+ "checked='checked'" IF checked || mandatory %] |