From: lpsolit%gmail.com <> Date: Wed, 1 Jun 2005 07:29:55 +0000 (+0000) Subject: Bug 215208: Descriptions in the bug activity tables are still in english - Patch... X-Git-Tag: bugzilla-2.20rc1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe1b275f2c39d9145b0bdbac76b4dfc1862840c5;p=thirdparty%2Fbugzilla.git Bug 215208: Descriptions in the bug activity tables are still in english - Patch by Emmanuel Seyman r=myk a=myk --- diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl index 3aa398e7af..661c3ec803 100644 --- a/template/en/default/bug/activity/table.html.tmpl +++ b/template/en/default/bug/activity/table.html.tmpl @@ -34,6 +34,7 @@ #%] [% PROCESS global/variables.none.tmpl %] +[% PROCESS "global/field-descs.none.tmpl" %] [% PROCESS bug/time.html.tmpl %] @@ -80,6 +81,10 @@ change.fieldname == 'remaining_time' || change.fieldname == 'work_time' %] [% PROCESS formattimeunit time_unit=change.removed %] + [% ELSIF change.fieldname == 'bug_status' %] + [% status_descs.${change.removed} FILTER html %] + [% ELSIF change.fieldname == 'resolution' %] + [% resolution_descs.${change.removed} FILTER html %] [% ELSE %] [% change.removed FILTER html %] [% END %] @@ -93,6 +98,10 @@ change.fieldname == 'remaining_time' || change.fieldname == 'work_time' %] [% PROCESS formattimeunit time_unit=change.added %] + [% ELSIF change.fieldname == 'bug_status' %] + [% status_descs.${change.added} FILTER html %] + [% ELSIF change.fieldname == 'resolution' %] + [% resolution_descs.${change.added} FILTER html %] [% ELSE %] [% change.added FILTER html %] [% END %]