~ubuntu-branches/ubuntu/intrepid/bugzilla/intrepid

« back to all changes in this revision

Viewing changes to template/en/default/bug/process/confirm-duplicate.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[%# 1.0@bugzilla.org %]
2
 
[%# The contents of this file are subject to the Mozilla Public
3
 
  # License Version 1.1 (the "License"); you may not use this file
4
 
  # except in compliance with the License. You may obtain a copy of
5
 
  # the License at http://www.mozilla.org/MPL/
6
 
  #
7
 
  # Software distributed under the License is distributed on an "AS
8
 
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
 
  # implied. See the License for the specific language governing
10
 
  # rights and limitations under the License.
11
 
  #
12
 
  # The Original Code is the Bugzilla Bug Tracking System.
13
 
  #
14
 
  # The Initial Developer of the Original Code is Netscape Communications
15
 
  # Corporation. Portions created by Netscape are
16
 
  # Copyright (C) 1998 Netscape Communications Corporation. All
17
 
  # Rights Reserved.
18
 
  #
19
 
  # Contributor(s): Myk Melez <myk@mozilla.org>
20
 
  #%]
21
 
 
22
 
[%# INTERFACE:
23
 
  # original_bug_id: number; the bug number for the bug
24
 
  #   against which a bug is being duped
25
 
  # duplicate_bug_id: number; the bug number for the bug
26
 
  #   being duped
27
 
  # cclist_accessible: boolean; whether or not users on the cc: list
28
 
  #   of the original bug can access that bug.
29
 
  #%]
30
 
 
31
 
[% PROCESS global/variables.none.tmpl %]
32
 
[% PROCESS global/header.html.tmpl title="Duplicate Warning" %]
33
 
[% orig_bug = "$terms.bug $original_bug_id"
34
 
     FILTER bug_link(original_bug_id) %]
35
 
 
36
 
<p>
37
 
  When marking [% terms.abug %] as a duplicate, the reporter of the duplicate
38
 
  is normally added to the CC list of the original. The permissions
39
 
  on [% orig_bug FILTER none %] (the original) are currently set
40
 
  such that the reporter would not normally be able to see it.
41
 
</p>
42
 
 
43
 
<p>
44
 
  <b>Adding the reporter to the CC list of [% orig_bug FILTER none %]
45
 
  [% IF cclist_accessible %]
46
 
    will immediately
47
 
  [% ELSE %]
48
 
    might, in the future,
49
 
  [% END %]
50
 
  allow him/her access to view this [% terms.bug %].</b>
51
 
  Do you wish to do this?
52
 
</p>
53
 
 
54
 
<form method="post" action="process_bug.cgi">
55
 
 
56
 
[% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password)$" %]
57
 
 
58
 
<p>
59
 
  <input type="radio" name="confirm_add_duplicate" value="1">
60
 
    Yes, add the reporter to CC list on [% orig_bug FILTER none %]
61
 
</p>
62
 
<p>
63
 
  <input type="radio" name="confirm_add_duplicate" value="0" checked="checked">
64
 
    No, do not add the reporter to CC list on [% orig_bug FILTER none %]
65
 
</p>
66
 
<p>
67
 
  [% "Throw away my changes, and revisit $terms.bug $duplicate_bug_id"
68
 
     FILTER bug_link(duplicate_bug_id) FILTER none %]
69
 
</p>
70
 
<p>
71
 
  <input type="submit" id="process" value="Submit">
72
 
</p>
73
 
 
74
 
</form>
75
 
 
76
 
[% PROCESS global/footer.html.tmpl %]