diff options
author | wurblzap%gmail.com <> | 2008-03-11 01:37:56 +0100 |
---|---|---|
committer | wurblzap%gmail.com <> | 2008-03-11 01:37:56 +0100 |
commit | 5f77ed27305d20ec9c28e637d6194ed3e87efd02 (patch) | |
tree | 7cb30a65618e0bf6ae6350d33a0576f70dfb1e44 /template/en/default | |
parent | 8395dfa9da99caa8bdfa4cef7c7551a2b03a22fa (diff) | |
download | bugzilla-5f77ed27305d20ec9c28e637d6194ed3e87efd02.tar.gz bugzilla-5f77ed27305d20ec9c28e637d6194ed3e87efd02.tar.xz |
Bug 421931 â Group control identifiers on product edit page should be localizable.
Patch by Marc Schumann <wurblzap@gmail.com>;
r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/admin/products/edit.html.tmpl | 16 |
1 files changed, 10 insertions, 6 deletions
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'} + %] + <form method="post" action="editproducts.cgi"> <table border="0" cellpadding="4" cellspacing="0"> @@ -103,12 +107,12 @@ versions:</a> </a> </th> <td> - [% IF group_controls.size %] - [% FOREACH g = group_controls.values %] + [% IF product.group_controls.size %] + [% FOREACH g = product.group_controls.values %] <b>[% g.group.name FILTER html %]:</b> [% 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 %] |