summaryrefslogtreecommitdiffstats
path: root/template/en/default/attachment
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-07-20 06:14:15 +0200
committermkanat%bugzilla.org <>2009-07-20 06:14:15 +0200
commit7bf1c7d23ffb82247cfaf73069908f29bf891e35 (patch)
tree70ced1ed0f1ffee3ec06375cf4b8f1c38cda19e3 /template/en/default/attachment
parentd7e5d9fdab1be995187d62e93fa7ebdc7a2ea439 (diff)
downloadbugzilla-7bf1c7d23ffb82247cfaf73069908f29bf891e35.tar.gz
bugzilla-7bf1c7d23ffb82247cfaf73069908f29bf891e35.tar.xz
Bug 488943: Clarify the text of the "Private" checkbox for comments and attachments
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=pyrzak, r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/attachment')
-rw-r--r--template/en/default/attachment/create.html.tmpl7
-rw-r--r--template/en/default/attachment/edit.html.tmpl7
2 files changed, 10 insertions, 4 deletions
diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl
index 687cd7cbf..f725f1076 100644
--- a/template/en/default/attachment/create.html.tmpl
+++ b/template/en/default/attachment/create.html.tmpl
@@ -110,10 +110,13 @@
<tr>
<th>Privacy:</th>
<td>
- <em>If the attachment is private, check the box below.</em><br>
<input type="checkbox" name="isprivate" id="isprivate"
value="1" onClick="updateCommentPrivacy(this)">
- <label for="isprivate">Private</label>
+ <label for="isprivate">
+ Make attachment and comment private (visible only to members of
+ the <strong>[% Param('insidergroup') FILTER html %]</strong>
+ group)
+ </label>
</td>
</tr>
[% END %]
diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl
index db92d18d3..1c6d22c87 100644
--- a/template/en/default/attachment/edit.html.tmpl
+++ b/template/en/default/attachment/edit.html.tmpl
@@ -94,10 +94,13 @@
<input type="checkbox" id="isobsolete" name="isobsolete" value="1"
[%+ 'checked="checked"' IF attachment.isobsolete %]>
<label for="isobsolete">obsolete</label>
- [% IF (Param("insidergroup") && user.in_group(Param("insidergroup"))) %]
+ [% IF user.is_insider %]
+ <br>
<input type="checkbox" id="isprivate" name="isprivate" value="1"
[% " checked" IF attachment.isprivate %]>
- <label for="isprivate">private</label><br>
+ <label for="isprivate">private (only visible to
+ <strong>[% Param('insidergroup') FILTER html %]</strong>)
+ </label>
[% END %]
<br>
</small>