From 5f77ed27305d20ec9c28e637d6194ed3e87efd02 Mon Sep 17 00:00:00 2001 From: "wurblzap%gmail.com" <> Date: Tue, 11 Mar 2008 00:37:56 +0000 Subject: Bug 421931 – Group control identifiers on product edit page should be localizable. Patch by Marc Schumann ; r=LpSolit, a=LpSolit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/en/default/admin/products/edit.html.tmpl | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'template/en/default/admin/products') diff --git a/template/en/default/admin/products/edit.html.tmpl b/template/en/default/admin/products/edit.html.tmpl index 19a125062..2d346c665 100644 --- a/template/en/default/admin/products/edit.html.tmpl +++ b/template/en/default/admin/products/edit.html.tmpl @@ -22,8 +22,6 @@ # # classification: Bugzilla::Classification object; The classification # the product is in - # - # groups_controls: a hash of group controls related to the product. #%] [% title = BLOCK %]Edit Product '[% product.name FILTER html %]'[% END %] @@ -33,6 +31,12 @@ style_urls = ['skins/standard/admin.css'] %] +[% group_control = {${constants.CONTROLMAPNA} => 'NA', + ${constants.CONTROLMAPSHOWN} => 'Shown', + ${constants.CONTROLMAPDEFAULT} => 'Default', + ${constants.CONTROLMAPMANDATORY} => 'Mandatory'} + %] +
@@ -103,12 +107,12 @@ versions:
- [% IF group_controls.size %] - [% FOREACH g = group_controls.values %] + [% IF product.group_controls.size %] + [% FOREACH g = product.group_controls.values %] [% g.group.name FILTER html %]:  [% IF g.group.isactive %] - [% g.membercontrol FILTER html %]/ - [% g.othercontrol FILTER html %] + [% group_control.${g.membercontrol} FILTER html %]/ + [% group_control.${g.othercontrol} FILTER html %] [% IF g.entry %], ENTRY[% END %] [% IF g.canedit %], CANEDIT[% END %] [% IF g.editcomponents %], editcomponents[% END %] -- cgit v1.2.3-24-g4f1b