~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

Viewing changes to template/en/default/admin/keywords/confirm-delete.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): Terry Weissman <terry@mozilla.org>
20
 
  #                 Vlad Dascalu <jocuri@softhome.net>
21
 
  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
22
 
  #%]
23
 
 
24
 
[%# INTERFACE:
25
 
  # keyword: A Bugzilla::Keyword object.
26
 
  #%]
27
 
 
28
 
[% PROCESS global/header.html.tmpl
29
 
  title = "Delete Keyword"
30
 
%]
31
 
 
32
 
<p>
33
 
  [% IF keyword.bug_count == 1 %]
34
 
    There is one [% terms.bug %] with this keyword set.
35
 
  [% ELSE %]
36
 
    There are [% keyword.bug_count FILTER html %] [%+ terms.bugs %] with
37
 
    this keyword set.
38
 
  [% END %]
39
 
  
40
 
  Are you <b>sure</b> you want to delete
41
 
  the <code>[% keyword.name FILTER html %]</code> keyword?
42
 
</p>
43
 
 
44
 
<form method="post" action="editkeywords.cgi">
45
 
  <input type="hidden" name="id" value="[% keyword.id FILTER html %]">
46
 
  <input type="hidden" name="action" value="delete">
47
 
  <input type="hidden" name="reallydelete" value="1">
48
 
  <input type="hidden" name="token" value="[% token FILTER html %]">
49
 
  <input type="submit" id="delete"
50
 
         value="Yes, really delete the keyword">
51
 
</form>
52
 
 
53
 
<p><a href="editkeywords.cgi">Edit other keywords</a>.</p>
54
 
 
55
 
[% PROCESS global/footer.html.tmpl %]