diff options
author | lpsolit%gmail.com <> | 2005-08-22 07:18:01 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-22 07:18:01 +0200 |
commit | 947c6e6e8c1451647bbf9b967bd95bfe4ec6fdfa (patch) | |
tree | f5c89db066a3f921da91f08fc0d9e4c19899942f /template | |
parent | 8e6ee8cf8a3ec1d743e0a7ad6270b095355f149b (diff) | |
download | bugzilla-947c6e6e8c1451647bbf9b967bd95bfe4ec6fdfa.tar.gz bugzilla-947c6e6e8c1451647bbf9b967bd95bfe4ec6fdfa.tar.xz |
Bug 303527: The bug entry page does not use localised terms for statuses - Patch by Marc Schumann <wurblzap@gmail.com> r=myk a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index de246706d..08aa88ecf 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -456,9 +456,13 @@ function set_assign_to() { <select name="[% sel.name %]"> [%- FOREACH x = ${sel.name} %] <option value="[% x FILTER html %]" - [% " selected=\"selected\"" IF x == default.${sel.name} %]>[% x FILTER html -%] - </option> - [%- END %] + [% " selected=\"selected\"" IF x == default.${sel.name} %]> + [% IF sel.name == "bug_status" %] + [% status_descs.$x FILTER html %] + [% ELSE %] + [% x FILTER html %] + [% END %]</option> + [% END %] </select> </td> [% END %] |