PageRenderTime 62ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 1ms

/source/mydroid/external/webkit/BugsSite/template/en/default/global/user-error.html.tmpl

https://bitbucket.org/thejeshgn/kindle-fire
Go Template | 1682 lines | 1416 code | 266 blank | 0 comment | 0 complexity | 9575cd46e28d1dbb69be60f55d9eb1e7 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, LGPL-2.0, AGPL-1.0, LGPL-2.1, Apache-2.0, AGPL-3.0, LGPL-3.0, GPL-2.0, BSD-3-Clause, GPL-3.0, 0BSD
  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/
  5. #
  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.
  10. #
  11. # The Original Code is the Bugzilla Bug Tracking System.
  12. #
  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
  16. # Rights Reserved.
  17. #
  18. # Contributor(s): Gervase Markham <gerv@gerv.net>
  19. # FrĂŠdĂŠric Buclin <LpSolit@gmail.com>
  20. #%]
  21. [%# INTERFACE:
  22. # header_done: boolean. True if the Bugzilla header has already been printed.
  23. # error: string. The tag of the error, or the error message to be displayed
  24. # (deprecated). May contain HTML if it's an error message.
  25. #%]
  26. [%# This is a list of all the possible user errors. Please keep them in
  27. # alphabetical order by error tag, and leave a blank line between errors.
  28. #
  29. # Note that you must explicitly filter every single template variable
  30. # in this file; if you do not wish to change it, use the "none" filter.
  31. #
  32. # Extension- or custom-specific error handling can be easily added
  33. # via hooks: just place your <extension>-errors.html.tmpl into
  34. # template/en/extension/hook/global/user-error.html.tmpl/errors/
  35. # Note: be aware of uniqueness of error string parameter value, since
  36. # nobody can guarantee the hook files processing order in the future
  37. #%]
  38. [% PROCESS global/variables.none.tmpl %]
  39. [% PROCESS "global/field-descs.none.tmpl" %]
  40. [% DEFAULT title = "Error" %]
  41. [% error_message = BLOCK %]
  42. [% IF error == "account_creation_disabled" %]
  43. [% title = "Account Creation Disabled" %]
  44. User account creation has been disabled.
  45. <hr>
  46. New accounts must be created by an administrator. The
  47. maintainer is [% Param("maintainer") %].
  48. [% ELSIF error == "account_creation_restricted" %]
  49. [% title = "Account Creation Restricted" %]
  50. User account creation has been restricted.
  51. <hr>
  52. Contact your administrator or the maintainer
  53. ([% Param("maintainer") %]) for information about
  54. creating an account.
  55. [% ELSIF error == "account_disabled" %]
  56. [% title = "Account Disabled" %]
  57. [% disabled_reason FILTER none %]
  58. <hr>
  59. If you believe your account should be restored, please
  60. send email to [% Param("maintainer") %] explaining why.
  61. [% ELSIF error == "account_exists" %]
  62. [% title = "Account Already Exists" %]
  63. There is already an account with
  64. [% IF email %]
  65. the login name [% email FILTER html %].
  66. [% ELSE %]
  67. that login name.
  68. [% END %]
  69. [% ELSIF error == "alias_has_comma_or_space" %]
  70. [% title = "Invalid Characters In Alias" %]
  71. The alias you entered, <em>[% alias FILTER html %]</em>,
  72. contains one or more commas or spaces. Aliases cannot contain
  73. commas or spaces because those characters are used to separate
  74. aliases from each other in lists. Please choose an alias
  75. that does not contain commas and spaces.
  76. [% ELSIF error == "alias_in_use" %]
  77. [% title = "Alias In Use" %]
  78. [% terms.Bug %] [%+ bug_id FILTER bug_link(bug_id) FILTER none %]
  79. has already taken the alias <em>[% alias FILTER html %]</em>.
  80. Please choose another one.
  81. [% ELSIF error == "alias_is_numeric" %]
  82. [% title = "Alias Is Numeric" %]
  83. You tried to give this [% terms.bug %] the alias <em>[% alias FILTER html %]</em>,
  84. but aliases cannot be merely numbers, since they could
  85. then be confused with [% terms.bug %] IDs. Please choose an
  86. alias containing at least one letter.
  87. [% ELSIF error == "alias_too_long" %]
  88. [% title = "Alias Too Long" %]
  89. [% terms.Bug %] aliases cannot be longer than 20 characters.
  90. Please choose a shorter alias.
  91. [% ELSIF error == "auth_cant_create_account" %]
  92. [% title = "Can't create accounts" %]
  93. This site is using an authentication scheme which does not permit
  94. account creation. Please contact an administrator to get a new account
  95. created.
  96. [% ELSIF error == "auth_failure" %]
  97. [% title = "Authorization Required" %]
  98. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  99. Sorry,
  100. [% IF group %]
  101. you aren't a member of the '[% group FILTER html %]' group,
  102. [% END %]
  103. [% IF reason %]
  104. [% IF group %] and [% END %]
  105. [% IF reason == "cant_bless" %]
  106. you don't have permissions to add or remove people from a group,
  107. [% ELSIF reason == "not_visible" %]
  108. there are visibility restrictions on certain user groups,
  109. [% END %]
  110. [% END %]
  111. [% IF group || reason %] and so [% END %] you are not authorized to
  112. [% IF action == "access" %]
  113. access
  114. [% ELSIF action == "add" %]
  115. add new
  116. [% ELSIF action == "begin" %]
  117. begin
  118. [% ELSIF action == "modify" %]
  119. modify
  120. [% ELSIF action == "delete" %]
  121. delete
  122. [% ELSIF action == "edit" %]
  123. add, modify or delete
  124. [% ELSIF action == "move" %]
  125. move
  126. [% ELSIF action == "run" %]
  127. run
  128. [% ELSIF action == "schedule" %]
  129. schedule
  130. [% ELSIF action == "use" %]
  131. use
  132. [% ELSIF action == "approve" %]
  133. approve
  134. [% END %]
  135. [% IF object == "administrative_pages" %]
  136. administrative pages
  137. [% ELSIF object == "attachment" %]
  138. this attachment
  139. [% ELSIF object == "bugs" %]
  140. [%+ terms.bugs %]
  141. [% ELSIF object == "charts" %]
  142. the "New Charts" feature
  143. [% ELSIF object == "classifications" %]
  144. classifications
  145. [% ELSIF object == "components" %]
  146. components
  147. [% ELSIF object == "custom_fields" %]
  148. custom fields
  149. [% ELSIF object == "field_values" %]
  150. field values
  151. [% ELSIF object == "flagtypes" %]
  152. flag types
  153. [% ELSIF object == "group_access" %]
  154. group access
  155. [% ELSIF object == "groups" %]
  156. groups
  157. [% ELSIF object == "keywords" %]
  158. keywords
  159. [% ELSIF object == "milestones" %]
  160. milestones
  161. [% ELSIF object == "multiple_bugs" %]
  162. multiple [% terms.bugs %] at once
  163. [% ELSIF object == "parameters" %]
  164. parameters
  165. [% ELSIF object == "products" %]
  166. products
  167. [% ELSIF object == "quips" %]
  168. quips
  169. [% ELSIF object == "reports" %]
  170. whine reports
  171. [% ELSIF object == "sanity_check" %]
  172. a sanity check
  173. [% ELSIF object == "settings" %]
  174. settings
  175. [% ELSIF object == "sudo_session" %]
  176. a sudo session
  177. [% ELSIF object == "timetracking_summaries" %]
  178. time-tracking summary reports
  179. [% ELSIF object == "user" %]
  180. the user you specified
  181. [% ELSIF object == "users" %]
  182. users
  183. [% ELSIF object == "versions" %]
  184. versions
  185. [% ELSIF object == "workflow" %]
  186. the workflow
  187. [% END %].
  188. [% Hook.process("auth_failure") %]
  189. [% ELSIF error == "attachment_deletion_disabled" %]
  190. [% title = "Attachment Deletion Disabled" %]
  191. Attachment deletion is disabled on this installation.
  192. [% ELSIF error == "attachment_removed" %]
  193. [% title = "Attachment Removed" %]
  194. The attachment you are attempting to access has been removed.
  195. [% ELSIF error == "bug_access_denied" %]
  196. [% title = "Access Denied" %]
  197. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  198. You are not authorized to access [% terms.bug %] #[% bug_id FILTER html %].
  199. [% ELSIF error == "bug_access_query" %]
  200. [% title = "Access Denied" %]
  201. [% docslinks = {'myaccount.html' => 'Creating an account'} %]
  202. You are not authorized to access [% terms.bug %] #[% bug_id FILTER html %].
  203. To see this [% terms.bug %], you must
  204. first <a href="show_bug.cgi?id=
  205. [% bug_id FILTER url_quote %]&amp;GoAheadAndLogIn=1">log
  206. in to an account</a> with the appropriate permissions.
  207. [% ELSIF error == "buglist_parameters_required" %]
  208. [% title = "Parameters Required" %]
  209. [% docslinks = {'query.html' => "Searching for $terms.bugs",
  210. 'query.html#list' => "$terms.Bug lists"} %]
  211. You may not search, or create saved searches, without any search terms.
  212. [% ELSIF error == "chart_too_large" %]
  213. [% title = "Chart Too Large" %]
  214. Sorry, but 2000 x 2000 is the maximum size for a chart.
  215. [% ELSIF error == "comment_invalid_isprivate" %]
  216. You tried to modify the privacy of comment id [% id FILTER html %],
  217. but that is not a valid comment on this [% terms.bug %].
  218. [% ELSIF error == "comment_required" %]
  219. [% title = "Comment Required" %]
  220. You have to specify a
  221. [% IF old && new %]
  222. <b>comment</b> when changing the status of [% terms.abug %] from
  223. [%+ old.name FILTER html %] to [% new.name FILTER html %].
  224. [% ELSIF new %]
  225. description for this [% terms.bug %].
  226. [% ELSE %]
  227. <b>comment</b> on this change.
  228. [% END %]
  229. [% ELSIF error == "comment_too_long" %]
  230. [% title = "Comment Too Long" %]
  231. Comments cannot be longer than 65,535 characters.
  232. [% ELSIF error == "auth_classification_not_enabled" %]
  233. [% title = "Classification Not Enabled" %]
  234. Sorry, classification is not enabled.
  235. [% ELSIF error == "classification_not_specified" %]
  236. [% title = "You Must Supply A Classification Name" %]
  237. You must enter a classification name.
  238. [% ELSIF error == "classification_already_exists" %]
  239. [% title = "Classification Already Exists" %]
  240. A classification with the name '[% name FILTER html %]' already exists.
  241. [% ELSIF error == "classification_doesnt_exist" %]
  242. [% title = "Classification Does Not Exist" %]
  243. The classification '[% name FILTER html %]' does not exist.
  244. [% ELSIF error == "classification_doesnt_exist_for_product" %]
  245. [% title = "Classification Does Not Exist For Product" %]
  246. The classification '[% classification FILTER html %]' does not exist
  247. for product '[% product FILTER html %]'.
  248. [% ELSIF error == "classification_invalid_sortkey" %]
  249. [% title = "Invalid Sortkey for Classification" %]
  250. The sortkey <em>[% sortkey FILTER html %]</em> for the '[% name FILTER html %]'
  251. classification is invalid. It must be a positive integer.
  252. [% ELSIF error == "classification_not_deletable" %]
  253. [% title = "Default Classification Can Not Be Deleted" %]
  254. You can not delete the default classification
  255. [% ELSIF error == "classification_has_products" %]
  256. Sorry, there are products for this classification. You
  257. must reassign those products to another classification before you
  258. can delete this one.
  259. [% ELSIF error == "component_already_exists" %]
  260. [% title = "Component Already Exists" %]
  261. The <em>[% product.name FILTER html %]</em> product already has
  262. a component named <em>[% name FILTER html %]</em>.
  263. [% ELSIF error == "component_blank_description" %]
  264. [% title = "Blank Component Description Not Allowed" %]
  265. You must enter a non-blank description for this component.
  266. [% ELSIF error == "component_blank_name" %]
  267. [% title = "Blank Component Name Not Allowed" %]
  268. You must enter a name for this new component.
  269. [% ELSIF error == "component_has_bugs" %]
  270. [% title = BLOCK %]Component has [% terms.Bugs %][% END %]
  271. There are [% nb FILTER html %] [%+ terms.bugs %] entered for this component!
  272. You must reassign those [% terms.bugs %] to another component before you
  273. can delete this one.
  274. [% ELSIF error == "component_name_too_long" %]
  275. [% title = "Component Name Is Too Long" %]
  276. The name of a component is limited to 64 characters.
  277. '[% name FILTER html %]' is too long ([% name.length %] characters).
  278. [% ELSIF error == "component_need_initialowner" %]
  279. [% title = "Component Requires Default Assignee" %]
  280. A default assignee is required for this component.
  281. [% ELSIF error == "customfield_nonexistent" %]
  282. [% title = "Unknown Custom Field" %]
  283. There is no custom field with the name '[% name FILTER html %]'.
  284. [% ELSIF error == "customfield_not_obsolete" %]
  285. [% title = "Custom Field Not Obsolete" %]
  286. The custom field '[% name FILTER html %]' is not obsolete.
  287. Please obsolete a custom field before attempting to delete it.
  288. [% ELSIF error == "customfield_has_activity" %]
  289. [% title = "Custom Field Has Activity" %]
  290. The custom field '[% name FILTER html %]' cannot be deleted because
  291. it has recorded activity.
  292. [% ELSIF error == "customfield_has_contents" %]
  293. [% title = "Custom Field Has Contents" %]
  294. The custom field '[% name FILTER html %]' cannot be deleted because
  295. at least one [% terms.bug %] has a non empty value for this field.
  296. [% ELSIF error == "dependency_loop_multi" %]
  297. [% title = "Dependency Loop Detected" %]
  298. The following [% terms.bug %](s) would appear on both the "depends on"
  299. and "blocks" parts of the dependency tree if these changes
  300. are committed:
  301. [% FOREACH dep = deps %]
  302. [%+ dep FILTER bug_link(dep) FILTER none %]
  303. [% END %].
  304. This would create a circular dependency, which is not allowed.
  305. [% ELSIF error == "dependency_loop_single" %]
  306. [% title = "Dependency Loop Detected" %]
  307. You can't make [% terms.abug %] block itself or depend on itself.
  308. [% ELSIF error == "dupe_id_required" %]
  309. [% title = "Duplicate $terms.Bug Id Required" %]
  310. You must specify [% terms.abug %] id to mark this [% terms.bug %]
  311. as a duplicate of.
  312. [% ELSIF error == "dupe_not_allowed" %]
  313. [% title = "Cannot mark $terms.bugs as duplicates" %]
  314. You cannot mark [% terms.bugs %] as duplicates when
  315. changing several [% terms.bugs %] at once.
  316. [% ELSIF error == "dupe_loop_detected" %]
  317. [% title = "Loop detected among duplicates" %]
  318. You cannot mark [% terms.bug %] [%+ bug_id FILTER html %] as
  319. a duplicate of
  320. [% IF dupe_of == bug_id %]
  321. itself
  322. [% ELSE %]
  323. [%+ terms.bug %] [%+ dupe_of FILTER html %], because it
  324. would create a duplicate loop
  325. [% END %].
  326. [% ELSIF error == "email_change_in_progress" %]
  327. [% title = "Email Change Already In Progress" %]
  328. Email change already in progress; please check your email.
  329. [% ELSIF error == "email_confirmation_failed" %]
  330. [% title = "Email Address Confirmation Failed" %]
  331. Email address confirmation failed.
  332. [% ELSIF error == "email_no_text_plain" %]
  333. Your message did not contain any text.[% terms.Bugzilla %] does not
  334. accept HTML-only email, or HTML email with attachments.
  335. [% ELSIF error == "empty_group_description" %]
  336. [% title = "The group description can not be empty" %]
  337. You must enter a description for the group.
  338. [% ELSIF error == "empty_group_name" %]
  339. [% title = "The group name can not be empty" %]
  340. You must enter a name for the group.
  341. [% ELSIF error == "entry_access_denied" %]
  342. [% title = "Permission Denied" %]
  343. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  344. Sorry, either the product <em>[% product FILTER html %]</em>
  345. does not exist or you aren't authorized to
  346. enter [% terms.abug %] into it.
  347. [% ELSIF error == "field_already_exists" %]
  348. [% title = "Field Already Exists" %]
  349. The field '[% field.name FILTER html %]'
  350. ([% field.description FILTER html %]) already exists. Please
  351. choose another name.
  352. [% ELSIF error == "field_invalid_name" %]
  353. [% title = "Invalid Field Name" %]
  354. '[% name FILTER html %]' is not a valid name for a field.
  355. A name may contain only letters, numbers, and the underscore character.
  356. [% ELSIF error == "field_invalid_sortkey" %]
  357. [% title = "Invalid Sortkey for Field" %]
  358. The sortkey [% sortkey FILTER html %] that you have provided for
  359. this field is not a valid positive integer.
  360. [% ELSIF error == "field_missing_description" %]
  361. [% title = "Missing Description for Field" %]
  362. You must enter a description for this field.
  363. [% ELSIF error == "field_missing_name" %]
  364. [% title = "Missing Name for Field" %]
  365. You must enter a name for this field.
  366. [% ELSIF error == "fieldname_invalid" %]
  367. [% title = "Specified Field Does Not Exist" %]
  368. The field '[% field FILTER html %]' does not exist or
  369. cannot be edited with this interface.
  370. [% ELSIF error == "fieldname_not_specified" %]
  371. [% title = "Field Name Not Specified" %]
  372. No field name specified when trying to edit field values.
  373. [% ELSIF error == "fieldvalue_already_exists" %]
  374. [% title = "Field Value Already Exists" %]
  375. The value '[% value FILTER html %]' already exists for the
  376. '[%- field.description FILTER html %]' field.
  377. [% ELSIF error == "fieldvalue_doesnt_exist" %]
  378. [% title = "Specified Field Value Does Not Exist" %]
  379. The value '[% value FILTER html %]' does not exist for
  380. the '[% field FILTER html %]' field.
  381. [% ELSIF error == "fieldvalue_is_default" %]
  382. [% title = "Specified Field Value Is Default" %]
  383. '[% value FILTER html %]' is the default value for
  384. the '[% field.description FILTER html %]' field and cannot be deleted.
  385. [% IF user.groups.tweakparams %]
  386. You have to <a href="editparams.cgi?section=bugfields#
  387. [%- param_name FILTER url_quote %]">change</a> the default value first.
  388. [% END %]
  389. [% ELSIF error == "fieldvalue_name_too_long" %]
  390. [% title = "Field Value Is Too Long" %]
  391. The value of a field is limited to 60 characters.
  392. '[% value FILTER html %]' is too long ([% value.length %] characters).
  393. [% ELSIF error == "fieldvalue_not_editable" %]
  394. [% title = "Field Value Not Editable" %]
  395. The value '[% old_value FILTER html %]' cannot be renamed because
  396. it plays some special role for the '[% field.description FILTER html %]' field.
  397. [% ELSIF error == "fieldvalue_not_deletable" %]
  398. [% title = "Field Value Not Deletable" %]
  399. The value '[% value FILTER html %]' cannot be removed because
  400. it plays some special role for the '[% field.description FILTER html %]' field.
  401. [% ELSIF error == "fieldvalue_not_specified" %]
  402. [% title = "Field Value Not Specified" %]
  403. No field value specified when trying to edit a field value.
  404. [% ELSIF error == "fieldvalue_reserved_word" %]
  405. [% title = "Reserved Word Not Allowed" %]
  406. You cannot use the '[% value FILTER html %]' value for the
  407. '[% field.description FILTER html %]' field. This value is used internally.
  408. Please choose another one.
  409. [% ELSIF error == "fieldvalue_sortkey_invalid" %]
  410. [% title = "Invalid Field Value Sortkey" %]
  411. The sortkey '[% sortkey FILTER html %]' for the '[% name FILTER html %]'
  412. field is not a valid (positive) number.
  413. [% ELSIF error == "fieldvalue_still_has_bugs" %]
  414. [% title = "You Cannot Delete This Field Value" %]
  415. You cannot delete the value '[% value FILTER html %]' from the
  416. '[% field FILTER html %]' field, because there are still
  417. [%+ count FILTER html %] [%+ terms.bugs %] using it.
  418. [% ELSIF error == "fieldvalue_undefined" %]
  419. [% title = "Undefined Value Not Allowed" %]
  420. You must specify a value.
  421. [% ELSIF error == "file_not_specified" %]
  422. [% title = "No File Specified" %]
  423. You did not specify a file to attach.
  424. [% ELSIF error == "file_too_large" %]
  425. [% title = "File Too Large" %]
  426. The file you are trying to attach is [% filesize FILTER html %]
  427. kilobytes (KB) in size. Non-patch attachments cannot be more than
  428. [%+ Param('maxattachmentsize') %] KB. <br>
  429. We recommend that you store your attachment elsewhere
  430. [% IF Param("allow_attach_url") %]
  431. and then specify the URL to this file on the attachment
  432. creation page in the <b>AttachURL</b> field.
  433. [% ELSE %]
  434. and then insert the URL to it in a comment, or in the URL field
  435. for this [% terms.bug %].
  436. [% END %]
  437. <br>Alternately, if your attachment is an image, you could convert
  438. it to a compressible format like JPG or PNG and try again.
  439. [% ELSIF error == "flag_not_multiplicable" %]
  440. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  441. 'flags.html' => 'Using Flags'} %]
  442. You can't ask more than one person at a time for
  443. <em>[% type.name FILTER html %]</em>.
  444. [% ELSIF error == "flag_requestee_needs_privs" %]
  445. [% title = "Flag Requestee Needs Privileges" %]
  446. [% requestee.identity FILTER html %] does not have permission to set the
  447. <em>[% flagtype.name FILTER html %]</em> flag. Please select a user who is
  448. a member of the <em>[% flagtype.grant_group.name FILTER html %]</em> group.
  449. [% ELSIF error == "flag_requestee_unauthorized" %]
  450. [% title = "Flag Requestee Not Authorized" %]
  451. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  452. 'groups.html' => 'Group Security'} %]
  453. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  454. 'flags.html' => 'Using Flags'} %]
  455. You asked [% requestee.identity FILTER html %]
  456. for <code>[% flag_type.name FILTER html %]</code> on [% terms.bug %]
  457. [%+ bug_id FILTER html -%]
  458. [% IF attach_id && attach_id > 0 %], attachment [% attach_id FILTER html %][% END %],
  459. but that [% terms.bug %] has been restricted to users in certain groups,
  460. and the user you asked isn't in all the groups to which
  461. the [% terms.bug %] has been restricted.
  462. Please choose someone else to ask, or make the [% terms.bug %] accessible
  463. to users on its CC: list and add that user to the list.
  464. [% ELSIF error == "flag_requestee_unauthorized_attachment" %]
  465. [% title = "Flag Requestee Not Authorized" %]
  466. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  467. 'groups.html' => 'Group Security'} %]
  468. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  469. 'flags.html' => 'Using Flags'} %]
  470. You asked [% requestee.identity FILTER html %]
  471. for <code>[% flag_type.name FILTER html %]</code> on
  472. [%+ terms.bug %] [%+ bug_id FILTER html %],
  473. attachment [% attach_id FILTER html %], but that attachment
  474. is restricted to users in the [% Param("insidergroup") FILTER html %] group,
  475. and the user you asked isn't in that group. Please choose someone else
  476. to ask, or ask an administrator to add the user to the group.
  477. [% ELSIF error == "flag_type_cc_list_invalid" %]
  478. [% title = "Flag Type CC List Invalid" %]
  479. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  480. The CC list [% cc_list FILTER html %] must be less than 200 characters long.
  481. [% ELSIF error == "flag_type_component_without_product" %]
  482. [% title = "Product Missing" %]
  483. A component was selected without a product being selected.
  484. [% ELSIF error == "flag_type_description_invalid" %]
  485. [% title = "Flag Type Description Invalid" %]
  486. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  487. The description must be less than 32K.
  488. [% ELSIF error == "flag_type_name_invalid" %]
  489. [% title = "Flag Type Name Invalid" %]
  490. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  491. The name <em>[% name FILTER html %]</em> must be 1-50 characters long
  492. and must not contain any spaces or commas.
  493. [% ELSIF error == "flag_update_denied" %]
  494. [% title = "Flag Modification Denied" %]
  495. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  496. 'groups.html' => 'Group Security'} %]
  497. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  498. 'flags.html' => 'Using Flags'} %]
  499. You tried to [% IF status == "+" %] grant [% ELSIF status == "-" %] deny
  500. [% ELSIF status == "X" %] clear [% ELSE %] request [% END %]
  501. <code>[% name FILTER html %]
  502. [% IF status == "X" %][% old_status FILTER html %][% END %]</code>.
  503. Only a user with the required permissions may make this change.
  504. [% ELSIF error == "format_not_found" %]
  505. [% title = "Format Not Found" %]
  506. The requested format <em>[% format FILTER html %]</em> does not exist with
  507. a content type of <em>[% ctype FILTER html %]</em>.
  508. [% ELSIF error == "flag_type_sortkey_invalid" %]
  509. [% title = "Flag Type Sort Key Invalid" %]
  510. The sort key must be an integer between 0 and 32767 inclusive.
  511. It cannot be <em>[% sortkey FILTER html %]</em>.
  512. [% ELSIF error == "freetext_too_long" %]
  513. [% title = "Text Too Long" %]
  514. The text you entered is too long ([% text.length FILTER html %] characters,
  515. above the maximum length allowed of [% constants.MAX_FREETEXT_LENGTH FILTER none %]
  516. characters):
  517. <p><em>[% text FILTER html %]</em></p>
  518. [% ELSIF error == "group_cannot_delete" %]
  519. [% title = "Cannot Delete Group" %]
  520. The <em>[% name FILTER html %]</em> group cannot be deleted because
  521. there are
  522. <a href="editgroups.cgi?action=del&amp;group=[% gid FILTER url_quote %]">records</a>
  523. in the database which refer to it. All references to this group must
  524. be removed before you can remove it.
  525. [% ELSIF error == "group_change_denied" %]
  526. [% title = "Cannot Add/Remove That Group" %]
  527. You tried to add or remove group id [% group_id FILTER html %]
  528. from [% terms.bug %] [%+ bug.id FILTER html %], but you do not
  529. have permissions to do so.
  530. [% ELSIF error == "group_exists" %]
  531. [% title = "The group already exists" %]
  532. The group [% name FILTER html %] already exists.
  533. [% ELSIF error == "group_has_special_role" %]
  534. [% title = "Group not deletable" %]
  535. [% IF groups.size == 1 %]
  536. [% attr = "it" %]
  537. [% param = "parameter" %]
  538. [% ELSE %]
  539. [% attr = "them" %]
  540. [% param = "parameters" %]
  541. [% END %]
  542. The group '[% name FILTER html %]' is used by the
  543. '[% groups.join("' and '") FILTER html %]' [% param FILTER html %].
  544. In order to delete this group, you first have to change the
  545. [%+ param FILTER html %] to make [% attr FILTER html %] point to another group.
  546. [% ELSIF error == "group_invalid_removal" %]
  547. You tried to remove [% terms.bug %] [%+ bug.id FILTER html %]
  548. from group id [% group_id FILTER html %], but [% terms.bugs %] in the
  549. '[% product FILTER html %]' product can not be removed from that
  550. group.
  551. [% ELSIF error == "group_invalid_restriction" %]
  552. You tried to restrict [% terms.bug %] [%+ bug.id FILTER html %] to
  553. to group id [% group_id FILTER html %], but [% terms.bugs %] in the
  554. '[% product FILTER html %]' product can not be restricted to
  555. that group.
  556. [% ELSIF error == "group_not_specified" %]
  557. [% title = "Group not specified" %]
  558. No group was specified.
  559. [% ELSIF error == "system_group_not_deletable" %]
  560. [% title = "System Groups not deletable" %]
  561. <em>[% name FILTER html %]</em> is a system group.
  562. This group cannot be deleted.
  563. [% ELSIF error == "group_unknown" %]
  564. [% title = "Unknown Group" %]
  565. The group [% name FILTER html %] does not exist. Please specify
  566. a valid group name. Create it first if necessary!
  567. [% ELSIF error == "illegal_at_least_x_votes" %]
  568. [% title = "Your Search Makes No Sense" %]
  569. The <em>At least ___ votes</em> field must be a simple number.
  570. You entered <tt>[% value FILTER html %]</tt>, which isn't.
  571. [% ELSIF error == "illegal_attachment_edit" %]
  572. [% title = "Unauthorized Action" %]
  573. You are not authorized to edit attachment [% attach_id FILTER html %].
  574. [% ELSIF error == "illegal_attachment_edit_bug" %]
  575. [% title = "Unauthorized Action" %]
  576. You are not authorized to edit attachments on [% terms.bug %]
  577. [%+ bug_id FILTER html %].
  578. [% ELSIF error == "illegal_attachment_is_patch" %]
  579. [% title = "Your Search Makes No Sense" %]
  580. The only legal values for the <em>Attachment is patch</em> field are
  581. 0 and 1.
  582. [% ELSIF error == "illegal_bug_status_transition" %]
  583. [% title = "Illegal $terms.Bug Status Change" %]
  584. [% IF old.defined %]
  585. You are not allowed to change the [% terms.bug %] status from
  586. [%+ old.name FILTER html %] to [% new.name FILTER html %].
  587. [% ELSE %]
  588. You are not allowed to file new [% terms.bugs %] with the
  589. [%+ new.name FILTER html %] status.
  590. [% END %]
  591. [% ELSIF error == "illegal_change" %]
  592. [% title = "Not allowed" %]
  593. You tried to change the
  594. <strong>[% field_descs.$field FILTER html %]</strong> field
  595. [% IF oldvalue.defined %]
  596. from <em>[% oldvalue.join(', ') FILTER html %]</em>
  597. [% END %]
  598. [% IF newvalue.defined %]
  599. to <em>[% newvalue.join(', ') FILTER html %]</em>
  600. [% END %]
  601. , but only
  602. [% IF privs < 3 %]
  603. the assignee
  604. [% IF privs < 2 %] or reporter [% END %]
  605. of the [% terms.bug %], or
  606. [% END %]
  607. a user with the required permissions may change that field.
  608. [% ELSIF error == "illegal_change_deps" %]
  609. [% title = "Not allowed" %]
  610. You tried to change the
  611. <strong>[% field_descs.$field FILTER html %]</strong> field
  612. but only a user allowed to edit
  613. both related [% terms.bugs %] may change that field.
  614. [% ELSIF error == "illegal_changed_in_last_x_days" %]
  615. [% title = "Your Search Makes No Sense" %]
  616. The <em>Changed in last ___ days</em> field must be a simple number.
  617. You entered <tt>[% value FILTER html %]</tt>, which isn't.
  618. [% ELSIF error == "illegal_date" %]
  619. [% title = "Illegal Date" %]
  620. '<tt>[% date FILTER html %]</tt>' is not a legal date.
  621. [% IF format %]
  622. Please use the format '<tt>[% format FILTER html %]</tt>'.
  623. [% END %]
  624. [% ELSIF error == "illegal_email_address" %]
  625. [% title = "Invalid Email Address" %]
  626. The e-mail address you entered (<b>[% addr FILTER html %]</b>)
  627. didn't pass our syntax checking for a legal email address.
  628. [% IF default %]
  629. A legal address must contain exactly one '@',
  630. and at least one '.' after the @.
  631. [% ELSE %]
  632. [%+ Param('emailregexpdesc') %]
  633. [% END %]
  634. It must also not contain any of these special characters:
  635. <tt>\ ( ) &amp; &lt; &gt; , ; : &quot; [ ]</tt>, or any whitespace.
  636. [% ELSIF error == "illegal_frequency" %]
  637. [% title = "Too Frequent" %]
  638. Unless you are an administrator, you may not create series which are
  639. run more often than once every [% minimum FILTER html %] days.
  640. [% ELSIF error == "illegal_group_control_combination" %]
  641. [% title = "Your Group Control Combination Is Illegal" %]
  642. [% admindocslinks = {'groups.html' => 'Assigning Group Controls to Products'} %]
  643. Your group control combination for group &quot;
  644. [% groupname FILTER html %]&quot; is illegal.
  645. [% ELSIF error == "illegal_is_obsolete" %]
  646. [% title = "Your Search Makes No Sense" %]
  647. The only legal values for the <em>Attachment is obsolete</em> field are
  648. 0 and 1.
  649. [% ELSIF error == "illegal_query_name" %]
  650. [% title = "Illegal Search Name" %]
  651. The name of your search cannot contain any of the following characters:
  652. &lt;, &gt;, &amp;.
  653. [% ELSIF error == "illegal_series_creation" %]
  654. [% admindocslinks = {'groups.html' => 'Group security'} %]
  655. [% docslinks = {'reporting.html' => 'Reporting'} %]
  656. You are not authorized to create series.
  657. [% ELSIF error == "illegal_series_edit" %]
  658. [% admindocslinks = {'groups.html' => 'Group security'} %]
  659. [% docslinks = {'reporting.html' => 'Reporting'} %]
  660. You are not authorized to edit this series. To do this, you must either
  661. be its creator, or an administrator.
  662. [% ELSIF error == "illegal_time" %]
  663. [% title = "Illegal Time" %]
  664. '<tt>[% time FILTER html %]</tt>' is not a legal time.
  665. [% IF format %]
  666. Please use the format '<tt>[% format FILTER html %]</tt>'.
  667. [% END %]
  668. [% ELSIF error == "insufficient_data_points" %]
  669. [% docslinks = {'reporting.html' => 'Reporting'} %]
  670. We don't have enough data points to make a graph (yet).
  671. [% ELSIF error == "invalid_attach_id" %]
  672. [% title = "Invalid Attachment ID" %]
  673. The attachment id [% attach_id FILTER html %] is invalid.
  674. [% ELSIF error == "bug_id_does_not_exist" %]
  675. [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %]
  676. [% terms.Bug %] #[% bug_id FILTER html %] does not exist.
  677. [% ELSIF error == "improper_bug_id_field_value" %]
  678. [% title = BLOCK %]
  679. [% IF bug_id %]Invalid [% ELSE %]Missing [% END %] [% terms.Bug %] ID
  680. [% END %]
  681. [% IF bug_id %]
  682. '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number
  683. [% IF Param("usebugaliases") %]
  684. nor an alias to [% terms.abug %]
  685. [% END %].
  686. [% ELSE %]
  687. [% IF field %]
  688. The '[% field_descs.$field FILTER html %]' field
  689. cannot be empty.
  690. [% END %]
  691. You must enter a valid [% terms.bug %] number!
  692. [% END %]
  693. [% ELSIF error == "invalid_changedsince" %]
  694. [% title = "Invalid 'Changed Since'" %]
  695. The 'changed since' value, '[% changedsince FILTER html %]', must be an
  696. integer >= 0.
  697. [% ELSIF error == "invalid_content_type" %]
  698. [% title = "Invalid Content-Type" %]
  699. The content type <em>[% contenttype FILTER html %]</em> is invalid.
  700. Valid types must be of the form <em>foo/bar</em> where <em>foo</em>
  701. is either <em>application, audio, image, message, model, multipart,
  702. text,</em> or <em>video</em>.
  703. [% ELSIF error == "invalid_context" %]
  704. [% title = "Invalid Context" %]
  705. The context [% context FILTER html %] is invalid (must be a number,
  706. "file" or "patch").
  707. [% ELSIF error == "invalid_datasets" %]
  708. [% title = "Invalid Datasets" %]
  709. Invalid datasets <em>[% datasets FILTER html %]</em>. Only digits,
  710. letters and colons are allowed.
  711. [% ELSIF error == "invalid_format" %]
  712. [% title = "Invalid Format" %]
  713. The format "[% format FILTER html %]" is invalid (must be one of
  714. [% FOREACH my_format = formats %]
  715. "[% my_format FILTER html %]"
  716. [% END %]
  717. ).
  718. [% ELSIF error == "invalid_group_ID" %]
  719. [% title = "Invalid group ID" %]
  720. The group you specified doesn't exist.
  721. [% ELSIF error == "invalid_group_name" %]
  722. [% title = "Invalid group name" %]
  723. The group you specified, [% name FILTER html %], is not valid here.
  724. [% ELSIF error == "invalid_maxrows" %]
  725. [% title = "Invalid Max Rows" %]
  726. The maximum number of rows, '[% maxrows FILTER html %]', must be
  727. a positive integer.
  728. [% ELSIF error == "invalid_parameter" %]
  729. [% title = "Invalid Parameter" %]
  730. The new value for [% name FILTER html %] is invalid: [% err FILTER html %].
  731. [% ELSIF error == "invalid_product_name" %]
  732. [% title = "Invalid Product Name" %]
  733. The product name '[% product FILTER html %]' is invalid or does not exist.
  734. [% ELSIF error == "invalid_regexp" %]
  735. [% title = "Invalid regular expression" %]
  736. The regular expression you entered is invalid.
  737. [% ELSIF error == "invalid_user_group" %]
  738. [% title = "Invalid User Group" %]
  739. [% IF users.size > 1 %] Users [% ELSE %] User [% END %]
  740. '[% users.join(', ') FILTER html %]'
  741. [% IF users.size > 1 %] are [% ELSE %] is [% END %]
  742. not able to edit the
  743. [% IF product %]
  744. '[% product FILTER html %]'
  745. [% END %]
  746. [%+ field_descs.product FILTER html %]
  747. [% IF bug_id %]
  748. for [% terms.bug %] '[% bug_id FILTER html %]'.
  749. [% ELSIF new %]
  750. and may not be included on a new [% terms.bug %].
  751. [% ELSE %]
  752. for at least one [% terms.bug %] being changed.
  753. [% END %]
  754. [% ELSIF error == "invalid_username" %]
  755. [% title = "Invalid Username" %]
  756. The name <tt>[% name FILTER html %]</tt> is not a valid username.
  757. Either you misspelled it, or the person has not
  758. registered for a [% terms.Bugzilla %] account.
  759. [% ELSIF error == "invalid_username_or_password" %]
  760. [% title = "Invalid Username Or Password" %]
  761. The username or password you entered is not valid.
  762. [% ELSIF error == "keyword_already_exists" %]
  763. [% title = "Keyword Already Exists" %]
  764. A keyword with the name [% name FILTER html %] already exists.
  765. [% ELSIF error == "keyword_blank_description" %]
  766. [% title = "Blank Keyword Description Not Allowed" %]
  767. You must enter a non-blank description for the keyword.
  768. [% ELSIF error == "keyword_blank_name" %]
  769. [% title = "Blank Keyword Name Not Allowed" %]
  770. You must enter a non-blank name for the keyword.
  771. [% ELSIF error == "keyword_invalid_name" %]
  772. [% title = "Invalid Keyword Name" %]
  773. You may not use commas or whitespace in a keyword name.
  774. [% ELSIF error == "local_file_too_large" %]
  775. [% title = "Local File Too Large" %]
  776. Local file uploads must not exceed
  777. [% Param('maxlocalattachment') %] MB in size.
  778. [% ELSIF error == "login_needed_for_password_change" %]
  779. [% title = "Login Name Required" %]
  780. You must enter a login name when requesting to change your password.
  781. [% ELSIF error == "login_required_for_pronoun" %]
  782. [% title = "Login Name Required" %]
  783. You can't use %user% without being logged in, because %user% refers
  784. to your login name, which we don't know.
  785. [% ELSIF error == "milestone_already_exists" %]
  786. [% title = "Milestone Already Exists" %]
  787. [% admindocslinks = {'products.html' => 'Administering products',
  788. 'milestones.html' => 'About Milestones'} %]
  789. The milestone '[% name FILTER html %]' already exists for product '
  790. [%- product FILTER html %]'.
  791. [% ELSIF error == "milestone_blank_name" %]
  792. [% title = "Blank Milestone Name Not Allowed" %]
  793. You must enter a name for this milestone.
  794. [% ELSIF error == "milestone_is_default" %]
  795. [% title = "Default milestone not deletable" %]
  796. [% admindocslinks = {'products.html' => 'Administering products',
  797. 'milestones.html' => 'About Milestones'} %]
  798. Sorry, but [% milestone.name FILTER html %] is the default milestone
  799. for the '[% milestone.product.name FILTER html %]' product, and so
  800. it cannot be deleted.
  801. [% ELSIF error == "milestone_name_too_long" %]
  802. [% title = "Milestone Name Is Too Long" %]
  803. The name of a milestone is limited to 20 characters.
  804. '[% name FILTER html %]' is too long ([% name.length %] characters).
  805. [% ELSIF error == "milestone_required" %]
  806. [% title = "Milestone Required" %]
  807. You must select a target milestone for [% terms.bug %]
  808. [%+ bug.id FILTER html %]
  809. if you are going to accept it. Part of accepting
  810. [%+ terms.abug %] is giving an estimate of when it will be fixed.
  811. [% ELSIF error == "milestone_sortkey_invalid" %]
  812. [% title = "Invalid Milestone Sortkey" %]
  813. The sortkey '[% sortkey FILTER html %]' is not in the range
  814. [%+ constants.MIN_SMALLINT FILTER html %] &le; sortkey &le;
  815. [%+ constants.MAX_SMALLINT FILTER html %].
  816. [% ELSIF error == "misarranged_dates" %]
  817. [% title = "Misarranged Dates" %]
  818. Your start date ([% datefrom FILTER html %]) is after
  819. your end date ([% dateto FILTER html %]).
  820. [% ELSIF error == "missing_attachment_description" %]
  821. [% title = "Missing Attachment Description" %]
  822. You must enter a description for the attachment.
  823. [% ELSIF error == "missing_category" %]
  824. [% title = "Missing Category" %]
  825. You did not specify a category for this series.
  826. [% ELSIF error == "missing_component" %]
  827. [% title = "Missing Component" %]
  828. [% admindocslinks = {'products.html' => 'Administering products',
  829. 'components.html' => 'Creating a component'} %]
  830. Sorry, the product <em>[% product.name FILTER html %]</em>
  831. has to have at least one component in order for you to
  832. enter [% terms.abug %] into it.<br>
  833. [% IF user.in_group("editcomponents", product.id) %]
  834. <a href="editcomponents.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Create
  835. a new component</a>.
  836. [% ELSE %]
  837. Please contact [% Param("maintainer") %] and ask them
  838. to add a component to this product.
  839. [% END %]
  840. [% ELSIF error == "missing_content_type" %]
  841. [% title = "Missing Content-Type" %]
  842. You asked [% terms.Bugzilla %] to auto-detect the content type, but
  843. your browser did not specify a content type when uploading the file,
  844. so you must enter a content type manually.
  845. [% ELSIF error == "missing_content_type_method" %]
  846. [% title = "Missing Content-Type Determination Method" %]
  847. You must choose a method for determining the content type,
  848. either <em>auto-detect</em>, <em>select from list</em>, or <em>enter
  849. manually</em>.
  850. [% ELSIF error == "missing_cookie" %]
  851. [% title = "Missing Cookie" %]
  852. Sorry, I seem to have lost the cookie that recorded
  853. the results of your last search. I'm afraid you will have to start
  854. again from the <a href="query.cgi">search page</a>.
  855. [% ELSIF error == "missing_datasets" %]
  856. [% title = "No Datasets Selected" %]
  857. [% docslinks = {'reporting.html' => 'Reporting'} %]
  858. You must specify one or more datasets to plot.
  859. [% ELSIF error == "missing_email_type" %]
  860. [% title = "Your Search Makes No Sense" %]
  861. You must specify one or more fields in which to search for
  862. <tt>[% email FILTER html %]</tt>.
  863. [% ELSIF error == "missing_frequency" %]
  864. [% title = "Missing Frequency" %]
  865. [% docslinks = {'reporting.html' => 'Reporting'} %]
  866. You did not specify a valid frequency for this series.
  867. [% ELSIF error == "missing_name" %]
  868. [% title = "Missing Name" %]
  869. [% docslinks = {'reporting.html' => 'Reporting'} %]
  870. You did not specify a name for this series.
  871. [% ELSIF error == "missing_query" %]
  872. [% title = "Missing Search" %]
  873. [% docslinks = {'query.html' => "Searching for $terms.bugs",
  874. 'query.html#list' => "$terms.Bug lists"} %]
  875. The search named <em>[% queryname FILTER html %]</em>
  876. [% IF sharer_id && sharer_id != user.id %]
  877. has not been made visible to you.
  878. [% ELSE %]
  879. does not exist.
  880. [% END %]
  881. [% ELSIF error == "missing_resolution" %]
  882. [% title = "Resolution Required" %]
  883. A valid resolution is required to mark [% terms.bugs %] as
  884. [%+ status FILTER upper FILTER html %].
  885. [% ELSIF error == "move_bugs_disabled" %]
  886. [% title = BLOCK %][% terms.Bug %] Moving Disabled[% END %]
  887. Sorry, [% terms.bug %] moving has been disabled. If you need
  888. to move [% terms.abug %], please contact [% Param("maintainer") %].
  889. [% ELSIF error == "missing_subcategory" %]
  890. [% title = "Missing Subcategory" %]
  891. You did not specify a subcategory for this series.
  892. [% ELSIF error == "missing_version" %]
  893. [% title = "Missing Version" %]
  894. [% admindocslinks = {'versions.html' => 'Defining versions'} %]
  895. Sorry, the product <em>[% product.name FILTER html %]</em>
  896. has to have at least one version in order for you to
  897. enter [% terms.abug %] into it.<br>
  898. [% IF user.in_group("editcomponents", product.id) %]
  899. <a href="editversions.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Create
  900. a new version</a>.
  901. [% ELSE %]
  902. Please contact [% Param("maintainer") %] and ask them
  903. to add a version to this product.
  904. [% END %]
  905. [% ELSIF error == "need_quip" %]
  906. [% title = "Quip Required" %]
  907. [% docslinks = {'quips.html' => 'About quips'} %]
  908. Please enter a quip in the text field.
  909. [% ELSIF error == "new_password_missing" %]
  910. [% title = "New Password Missing" %]
  911. You must enter a new password.
  912. [% ELSIF error == "no_axes_defined" %]
  913. [% title = "No Axes Defined" %]
  914. [% docslinks = {'reporting.html' => 'Reporting'} %]
  915. You didn't define any axes to plot.
  916. [% ELSIF error == "no_bugs_chosen" %]
  917. [% title = BLOCK %]No [% terms.Bugs %] Selected[% END %]
  918. You apparently didn't choose any [% terms.bugs %]
  919. [% IF action == "modify" %]
  920. to modify.
  921. [% ELSIF action == "view" %]
  922. to view.
  923. [% END %]
  924. [% ELSIF error == "no_bug_ids" %]
  925. [% title = BLOCK %]No [% terms.Bugs %] Selected[% END %]
  926. You didn't choose any [% terms.bugs %] to
  927. [% IF action == "add" %] add to [% ELSE %] remove from [% END %]
  928. the [% tag FILTER html %] tag.
  929. [% ELSIF error == "no_bugs_in_list" %]
  930. [% title = "Delete Tag?" %]
  931. This will remove all [% terms.bugs %] from the
  932. [% tag FILTER html %] tag. This will delete the tag completely. Click
  933. <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
  934. [%- tag FILTER url_quote %]">here</a> if you really want to delete it.
  935. [% ELSIF error == "no_bugs_to_remove" %]
  936. [% title = "No Tag Selected" %]
  937. You didn't select a tag from which to remove [% terms.bugs %].
  938. [% ELSIF error == "no_dupe_stats" %]
  939. [% title = "Cannot Find Duplicate Statistics" %]
  940. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  941. There are no duplicate statistics for today ([% today FILTER html %])
  942. or yesterday.
  943. [% ELSIF error == "no_dupe_stats_error_today" %]
  944. [% title = "Error Reading Today's Dupes File" %]
  945. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  946. An error occurred opening today's dupes file: [% error_msg FILTER html %].
  947. [% ELSIF error == "no_dupe_stats_error_whenever" %]
  948. [% title = "Error Reading Previous Dupes File" %]
  949. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  950. An error occurred opening [% changedsince FILTER html %] days ago
  951. ([% whenever FILTER html %])'s dupes file:
  952. [% error_msg FILTER html %].
  953. [% ELSIF error == "no_dupe_stats_error_yesterday" %]
  954. [% title = "Error Reading Yesterday's Dupes File" %]
  955. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  956. There are no duplicate statistics for today ([% today FILTER html %]),
  957. and an error
  958. occurred opening yesterday's dupes file: [% error_msg FILTER html %].
  959. [% ELSIF error == "no_initial_bug_status" %]
  960. [% title = "No Initial $terms.Bug Status" %]
  961. No [% terms.bug %] status is available on [% terms.bug %] creation.
  962. Please report the problem to [% Param("maintainer") %].
  963. [% ELSIF error == "no_new_quips" %]
  964. [% title = "No New Quips" %]
  965. [% admindocslinks = {'quips.html' => 'Controlling quip usage'} %]
  966. This site does not permit the addition of new quips.
  967. [% ELSIF error == "no_page_specified" %]
  968. [% title = "No Page Specified" %]
  969. You did not specify the id of a page to display.
  970. [% ELSIF error == "no_products" %]
  971. [% title = "No Products" %]
  972. [% admindocslinks = {'products.html' => 'Setting up a product',
  973. 'components.html' => 'Adding components to products',
  974. 'groups.html' => 'Groups security'} %]
  975. Either no products have been defined to enter [% terms.bugs %] against or you have not
  976. been given access to any.
  977. [% ELSIF error == "no_valid_action" %]
  978. [% title = "No valid action specified" %]
  979. Cannot edit [% field_descs.$field FILTER html %]: no valid action was specified.
  980. [% ELSIF error == "number_not_numeric" %]
  981. [% title = "Numeric Value Required" %]
  982. The value '[% num FILTER html %]' in the
  983. <em>[% field_descs.$field FILTER html %]</em> field
  984. is not a numeric value.
  985. [% ELSIF error == "number_too_large" %]
  986. [% title = "Number Too Large" %]
  987. The value '[% num FILTER html %]' in the
  988. <em>[% field_descs.$field FILTER html %]</em> field
  989. is more than the maximum allowable value of '[% max_num FILTER html %]'.
  990. [% ELSIF error == "number_too_small" %]
  991. [% title = "Number Too Small" %]
  992. The value '[% num FILTER html %]'
  993. in the <em>[% field_descs.$field FILTER html %]</em> field
  994. is less than the minimum allowable value of '[% min_num FILTER html %]'.
  995. [% ELSIF error == "object_name_not_specified" %]
  996. [% type = BLOCK %][% PROCESS object_name %][% END %]
  997. [% title = BLOCK %][% type FILTER ucfirst FILTER html %] Not
  998. Specified[% END %]
  999. You must select/enter a [% type FILTER html %].
  1000. [% ELSIF error == "object_does_not_exist" %]
  1001. [% type = BLOCK %][% PROCESS object_name %][% END %]
  1002. [% title = BLOCK %]Invalid [% type FILTER ucfirst FILTER html %][% END %]
  1003. There is no [% type FILTER html %] named '[% name FILTER html %]'
  1004. [% IF product.defined %]
  1005. in the '[% product.name FILTER html %]' product
  1006. [% END %].
  1007. [% IF class == "Bugzilla::User" %]
  1008. Either you mis-typed the name or that user has not yet registered
  1009. for a [% terms.Bugzilla %] account.
  1010. [% END %]
  1011. [% ELSIF error == "old_password_incorrect" %]
  1012. [% title = "Incorrect Old Password" %]
  1013. You did not enter your old password correctly.
  1014. [% ELSIF error == "old_password_required" %]
  1015. [% title = "Old Password Required" %]
  1016. You must enter your old password to change your email address.
  1017. [% ELSIF error == "password_change_requests_not_allowed" %]
  1018. [% title = "Password Change Requests Not Allowed" %]
  1019. The system is not configured to allow password change requests.
  1020. [% ELSIF error == "passwords_dont_match" %]
  1021. [% title = "Passwords Don't Match" %]
  1022. The two passwords you entered did not match.
  1023. [% ELSIF error == "password_too_long" %]
  1024. [% title = "Password Too Long" %]
  1025. The password must be no more than
  1026. [%+ constants.USER_PASSWORD_MAX_LENGTH FILTER html %] characters long.
  1027. [% ELSIF error == "password_too_short" %]
  1028. [% title = "Password Too Short" %]
  1029. The password must be at least
  1030. [%+ constants.USER_PASSWORD_MIN_LENGTH FILTER html %] characters long.
  1031. [% ELSIF error == "patch_too_large" %]
  1032. [% title = "File Too Large" %]
  1033. The file you are trying to attach is [% filesize FILTER html %]
  1034. kilobytes (KB) in size.
  1035. Patches cannot be more than [% Param('maxpatchsize') %] KB in size.
  1036. Try breaking your patch into several pieces.
  1037. [% ELSIF error == "product_access_denied" %]
  1038. Either the product '[% product FILTER html %]' does not exist or
  1039. you don't have access to it.
  1040. [% ELSIF error == "product_doesnt_exist" %]
  1041. [% title = "Specified Product Does Not Exist" %]
  1042. The product '[% product FILTER html %]' does not exist.
  1043. [% ELSIF error == "product_votes_per_bug_must_be_nonnegative" %]
  1044. [% title = "Maximum Votes Must Be Non-negative" %]
  1045. [% admindocslinks = {'voting.html' => 'Setting up the voting feature'} %]
  1046. '[% maxvotesperbug FILTER html %]' is an invalid value for the
  1047. <em>'Maximum Votes Per [% terms.Bug %]'</em> field, which should
  1048. contain a non-negative number.
  1049. [% ELSIF error == "product_votes_per_user_must_be_nonnegative" %]
  1050. [% title = "Votes Per User Must Be Non-negative" %]
  1051. [% admindocslinks = {'voting.html' => 'Setting up the voting feature'} %]
  1052. '[% votesperuser FILTER html %]' is an invalid value for the
  1053. <em>'Votes Per User'</em> field, which should contain a
  1054. non-negative number.
  1055. [% ELSIF error == "product_votes_to_confirm_must_be_nonnegative" %]
  1056. [% title = "Votes To Confirm Must Be Non-negative" %]
  1057. [% admindocslinks = {'voting.html' => 'Setting up the voting feature'} %]
  1058. '[% votestoconfirm FILTER html %]' is an invalid value for the
  1059. <em>'Votes To Confirm'</em> field, which should contain a
  1060. non-negative number.
  1061. [% ELSIF error == "product_cant_delete_description" %]
  1062. [% title = "Cannot delete product description" %]
  1063. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1064. Cannot delete the description for product
  1065. '[% product FILTER html %]'.
  1066. [% ELSIF error == "product_cant_delete_name" %]
  1067. [% title = "Cannot delete product name" %]
  1068. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1069. Cannot delete the product name for product '[% product FILTER html %]'.
  1070. [% ELSIF error == "product_name_already_in_use" %]
  1071. [% title = "Product name already in use" %]
  1072. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1073. The product name '[% product FILTER html %]' is already in use.
  1074. [% ELSIF error == "product_name_diff_in_case" %]
  1075. [% title = "Product name differs only in case" %]
  1076. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1077. The product name '[% product FILTER html %]' differs from existing
  1078. product '[% existing_product FILTER html %]' only in case.
  1079. [% ELSIF error == "product_must_define_defaultmilestone" %]
  1080. [% title = "Must define new default milestone" %]
  1081. [% admindocslinks = {'products.html' => 'Administering products',
  1082. 'milestones.html' => 'About Milestones'} %]
  1083. [% IF classification %]
  1084. [% classification_url_part = BLOCK %]&amp;classification=
  1085. [%- classification FILTER url_quote %]
  1086. [% END %]
  1087. [% END %]
  1088. You must <a href="editmilestones.cgi?action=add&amp;product=
  1089. [%- product FILTER url_quote %]
  1090. [%- classification_url_part FILTER none %]">
  1091. create the milestone '[% defaultmilestone FILTER html %]'</a> before
  1092. it can be made the default milestone for product '[% product FILTER html %]'.
  1093. [% ELSIF error == "product_admin_denied" %]
  1094. [% title = "Product Access Denied" %]
  1095. You are not allowed to edit properties of product '[% product FILTER html %]'.
  1096. [% ELSIF error == "product_blank_name" %]
  1097. [% title = "Blank Product Name Not Allowed" %]
  1098. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1099. You must enter a name for the new product.
  1100. [% ELSIF error == "product_disabled" %]
  1101. [% title = BLOCK %]Product closed for [% terms.Bug %] Entry[% END %]
  1102. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1103. Sorry, entering [% terms.abug %] into the
  1104. product <em>[% product.name FILTER html %]</em> has been disabled.
  1105. [% ELSIF error == "product_edit_denied" %]
  1106. [% title = "Product Edit Access Denied" %]
  1107. [% admindocslinks = {'products.html' => 'Administering products',
  1108. 'groups.html' => 'Group security'} %]
  1109. You are not permitted to edit [% terms.bugs %] in product
  1110. [%+ product FILTER html %].
  1111. [% ELSIF error == "product_has_bugs" %]
  1112. [% title = BLOCK %]Product has [% terms.Bugs %][% END %]
  1113. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1114. There are [% nb FILTER html %] [%+ terms.bugs %] entered for this product!
  1115. You must move those [% terms.bugs %] to another product before you
  1116. can delete this one.
  1117. [% ELSIF error == "product_must_have_description" %]
  1118. [% title = "Product needs Description" %]
  1119. [% admindocslinks = {'products.html' => 'Administering products'} %]
  1120. You must enter a description for product '[% product FILTER html %]'.
  1121. [% ELSIF error == "product_must_have_version" %]
  1122. [% title = "Product needs Version" %]
  1123. [% admindocslinks = {'products.html' => 'Administering products',
  1124. 'versions.html' => 'Administering versions'} %]
  1125. You must enter a version for product '[% product FILTER html %]'.
  1126. [% ELSIF error == "product_not_specified" %]
  1127. [% title = "No Product Specified" %]
  1128. [% admindocslinks = {'products.html' => 'Administering products',
  1129. 'components.html' => 'Administering components',
  1130. 'milestones.html' => 'Administering milestones',
  1131. 'versions.html' => 'Administering versions'} %]
  1132. No product specified when trying to edit components, milestones, versions
  1133. or product.
  1134. [% ELSIF error == "query_name_exists" %]
  1135. [% title = "Search Name Already In Use" %]
  1136. The name <em>[% name FILTER html %]</em> is already used by another
  1137. saved search. You first have to
  1138. <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
  1139. [%- name FILTER url_quote %]&amp;token=
  1140. [% issue_hash_token([query_id, name]) FILTER url_quote %]">delete</a>
  1141. it if you really want to use this name.
  1142. [% ELSIF error == "query_name_missing" %]
  1143. [% title = "No Search Name Specified" %]
  1144. [% docslinks = {'query.html#list' => "$terms.Bug lists"} %]
  1145. You must enter a name for your search.
  1146. [% ELSIF error == "query_name_too_long" %]
  1147. [% title = "Query Name Too Long" %]
  1148. The name of the query must be less than 64 characters long.
  1149. [% ELSIF error == "quicksearch_unknown_field" %]
  1150. [% title = "Unknown QuickSearch Field" %]
  1151. [% IF fields.unique.size == 1 %]
  1152. Field <code>[% fields.first FILTER html %]</code> is not a known field.
  1153. [% ELSE %]
  1154. Fields
  1155. [% FOREACH field = fields.unique.sort %]
  1156. <code>[% field FILTER html %]</code>
  1157. [% ', ' UNLESS loop.last() %]
  1158. [% END %]
  1159. are not known fields.
  1160. [% END %]
  1161. The legal field names are <a href="page.cgi?id=quicksearchhack.html">listed here</a>.
  1162. [% ELSIF error == "reassign_to_empty" %]
  1163. [% title = "Illegal Reassignment" %]
  1164. To reassign [% terms.abug %], you must provide an address for
  1165. the new assignee.
  1166. [% ELSIF error == "require_component" %]
  1167. [% title = "Component Needed" %]
  1168. To file this [% terms.bug %], you must first choose a component.
  1169. If necessary, just guess.
  1170. [% ELSIF error == "require_new_password" %]
  1171. [% title = "New Password Needed" %]
  1172. You cannot change your password without choosing a new one.
  1173. [% ELSIF error == "require_summary" %]
  1174. [% title = "Summary Needed" %]
  1175. You must enter a summary for this [% terms.bug %].
  1176. [% ELSIF error == "resolution_cant_clear" %]
  1177. [% terms.Bug %] [%+ bug_id FILTER bug_link(bug_id) FILTER none %] is
  1178. closed, so you cannot clear its resolution.
  1179. [% ELSIF error == "resolution_not_allowed" %]
  1180. [% title = "Resolution Not Allowed" %]
  1181. You cannot set a resolution for open [% terms.bugs %].
  1182. [% ELSIF error == "saved_search_used_by_whines" %]
  1183. [% title = "Saved Search In Use" %]
  1184. [% docslinks = {'whining.html' => 'About Whining'} %]
  1185. The saved search <em>[% search_name FILTER html %]</em> is being used
  1186. by <a href="editwhines.cgi">Whining events</a> with the following subjects:
  1187. [%+ subjects FILTER html %]
  1188. [% ELSIF error == "search_content_without_matches" %]
  1189. [% title = "Illegal Search" %]
  1190. The "content" field can only be used with "matches" search
  1191. and the "matches" search can only be used with the "content"
  1192. field.
  1193. [% ELSIF error == "series_already_exists" %]
  1194. [% title = "Series Already Exists" %]
  1195. [% docslinks = {'reporting.html' => 'Reporting'} %]
  1196. A series named <em>[% series.category FILTER html %] /
  1197. [%+ series.subcategory FILTER html %] /
  1198. [%+ series.name FILTER html %]</em>
  1199. already exists.
  1200. [% ELSIF error == "sidebar_supports_mozilla_only" %]
  1201. Sorry - sidebar.cgi currently only supports Mozilla based web browsers.
  1202. <a href="http://www.mozilla.org">Upgrade today</a>. :-)
  1203. [% ELSIF error == "still_unresolved_bugs" %]
  1204. [% IF dependency_count == 1 %]
  1205. [% terms.Bug %]# <a href="show_bug.cgi?id=[% dependencies.0.bug_id FILTER none %]">[% dependencies.0.bug_id FILTER none %]</a>
  1206. still has [% dependencies.0.dependencies FILTER html %] unresolved
  1207. [% IF dependencies.0.dependencies == 1 %]
  1208. dependency
  1209. [% ELSE %]
  1210. dependencies
  1211. [% END %]. Show
  1212. <a href="showdependencytree.cgi?id=[% dependencies.0.bug_id FILTER none %]&amp;hide_resolved=1">Dependency
  1213. Tree</a>.
  1214. [% ELSE %]
  1215. There are [% dependency_count FILTER none %] open [% terms.bugs %] which
  1216. have unresolved dependencies.
  1217. <br>
  1218. [% FOREACH bug = dependencies %]
  1219. [% terms.Bug %]# <a href="show_bug.cgi?id=[% bug.bug_id FILTER none %]">[% bug.bug_id FILTER none %]</a>
  1220. has [% bug.dependencies FILTER html %] open
  1221. [% IF bug.dependencies == 1 %]
  1222. dependency.
  1223. [% ELSE %]
  1224. dependencies.
  1225. [% END %]
  1226. (<a href="showdependencytree.cgi?id=[% bug.bug_id FILTER none %]&amp;hide_resolved=1">Dependency
  1227. Tree</a>)<br>
  1228. [% END %]
  1229. [% END %]
  1230. [% ELSIF error == "sudo_in_progress" %]
  1231. [% title = "Session In Progress" %]
  1232. A sudo session (impersonating [% target FILTER html %]) is in progress.
  1233. End that session (using the link in the footer) before starting a new one.
  1234. [% ELSIF error == "sudo_password_required" %]
  1235. [% title = "Password Required" %]
  1236. Your [% terms.Bugzilla %] password is required to begin a sudo
  1237. session. Please <a href="relogin.cgi?action=prepare-sudo&target_login=
  1238. [%- target_login FILTER html %]&reason=
  1239. [%- reason FILTER html %]">go back</a> and enter your password.
  1240. [% ELSIF error == "sudo_preparation_required" %]
  1241. [% title = "Preparation Required" %]
  1242. You may not start a sudo session directly. Please
  1243. <a href="relogin.cgi?action=prepare-sudo&target_login=
  1244. [%- target_login FILTER html %]&reason=
  1245. [%- reason FILTER html %]">start your session normally</a>.
  1246. [% ELSIF error == "sudo_protected" %]
  1247. [% title = "User Protected" %]
  1248. The user [% login FILTER html %] may not be impersonated by sudoers.
  1249. [% ELSIF error == "too_many_votes_for_bug" %]
  1250. [% title = "Illegal Vote" %]
  1251. [% admindocslinks = {'voting.html' => 'Setting up the voting feature'} %]
  1252. You may only use at most [% max FILTER html %] votes for a single
  1253. [%+ terms.bug %] in the
  1254. <tt>[% product FILTER html %]</tt> product, but you are trying to
  1255. use [% votes FILTER html %].
  1256. [% ELSIF error == "too_many_votes_for_product" %]
  1257. [% title = "Illegal Vote" %]
  1258. [% admindocslinks = {'voting.html' => 'Setting up the voting feature'} %]
  1259. You tried to use [% votes FILTER html %] votes in the
  1260. <tt>[% product FILTER html %]</tt> product, which exceeds the maximum of
  1261. [%+ max FILTER html %] votes for this product.
  1262. [% ELSIF error == "token_does_not_exist" %]
  1263. [% title = "Token Does Not Exist" %]
  1264. The token you submitted does not exist, has expired, or has
  1265. been canceled.
  1266. [% ELSIF error == "too_soon_for_new_token" %]
  1267. [% title = "Too Soon For New Token" %]
  1268. You have requested
  1269. [% IF type == "password" %]
  1270. a password
  1271. [% ELSIF type == "account" %]
  1272. an account
  1273. [% END %]
  1274. token too recently to request another. Please wait a while and try again.
  1275. [% ELSIF error == "unknown_keyword" %]
  1276. [% title = "Unknown Keyword" %]
  1277. <code>[% keyword FILTER html %]</code> is not a known keyword.
  1278. The legal keyword names are <a href="describekeywords.cgi">listed here</a>.
  1279. [% ELSIF error == "unknown_tab" %]
  1280. [% title = "Unknown Tab" %]
  1281. <code>[% current_tab_name FILTER html %]</code> is not a legal tab name.
  1282. [% ELSIF error == "version_already_exists" %]
  1283. [% title = "Version Already Exists" %]
  1284. [% admindocslinks = {'versions.html' => 'Administering versions'} %]
  1285. The version '[% name FILTER html %]' already exists for product '
  1286. [%- product FILTER html %]'.
  1287. [% ELSIF error == "version_blank_name" %]
  1288. [% title = "Blank Version Name Not Allowed" %]
  1289. You must enter a name for this version.
  1290. [% ELSIF error == "version_has_bugs" %]
  1291. [% title = BLOCK %]Version has [% terms.Bugs %][% END %]
  1292. There are [% nb FILTER html %] [%+ terms.bugs %] associated with this
  1293. version! You must reassign those [% terms.bugs %] to another version
  1294. before you can delete this one.
  1295. [% ELSIF error == "version_not_specified" %]
  1296. [% title = "No Version Specified" %]
  1297. No version specified when trying to edit versions.
  1298. [% ELSIF error == "users_deletion_disabled" %]
  1299. [% title = "Deletion not activated" %]
  1300. [% admindocslinks = {'useradmin.html' => 'User administration'} %]
  1301. Sorry, the deletion of user accounts is not allowed.
  1302. [% ELSIF error == "user_has_responsibility" %]
  1303. [% title = "Can't Delete User Account" %]
  1304. [% admindocslinks = {'useradmin.html' => 'User administration'} %]
  1305. The user you want to delete is set up as the default [% terms.bug %]
  1306. assignee
  1307. [% IF Param('useqacontact') %]
  1308. or QA contact
  1309. [% END %]
  1310. for at least one component.
  1311. For this reason, you cannot delete the account at this time.
  1312. [% ELSIF error == "user_login_required" %]
  1313. [% title = "Login Name Required" %]
  1314. [% admindocslinks = {'useradmin.html' => 'User administration'} %]
  1315. You must enter a login name for the new user.
  1316. [% ELSIF error == "user_match_failed" %]
  1317. [% title = "Match Failed" %]
  1318. <tt>[% name FILTER html %]</tt> does not exist or you are not allowed
  1319. to see that user.
  1320. [% ELSIF error == "votes_must_be_nonnegative" %]
  1321. [% title = "Votes Must Be Non-negative" %]
  1322. [% admindocslinks = {'voting.html' => 'Setting up the voting feature'} %]
  1323. Only use non-negative numbers for your [% terms.bug %] votes.
  1324. [% ELSIF error == "wrong_token_for_cancelling_email_change" %]
  1325. [% title = "Wrong Token" %]
  1326. That token cannot be used to cancel an email address change.
  1327. [% ELSIF error == "wrong_token_for_changing_passwd" %]
  1328. [% title = "Wrong Token" %]
  1329. That token cannot be used to change your password.
  1330. [% ELSIF error == "wrong_token_for_confirming_email_change" %]
  1331. [% title = "Wrong Token" %]
  1332. That token cannot be used to change your email address.
  1333. [% ELSIF error == "wrong_token_for_creating_account" %]
  1334. [% title = "Wrong Token" %]
  1335. That token cannot be used to create a user account.
  1336. [% ELSIF error == "zero_length_file" %]
  1337. [% title = "File Is Empty" %]
  1338. The file you are trying to attach is empty, does not exist, or you don't
  1339. have permission to read it.
  1340. [% ELSIF error == "illegal_user_id" %]
  1341. [% title = "Illegal User ID" %]
  1342. User ID '[% userid FILTER html %]' is not valid integer.
  1343. [% ELSE %]
  1344. [%# Try to find hooked error messages %]
  1345. [% error_message = Hook.process("errors") %]
  1346. [% IF not error_message %]
  1347. [% title = "Error string not found" %]
  1348. The user error string <code>[% error FILTER html %]</code> was not found.
  1349. Please send email to [% Param("maintainer") %] describing the steps taken
  1350. to obtain this message.
  1351. [% ELSE %]
  1352. [% error_message FILTER none %]
  1353. [% END %]
  1354. [% END %]
  1355. [% END %]
  1356. [%# We only want HTML error messages for ERROR_MODE_WEBPAGE %]
  1357. [% USE Bugzilla %]
  1358. [% IF Bugzilla.error_mode != constants.ERROR_MODE_WEBPAGE %]
  1359. [% IF Bugzilla.usage_mode == constants.USAGE_MODE_BROWSER %]
  1360. [% error_message FILTER none %]
  1361. [% ELSE %]
  1362. [% error_message FILTER txt %]
  1363. [% END %]
  1364. [% RETURN %]
  1365. [% END %]
  1366. [% UNLESS header_done %]
  1367. [% PROCESS global/header.html.tmpl %]
  1368. [% END %]
  1369. [% PROCESS global/docslinks.html.tmpl
  1370. docslinks = docslinks
  1371. admindocslinks = admindocslinks
  1372. %]
  1373. <table cellpadding="20">
  1374. <tr>
  1375. <td id="error_msg" class="throw_error">
  1376. [% error_message FILTER none %]
  1377. </td>
  1378. </tr>
  1379. </table>
  1380. <p>
  1381. Please press <b>Back</b> and try again.
  1382. </p>
  1383. [%# If a saved search fails, people want the ability to edit or delete it.
  1384. # This is the best way of getting information about that possible saved
  1385. # search from any error call location. %]
  1386. [% namedcmd = Bugzilla.cgi.param("namedcmd") %]
  1387. [% sharer_id = Bugzilla.cgi.param("sharer_id") %]
  1388. [% IF namedcmd AND error != "missing_query"
  1389. AND error != "saved_search_used_by_whines"
  1390. AND !sharer_id %]
  1391. <p>
  1392. Alternatively, you can
  1393. <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
  1394. [% namedcmd FILTER url_quote %]">forget</a>
  1395. [% FOREACH q = Bugzilla.user.queries %]
  1396. [% IF q.name == namedcmd %]
  1397. or <a href="query.cgi?[% q.url FILTER html %]">edit</a>
  1398. [% END %]
  1399. [% END %]
  1400. the saved search '[% namedcmd FILTER html %]'.
  1401. </p>
  1402. [% END %]
  1403. [% PROCESS global/footer.html.tmpl %]
  1404. [% BLOCK object_name %]
  1405. [% IF class == "Bugzilla::User" %]
  1406. user
  1407. [% ELSIF class == "Bugzilla::Component" %]
  1408. component
  1409. [% ELSIF class == "Bugzilla::Version" %]
  1410. version
  1411. [% ELSIF class == "Bugzilla::Milestone" %]
  1412. milestone
  1413. [% ELSIF class == "Bugzilla::Status" %]
  1414. status
  1415. [% END %]
  1416. [% END %]