PageRenderTime 68ms CodeModel.GetById 27ms RepoModel.GetById 1ms app.codeStats 0ms

/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

Large files files are truncated, but you can click here to view the full file

  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

Large files files are truncated, but you can click here to view the full file