1
[%# The contents of this file are subject to the Mozilla Public
2
# License Version 1.1 (the "License"); you may not use this file
3
# except in compliance with the License. You may obtain a copy of
4
# the License at http://www.mozilla.org/MPL/
6
# Software distributed under the License is distributed on an "AS
7
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
8
# implied. See the License for the specific language governing
9
# rights and limitations under the License.
11
# The Original Code is the Bugzilla Bug Tracking System.
13
# The Initial Developer of the Original Code is Netscape Communications
14
# Corporation. Portions created by Netscape are
15
# Copyright (C) 1998 Netscape Communications Corporation. All
18
# Contributor(s): Terry Weissman <terry@mozilla.org>
19
# Vlad Dascalu <jocuri@softhome.net>
20
# Max Kanat-Alexander <mkanat@bugzilla.org>
24
# action: string; the current action (either "update" or "delete").
25
# keyword: A Bugzilla::Keyword object
28
[% IF action == "update" %]
29
[% title = "Update keyword"%]
30
[% status = "updated" %]
31
[% ELSIF action == "delete" %]
32
[% title = "Delete keyword" %]
33
[% status = "deleted" %]
36
[% PROCESS global/header.html.tmpl %]
38
Keyword [% keyword.name FILTER html %] [%+ status FILTER html %].
41
<b>After you have finished deleting or modifying keywords,
42
you need to rebuild the keyword cache.</b><br>
44
Warning: on a very large installation of [% terms.Bugzilla %],
45
this can take several minutes.
49
<b><a href="sanitycheck.cgi?rebuildkeywordcache=1">Rebuild
53
<p><a href="editkeywords.cgi">Edit more keywords</a>.</p>
55
[% PROCESS global/footer.html.tmpl %]