PageRenderTime 54ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 1ms

/en/default/global/user-error.html.tmpl

https://github.com/weshayutin/template
Go Template | 1749 lines | 1477 code | 272 blank | 0 comment | 0 complexity | c32c9c4a7b9e18b906b8f8f0481beba0 MD5 | raw file

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 [% IF userid %] with ID '[% userid FILTER html %]'
  181. [% ELSE %]you specified [% END %]
  182. [% ELSIF object == "users" %]
  183. users
  184. [% ELSIF object == "versions" %]
  185. versions
  186. [% ELSIF object == "workflow" %]
  187. the workflow
  188. [% END %].
  189. [% Hook.process("auth_failure") %]
  190. [% ELSIF error == "attachment_deletion_disabled" %]
  191. [% title = "Attachment Deletion Disabled" %]
  192. Attachment deletion is disabled on this installation.
  193. [% ELSIF error == "attachment_removed" %]
  194. [% title = "Attachment Removed" %]
  195. The attachment you are attempting to access has been removed.
  196. [% ELSIF error == "bug_access_denied" %]
  197. [% title = "Access Denied" %]
  198. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  199. You are not authorized to access [% terms.bug %] #[% bug_id FILTER html %].
  200. [% ELSIF error == "bug_access_query" %]
  201. [% title = "Access Denied" %]
  202. [% docslinks = {'myaccount.html' => 'Creating an account'} %]
  203. You are not authorized to access [% terms.bug %] #[% bug_id FILTER html %].
  204. To see this [% terms.bug %], you must
  205. first <a href="show_bug.cgi?id=
  206. [% bug_id FILTER url_quote %]&amp;GoAheadAndLogIn=1">log
  207. in to an account</a> with the appropriate permissions.
  208. [% ELSIF error == "bug_url_invalid" %]
  209. [% title = "Invalid $terms.Bug URL" %]
  210. <code>[% url FILTER html %]</code> is not a valid URL to [% terms.abug %].
  211. [% IF reason == 'http' %]
  212. URLs must start with "http" or "https".
  213. [% ELSIF reason == 'show_bug' %]
  214. [%+ terms.Bug %] URLs should point to <code>show_bug.cgi</code>
  215. in a [% terms.Bugzilla %] installation.
  216. [% ELSIF reason == 'id' %]
  217. There is no valid [% terms.bug %] id in that URL.
  218. [% END %]
  219. [% ELSIF error == "bug_url_too_long" %]
  220. [% title = "Invalid $terms.Bug URL" %]
  221. [% terms.Bug %] URLs can not be longer than
  222. [%+ constants.MAX_BUG_URL_LENGTH FILTER none %] characters long.
  223. <code>[% url FILTER html %]</code> is too long.
  224. [% ELSIF error == "buglist_parameters_required" %]
  225. [% title = "Parameters Required" %]
  226. [% docslinks = {'query.html' => "Searching for $terms.bugs",
  227. 'query.html#list' => "$terms.Bug lists"} %]
  228. You may not search, or create saved searches, without any search terms.
  229. [% ELSIF error == "chart_too_large" %]
  230. [% title = "Chart Too Large" %]
  231. Sorry, but 2000 x 2000 is the maximum size for a chart.
  232. [% ELSIF error == "comment_id_invalid" %]
  233. [% id FILTER html %] is not a valid comment id.
  234. [% ELSIF error == "comment_invalid_isprivate" %]
  235. You tried to modify the privacy of comment id [% id FILTER html %],
  236. but that is not a valid comment on this [% terms.bug %].
  237. [% ELSIF error == "comment_is_private" %]
  238. Comment id [% id FILTER html %] is private.
  239. [% ELSIF error == "comment_required" %]
  240. [% title = "Comment Required" %]
  241. You have to specify a
  242. [% IF old && new %]
  243. <b>comment</b> when changing the status of [% terms.abug %] from
  244. [%+ old.name FILTER html %] to [% new.name FILTER html %].
  245. [% ELSIF new %]
  246. description for this [% terms.bug %].
  247. [% ELSE %]
  248. <b>comment</b> on this change.
  249. [% END %]
  250. [% ELSIF error == "comment_too_long" %]
  251. [% title = "Comment Too Long" %]
  252. Comments cannot be longer than 65,535 characters.
  253. [% ELSIF error == "auth_classification_not_enabled" %]
  254. [% title = "Classification Not Enabled" %]
  255. Sorry, classification is not enabled.
  256. [% ELSIF error == "classification_name_too_long" %]
  257. [% title = "Classification Name Too Long" %]
  258. The name of a classification is limited to [% constants.MAX_CLASSIFICATION_SIZE FILTER html %]
  259. characters. '[% name FILTER html %]' is too long ([% name.length %] characters).
  260. [% ELSIF error == "classification_not_specified" %]
  261. [% title = "You Must Supply A Classification Name" %]
  262. You must enter a classification name.
  263. [% ELSIF error == "classification_already_exists" %]
  264. [% title = "Classification Already Exists" %]
  265. A classification with the name '[% name FILTER html %]' already exists.
  266. [% ELSIF error == "classification_invalid_sortkey" %]
  267. [% title = "Invalid Sortkey for Classification" %]
  268. The sortkey '[% sortkey FILTER html %]' is invalid. It must be an
  269. integer between 0 and [% constants.MAX_SMALLINT FILTER html %].
  270. [% ELSIF error == "classification_not_deletable" %]
  271. [% title = "Default Classification Can Not Be Deleted" %]
  272. You can not delete the default classification
  273. [% ELSIF error == "classification_has_products" %]
  274. Sorry, there are products for this classification. You
  275. must reassign those products to another classification before you
  276. can delete this one.
  277. [% ELSIF error == "component_already_exists" %]
  278. [% title = "Component Already Exists" %]
  279. The <em>[% product.name FILTER html %]</em> product already has
  280. a component named <em>[% name FILTER html %]</em>.
  281. [% ELSIF error == "component_blank_description" %]
  282. [% title = "Blank Component Description Not Allowed" %]
  283. You must enter a non-blank description for this component.
  284. [% ELSIF error == "component_blank_name" %]
  285. [% title = "Blank Component Name Not Allowed" %]
  286. You must enter a name for this new component.
  287. [% ELSIF error == "component_has_bugs" %]
  288. [% title = BLOCK %]Component has [% terms.Bugs %][% END %]
  289. There are [% nb FILTER html %] [%+ terms.bugs %] entered for this component!
  290. You must reassign those [% terms.bugs %] to another component before you
  291. can delete this one.
  292. [% ELSIF error == "component_name_too_long" %]
  293. [% title = "Component Name Is Too Long" %]
  294. The name of a component is limited to [% constants.MAX_COMPONENT_SIZE FILTER html %]
  295. characters. '[% name FILTER html %]' is too long ([% name.length %] characters).
  296. [% ELSIF error == "component_need_initialowner" %]
  297. [% title = "Component Requires Default Assignee" %]
  298. A default assignee is required for this component.
  299. [% ELSIF error == "customfield_nonexistent" %]
  300. [% title = "Unknown Custom Field" %]
  301. There is no custom field with the name '[% name FILTER html %]'.
  302. [% ELSIF error == "customfield_not_obsolete" %]
  303. [% title = "Custom Field Not Obsolete" %]
  304. The custom field '[% name FILTER html %]' is not obsolete.
  305. Please obsolete a custom field before attempting to delete it.
  306. [% ELSIF error == "customfield_has_activity" %]
  307. [% title = "Custom Field Has Activity" %]
  308. The custom field '[% name FILTER html %]' cannot be deleted because
  309. it has recorded activity.
  310. [% ELSIF error == "customfield_has_contents" %]
  311. [% title = "Custom Field Has Contents" %]
  312. The custom field '[% name FILTER html %]' cannot be deleted because
  313. at least one [% terms.bug %] has a non empty value for this field.
  314. [% ELSIF error == "dependency_loop_multi" %]
  315. [% title = "Dependency Loop Detected" %]
  316. The following [% terms.bug %](s) would appear on both the "depends on"
  317. and "blocks" parts of the dependency tree if these changes
  318. are committed:
  319. [% FOREACH dep = deps %]
  320. [%+ dep FILTER bug_link(dep) FILTER none %]
  321. [% END %].
  322. This would create a circular dependency, which is not allowed.
  323. [% ELSIF error == "dependency_loop_single" %]
  324. [% title = "Dependency Loop Detected" %]
  325. You can't make [% terms.abug %] block itself or depend on itself.
  326. [% ELSIF error == "dupe_id_required" %]
  327. [% title = "Duplicate $terms.Bug Id Required" %]
  328. You must specify [% terms.abug %] id to mark this [% terms.bug %]
  329. as a duplicate of.
  330. [% ELSIF error == "dupe_not_allowed" %]
  331. [% title = "Cannot mark $terms.bugs as duplicates" %]
  332. You cannot mark [% terms.bugs %] as duplicates when
  333. changing several [% terms.bugs %] at once.
  334. [% ELSIF error == "dupe_loop_detected" %]
  335. [% title = "Loop detected among duplicates" %]
  336. You cannot mark [% terms.bug %] [%+ bug_id FILTER html %] as
  337. a duplicate of
  338. [% IF dupe_of == bug_id %]
  339. itself
  340. [% ELSE %]
  341. [%+ terms.bug %] [%+ dupe_of FILTER html %], because it
  342. would create a duplicate loop
  343. [% END %].
  344. [% ELSIF error == "email_change_in_progress" %]
  345. [% title = "Email Change Already In Progress" %]
  346. Email change already in progress; please check your email.
  347. [% ELSIF error == "email_confirmation_failed" %]
  348. [% title = "Email Address Confirmation Failed" %]
  349. Email address confirmation failed.
  350. [% ELSIF error == "email_no_text_plain" %]
  351. Your message did not contain any text.[% terms.Bugzilla %] does not
  352. accept HTML-only email, or HTML email with attachments.
  353. [% ELSIF error == "empty_group_description" %]
  354. [% title = "The group description can not be empty" %]
  355. You must enter a description for the group.
  356. [% ELSIF error == "empty_group_name" %]
  357. [% title = "The group name can not be empty" %]
  358. You must enter a name for the group.
  359. [% ELSIF error == "entry_access_denied" %]
  360. [% title = "Permission Denied" %]
  361. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  362. Sorry, either the product <em>[% product FILTER html %]</em>
  363. does not exist or you aren't authorized to
  364. enter [% terms.abug %] into it.
  365. [% ELSIF error == "field_already_exists" %]
  366. [% title = "Field Already Exists" %]
  367. The field '[% field.name FILTER html %]'
  368. ([% field.description FILTER html %]) already exists. Please
  369. choose another name.
  370. [% ELSIF error == "field_cant_control_self" %]
  371. [% title = "Field Can't Control Itself" %]
  372. The [% field.description FILTER html %] field can't be set to control
  373. itself.
  374. [% ELSIF error == "field_control_must_be_select" %]
  375. [% title = "Invalid Field Type Selected" %]
  376. Only drop-down and multi-select fields can be used to control
  377. the visibility/values of other fields. [% field.description FILTER html %]
  378. is not the right type of field.
  379. [% ELSIF error == "field_invalid_name" %]
  380. [% title = "Invalid Field Name" %]
  381. '[% name FILTER html %]' is not a valid name for a field.
  382. A name may contain only letters, numbers, and the underscore character.
  383. [% ELSIF error == "field_invalid_sortkey" %]
  384. [% title = "Invalid Sortkey for Field" %]
  385. The sortkey [% sortkey FILTER html %] that you have provided for
  386. this field is not a valid positive integer.
  387. [% ELSIF error == "field_missing_description" %]
  388. [% title = "Missing Description for Field" %]
  389. You must enter a description for this field.
  390. [% ELSIF error == "field_missing_name" %]
  391. [% title = "Missing Name for Field" %]
  392. You must enter a name for this field.
  393. [% ELSIF error == "field_value_control_select_only" %]
  394. [% title = "Invalid Value Control Field" %]
  395. Only Drop-Down or Multi-Select fields can have a field that
  396. controls their values.
  397. [% ELSIF error == "fieldname_invalid" %]
  398. [% title = "Specified Field Does Not Exist" %]
  399. The field '[% field.name FILTER html %]' does not exist or
  400. cannot be edited with this interface.
  401. [% ELSIF error == "fieldvalue_already_exists" %]
  402. [% title = "Field Value Already Exists" %]
  403. The value '[% value.name FILTER html %]' already exists for the
  404. [%+ field.description FILTER html %] field.
  405. [% ELSIF error == "fieldvalue_is_controller" %]
  406. [% title = "Value Controls Other Fields" %]
  407. You cannot delete the [% value.field.description FILTER html %]
  408. '[% value.name FILTER html %]' because
  409. [% IF fields.size %]
  410. it controls the visibility of the following fields:
  411. [%+ fields.join(', ') FILTER html %].
  412. [% END %]
  413. [% ' and ' IF fields.size AND vals.size %]
  414. [% IF vals.size %]
  415. it controls the visibility of the following field values:
  416. <ul>
  417. [% FOREACH field_name = vals.keys %]
  418. [% FOREACH val = vals.${field_name} %]
  419. <li>[% val.field.name FILTER html %]:
  420. '[% val.name FILTER html %]'</li>
  421. [% END %]
  422. [% END %]
  423. </ul>
  424. [% END %]
  425. [% ELSIF error == "fieldvalue_is_default" %]
  426. [% title = "Specified Field Value Is Default" %]
  427. '[% value.name FILTER html %]' is the default value for
  428. the '[% field.description FILTER html %]' field and cannot be deleted.
  429. [% IF user.in_group('tweakparams') %]
  430. You have to <a href="editparams.cgi?section=bugfields#
  431. [%- param_name FILTER url_quote %]">change</a> the default value first.
  432. [% END %]
  433. [% ELSIF error == "fieldvalue_name_too_long" %]
  434. [% title = "Field Value Is Too Long" %]
  435. The value of a field is limited to
  436. [%+ constants.FIELD_VALUE_MAX_SIZE FILTER none %] characters.
  437. '[% value FILTER html %]' is too long ([% value.length %] characters).
  438. [% ELSIF error == "fieldvalue_not_editable" %]
  439. [% title = "Field Value Not Editable" %]
  440. The value '[% old_value.name FILTER html %]' cannot be renamed because
  441. it plays some special role for the '[% field.description FILTER html %]'
  442. field.
  443. [% ELSIF error == "fieldvalue_not_deletable" %]
  444. [% title = "Field Value Not Deletable" %]
  445. The value '[% value.name FILTER html %]' cannot be removed because
  446. it plays some special role for the '[% field.description FILTER html %]'
  447. field.
  448. [% ELSIF error == "fieldvalue_reserved_word" %]
  449. [% title = "Reserved Word Not Allowed" %]
  450. You cannot use the value '[% value FILTER html %]' for the
  451. '[% field.description FILTER html %]' field. This value is used internally.
  452. Please choose another one.
  453. [% ELSIF error == "fieldvalue_sortkey_invalid" %]
  454. [% title = "Invalid Field Value Sortkey" %]
  455. The sortkey '[% sortkey FILTER html %]' for the
  456. [%+ field.description FILTER html %] field is not a valid
  457. (positive) number.
  458. [% ELSIF error == "fieldvalue_still_has_bugs" %]
  459. [% title = "You Cannot Delete This Field Value" %]
  460. You cannot delete the value '[% value.name FILTER html %]' from the
  461. [% field.description FILTER html %] field, because there are still
  462. [%+ value.bug_count FILTER html %] [%+ terms.bugs %] using it.
  463. [% ELSIF error == "fieldvalue_undefined" %]
  464. [% title = "Undefined Value Not Allowed" %]
  465. You must specify a value.
  466. [% ELSIF error == "file_not_specified" %]
  467. [% title = "No File Specified" %]
  468. You did not specify a file to attach.
  469. [% ELSIF error == "file_too_large" %]
  470. [% title = "File Too Large" %]
  471. The file you are trying to attach is [% filesize FILTER html %]
  472. kilobytes (KB) in size. Non-patch attachments cannot be more than
  473. [%+ Param('maxattachmentsize') %] KB. <br>
  474. We recommend that you store your attachment elsewhere
  475. [% IF Param("allow_attach_url") %]
  476. and then specify the URL to this file on the attachment
  477. creation page in the <b>AttachURL</b> field.
  478. [% ELSE %]
  479. and then insert the URL to it in a comment, or in the URL field
  480. for this [% terms.bug %].
  481. [% END %]
  482. <br>Alternately, if your attachment is an image, you could convert
  483. it to a compressible format like JPG or PNG and try again.
  484. [% ELSIF error == "flag_not_multiplicable" %]
  485. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  486. 'flags.html' => 'Using Flags'} %]
  487. You can't ask more than one person at a time for
  488. <em>[% type.name FILTER html %]</em>.
  489. [% ELSIF error == "flag_requestee_needs_privs" %]
  490. [% title = "Flag Requestee Needs Privileges" %]
  491. [% requestee.identity FILTER html %] does not have permission to set the
  492. <em>[% flagtype.name FILTER html %]</em> flag. Please select a user who is
  493. a member of the <em>[% flagtype.grant_group.name FILTER html %]</em> group.
  494. [% ELSIF error == "flag_requestee_unauthorized" %]
  495. [% title = "Flag Requestee Not Authorized" %]
  496. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  497. 'groups.html' => 'Group Security'} %]
  498. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  499. 'flags.html' => 'Using Flags'} %]
  500. You asked [% requestee.identity FILTER html %]
  501. for <code>[% flag_type.name FILTER html %]</code> on [% terms.bug %]
  502. [%+ bug_id FILTER html -%]
  503. [% IF attach_id && attach_id > 0 %], attachment [% attach_id FILTER html %][% END %],
  504. but that [% terms.bug %] has been restricted to users in certain groups,
  505. and the user you asked isn't in all the groups to which
  506. the [% terms.bug %] has been restricted.
  507. Please choose someone else to ask, or make the [% terms.bug %] accessible
  508. to users on its CC: list and add that user to the list.
  509. [% ELSIF error == "flag_requestee_unauthorized_attachment" %]
  510. [% title = "Flag Requestee Not Authorized" %]
  511. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  512. 'groups.html' => 'Group Security'} %]
  513. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  514. 'flags.html' => 'Using Flags'} %]
  515. You asked [% requestee.identity FILTER html %]
  516. for <code>[% flag_type.name FILTER html %]</code> on
  517. [%+ terms.bug %] [%+ bug_id FILTER html %],
  518. attachment [% attach_id FILTER html %], but that attachment
  519. is restricted to users in the [% Param("insidergroup") FILTER html %] group,
  520. and the user you asked isn't in that group. Please choose someone else
  521. to ask, or ask an administrator to add the user to the group.
  522. [% ELSIF error == "flag_type_cc_list_invalid" %]
  523. [% title = "Flag Type CC List Invalid" %]
  524. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  525. The CC list [% cc_list FILTER html %] must be less than 200 characters long.
  526. [% ELSIF error == "flag_type_component_without_product" %]
  527. [% title = "Product Missing" %]
  528. A component was selected without a product being selected.
  529. [% ELSIF error == "flag_type_description_invalid" %]
  530. [% title = "Flag Type Description Invalid" %]
  531. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  532. The description must be less than 32K.
  533. [% ELSIF error == "flag_type_name_invalid" %]
  534. [% title = "Flag Type Name Invalid" %]
  535. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  536. The name <em>[% name FILTER html %]</em> must be 1-50 characters long
  537. and must not contain any spaces or commas.
  538. [% ELSIF error == "flag_update_denied" %]
  539. [% title = "Flag Modification Denied" %]
  540. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  541. 'groups.html' => 'Group Security'} %]
  542. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  543. 'flags.html' => 'Using Flags'} %]
  544. You tried to [% IF status == "+" %] grant [% ELSIF status == "-" %] deny
  545. [% ELSIF status == "X" %] clear [% ELSE %] request [% END %]
  546. <code>[% name FILTER html %]
  547. [% IF status == "X" %][% old_status FILTER html %][% END %]</code>.
  548. Only a user with the required permissions may make this change.
  549. [% ELSIF error == "format_not_found" %]
  550. [% title = "Format Not Found" %]
  551. The requested format <em>[% format FILTER html %]</em> does not exist with
  552. a content type of <em>[% ctype FILTER html %]</em>.
  553. [% ELSIF error == "flag_type_sortkey_invalid" %]
  554. [% title = "Flag Type Sort Key Invalid" %]
  555. The sort key must be an integer between 0 and 32767 inclusive.
  556. It cannot be <em>[% sortkey FILTER html %]</em>.
  557. [% ELSIF error == "freetext_too_long" %]
  558. [% title = "Text Too Long" %]
  559. The text you entered is too long ([% text.length FILTER html %] characters,
  560. above the maximum length allowed of [% constants.MAX_FREETEXT_LENGTH FILTER none %]
  561. characters):
  562. <p><em>[% text FILTER html %]</em></p>
  563. [% ELSIF error == "group_cannot_delete" %]
  564. [% title = "Cannot Delete Group" %]
  565. The <em>[% name FILTER html %]</em> group cannot be deleted because
  566. there are
  567. <a href="editgroups.cgi?action=del&amp;group=[% gid FILTER url_quote %]">records</a>
  568. in the database which refer to it. All references to this group must
  569. be removed before you can remove it.
  570. [% ELSIF error == "group_change_denied" %]
  571. [% title = "Cannot Add/Remove That Group" %]
  572. You tried to add or remove group id [% group_id FILTER html %]
  573. from [% terms.bug %] [%+ bug.id FILTER html %], but you do not
  574. have permissions to do so.
  575. [% ELSIF error == "group_exists" %]
  576. [% title = "The group already exists" %]
  577. The group [% name FILTER html %] already exists.
  578. [% ELSIF error == "group_has_special_role" %]
  579. [% title = "Group not deletable" %]
  580. [% IF groups.size == 1 %]
  581. [% attr = "it" %]
  582. [% param = "parameter" %]
  583. [% ELSE %]
  584. [% attr = "them" %]
  585. [% param = "parameters" %]
  586. [% END %]
  587. The group '[% name FILTER html %]' is used by the
  588. '[% groups.join("' and '") FILTER html %]' [% param FILTER html %].
  589. In order to delete this group, you first have to change the
  590. [%+ param FILTER html %] to make [% attr FILTER html %] point to another group.
  591. [% ELSIF error == "group_invalid_removal" %]
  592. You tried to remove [% terms.bug %] [%+ bug.id FILTER html %]
  593. from group id [% group_id FILTER html %], but [% terms.bugs %] in the
  594. '[% product FILTER html %]' product can not be removed from that
  595. group.
  596. [% ELSIF error == "group_invalid_restriction" %]
  597. You tried to restrict [% terms.bug %] [%+ bug.id FILTER html %] to
  598. to group id [% group_id FILTER html %], but [% terms.bugs %] in the
  599. '[% product FILTER html %]' product can not be restricted to
  600. that group.
  601. [% ELSIF error == "group_not_specified" %]
  602. [% title = "Group not specified" %]
  603. No group was specified.
  604. [% ELSIF error == "system_group_not_deletable" %]
  605. [% title = "System Groups not deletable" %]
  606. <em>[% name FILTER html %]</em> is a system group.
  607. This group cannot be deleted.
  608. [% ELSIF error == "group_unknown" %]
  609. [% title = "Unknown Group" %]
  610. The group [% name FILTER html %] does not exist. Please specify
  611. a valid group name. Create it first if necessary!
  612. [% ELSIF error == "illegal_at_least_x_votes" %]
  613. [% title = "Your Search Makes No Sense" %]
  614. The <em>At least ___ votes</em> field must be a simple number.
  615. You entered <tt>[% value FILTER html %]</tt>, which isn't.
  616. [% ELSIF error == "illegal_attachment_edit" %]
  617. [% title = "Unauthorized Action" %]
  618. You are not authorized to edit attachment [% attach_id FILTER html %].
  619. [% ELSIF error == "illegal_attachment_edit_bug" %]
  620. [% title = "Unauthorized Action" %]
  621. You are not authorized to edit attachments on [% terms.bug %]
  622. [%+ bug_id FILTER html %].
  623. [% ELSIF error == "illegal_attachment_is_patch" %]
  624. [% title = "Your Search Makes No Sense" %]
  625. The only legal values for the <em>Attachment is patch</em> field are
  626. 0 and 1.
  627. [% ELSIF error == "illegal_bug_status_transition" %]
  628. [% title = "Illegal $terms.Bug Status Change" %]
  629. [% IF old.defined %]
  630. You are not allowed to change the [% terms.bug %] status from
  631. [%+ old.name FILTER html %] to [% new.name FILTER html %].
  632. [% ELSE %]
  633. You are not allowed to file new [% terms.bugs %] with the
  634. [%+ new.name FILTER html %] status.
  635. [% END %]
  636. [% ELSIF error == "illegal_change" %]
  637. [% title = "Not allowed" %]
  638. You tried to change the
  639. <strong>[% field_descs.$field FILTER html %]</strong> field
  640. [% IF oldvalue.defined %]
  641. from <em>[% oldvalue.join(', ') FILTER html %]</em>
  642. [% END %]
  643. [% IF newvalue.defined %]
  644. to <em>[% newvalue.join(', ') FILTER html %]</em>
  645. [% END %]
  646. , but only
  647. [% IF privs < 3 %]
  648. the assignee
  649. [% IF privs < 2 %] or reporter [% END %]
  650. of the [% terms.bug %], or
  651. [% END %]
  652. a user with the required permissions may change that field.
  653. [% ELSIF error == "illegal_change_deps" %]
  654. [% title = "Not allowed" %]
  655. You tried to change the
  656. <strong>[% field_descs.$field FILTER html %]</strong> field
  657. but only a user allowed to edit
  658. both related [% terms.bugs %] may change that field.
  659. [% ELSIF error == "illegal_changed_in_last_x_days" %]
  660. [% title = "Your Search Makes No Sense" %]
  661. The <em>Changed in last ___ days</em> field must be a simple number.
  662. You entered <tt>[% value FILTER html %]</tt>, which isn't.
  663. [% ELSIF error == "illegal_date" %]
  664. [% title = "Illegal Date" %]
  665. '<tt>[% date FILTER html %]</tt>' is not a legal date.
  666. [% IF format %]
  667. Please use the format '<tt>[% format FILTER html %]</tt>'.
  668. [% END %]
  669. [% ELSIF error == "illegal_email_address" %]
  670. [% title = "Invalid Email Address" %]
  671. The e-mail address you entered (<b>[% addr FILTER html %]</b>)
  672. didn't pass our syntax checking for a legal email address.
  673. [% IF default %]
  674. A legal address must contain exactly one '@',
  675. and at least one '.' after the @.
  676. [% ELSE %]
  677. [%+ Param('emailregexpdesc') %]
  678. [% END %]
  679. It must also not contain any of these special characters:
  680. <tt>\ ( ) &amp; &lt; &gt; , ; : &quot; [ ]</tt>, or any whitespace.
  681. [% ELSIF error == "illegal_frequency" %]
  682. [% title = "Too Frequent" %]
  683. Unless you are an administrator, you may not create series which are
  684. run more often than once every [% minimum FILTER html %] days.
  685. [% ELSIF error == "illegal_group_control_combination" %]
  686. [% title = "Your Group Control Combination Is Illegal" %]
  687. [% admindocslinks = {'groups.html' => 'Assigning Group Controls to Products'} %]
  688. Your group control combination for group &quot;
  689. [% groupname FILTER html %]&quot; is illegal.
  690. [% ELSIF error == "illegal_is_obsolete" %]
  691. [% title = "Your Search Makes No Sense" %]
  692. The only legal values for the <em>Attachment is obsolete</em> field are
  693. 0 and 1.
  694. [% ELSIF error == "illegal_query_name" %]
  695. [% title = "Illegal Search Name" %]
  696. The name of your search cannot contain any of the following characters:
  697. &lt;, &gt;, &amp;.
  698. [% ELSIF error == "illegal_series_creation" %]
  699. [% admindocslinks = {'groups.html' => 'Group security'} %]
  700. [% docslinks = {'reporting.html' => 'Reporting'} %]
  701. You are not authorized to create series.
  702. [% ELSIF error == "illegal_series_edit" %]
  703. [% admindocslinks = {'groups.html' => 'Group security'} %]
  704. [% docslinks = {'reporting.html' => 'Reporting'} %]
  705. You are not authorized to edit this series. To do this, you must either
  706. be its creator, or an administrator.
  707. [% ELSIF error == "illegal_time" %]
  708. [% title = "Illegal Time" %]
  709. '<tt>[% time FILTER html %]</tt>' is not a legal time.
  710. [% IF format %]
  711. Please use the format '<tt>[% format FILTER html %]</tt>'.
  712. [% END %]
  713. [% ELSIF error == "illegal_regexp" %]
  714. [% title = "Illegal Regular Expression" %]
  715. The regular expression you provided [% value FILTER html %] is not valid.
  716. The error was: [% dberror FILTER html %].
  717. [% ELSIF error == "insufficient_data_points" %]
  718. [% docslinks = {'reporting.html' => 'Reporting'} %]
  719. We don't have enough data points to make a graph (yet).
  720. [% ELSIF error == "invalid_attach_id" %]
  721. [% title = "Invalid Attachment ID" %]
  722. The attachment id [% attach_id FILTER html %] is invalid.
  723. [% ELSIF error == "bug_id_does_not_exist" %]
  724. [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %]
  725. [% terms.Bug %] #[% bug_id FILTER html %] does not exist.
  726. [% ELSIF error == "improper_bug_id_field_value" %]
  727. [% title = BLOCK %]
  728. [% IF bug_id %]Invalid [% ELSE %]Missing [% END %] [% terms.Bug %] ID
  729. [% END %]
  730. [% IF bug_id %]
  731. '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number
  732. [% IF Param("usebugaliases") %]
  733. nor an alias to [% terms.abug %]
  734. [% END %].
  735. [% ELSE %]
  736. [% IF field %]
  737. The '[% field_descs.$field FILTER html %]' field
  738. cannot be empty.
  739. [% END %]
  740. You must enter a valid [% terms.bug %] number!
  741. [% END %]
  742. [% ELSIF error == "invalid_changedsince" %]
  743. [% title = "Invalid 'Changed Since'" %]
  744. The 'changed since' value, '[% changedsince FILTER html %]', must be an
  745. integer >= 0.
  746. [% ELSIF error == "invalid_content_type" %]
  747. [% title = "Invalid Content-Type" %]
  748. The content type <em>[% contenttype FILTER html %]</em> is invalid.
  749. Valid types must be of the form <em>foo/bar</em> where <em>foo</em>
  750. is either <em>application, audio, image, message, model, multipart,
  751. text,</em> or <em>video</em>.
  752. [% ELSIF error == "invalid_context" %]
  753. [% title = "Invalid Context" %]
  754. The context [% context FILTER html %] is invalid (must be a number,
  755. "file" or "patch").
  756. [% ELSIF error == "invalid_datasets" %]
  757. [% title = "Invalid Datasets" %]
  758. Invalid datasets <em>[% datasets FILTER html %]</em>. Only digits,
  759. letters and colons are allowed.
  760. [% ELSIF error == "invalid_format" %]
  761. [% title = "Invalid Format" %]
  762. The format "[% format FILTER html %]" is invalid (must be one of
  763. [% FOREACH my_format = formats %]
  764. "[% my_format FILTER html %]"
  765. [% END %]
  766. ).
  767. [% ELSIF error == "invalid_group_ID" %]
  768. [% title = "Invalid group ID" %]
  769. The group you specified doesn't exist.
  770. [% ELSIF error == "invalid_group_name" %]
  771. [% title = "Invalid group name" %]
  772. The group you specified, [% name FILTER html %], is not valid here.
  773. [% ELSIF error == "invalid_maxrows" %]
  774. [% title = "Invalid Max Rows" %]
  775. The maximum number of rows, '[% maxrows FILTER html %]', must be
  776. a positive integer.
  777. [% ELSIF error == "invalid_parameter" %]
  778. [% title = "Invalid Parameter" %]
  779. The new value for [% name FILTER html %] is invalid: [% err FILTER html %].
  780. [% ELSIF error == "invalid_product_name" %]
  781. [% title = "Invalid Product Name" %]
  782. The product name '[% product FILTER html %]' is invalid or does not exist.
  783. [% ELSIF error == "invalid_regexp" %]
  784. [% title = "Invalid regular expression" %]
  785. The regular expression you entered is invalid.
  786. [% ELSIF error == "invalid_user_group" %]
  787. [% title = "Invalid User Group" %]
  788. [% IF users.size > 1 %] Users [% ELSE %] User [% END %]
  789. '[% users.join(', ') FILTER html %]'
  790. [% IF users.size > 1 %] are [% ELSE %] is [% END %]
  791. not able to edit the
  792. [% IF product %]
  793. '[% product FILTER html %]'
  794. [% END %]
  795. [%+ field_descs.product FILTER html %]
  796. [% IF bug_id %]
  797. for [% terms.bug %] '[% bug_id FILTER html %]'.
  798. [% ELSIF new %]
  799. and may not be included on a new [% terms.bug %].
  800. [% ELSE %]
  801. for at least one [% terms.bug %] being changed.
  802. [% END %]
  803. [% ELSIF error == "invalid_username" %]
  804. [% title = "Invalid Username" %]
  805. The name <tt>[% name FILTER html %]</tt> is not a valid username.
  806. Either you misspelled it, or the person has not
  807. registered for a [% terms.Bugzilla %] account.
  808. [% ELSIF error == "invalid_username_or_password" %]
  809. [% title = "Invalid Username Or Password" %]
  810. The username or password you entered is not valid.
  811. [% ELSIF error == "keyword_already_exists" %]
  812. [% title = "Keyword Already Exists" %]
  813. A keyword with the name [% name FILTER html %] already exists.
  814. [% ELSIF error == "keyword_blank_description" %]
  815. [% title = "Blank Keyword Description Not Allowed" %]
  816. You must enter a non-blank description for the keyword.
  817. [% ELSIF error == "keyword_blank_name" %]
  818. [% title = "Blank Keyword Name Not Allowed" %]
  819. You must enter a non-blank name for the keyword.
  820. [% ELSIF error == "keyword_invalid_name" %]
  821. [% title = "Invalid Keyword Name" %]
  822. You may not use commas or whitespace in a keyword name.
  823. [% ELSIF error == "local_file_too_large" %]
  824. [% title = "Local File Too Large" %]
  825. Local file uploads must not exceed
  826. [% Param('maxlocalattachment') %] MB in size.
  827. [% ELSIF error == "login_needed_for_password_change" %]
  828. [% title = "Login Name Required" %]
  829. You must enter a login name when requesting to change your password.
  830. [% ELSIF error == "login_required_for_pronoun" %]
  831. [% title = "Login Name Required" %]
  832. You can't use %user% without being logged in, because %user% refers
  833. to your login name, which we don't know.
  834. [% ELSIF error == "milestone_already_exists" %]
  835. [% title = "Milestone Already Exists" %]
  836. [% admindocslinks = {'products.html' => 'Administering products',
  837. 'milestones.html' => 'About Milestones'} %]
  838. The milestone '[% name FILTER html %]' already exists for product '
  839. [%- product FILTER html %]'.
  840. [% ELSIF error == "milestone_blank_name" %]
  841. [% title = "Blank Milestone Name Not Allowed" %]
  842. You must enter a name for this milestone.
  843. [% ELSIF error == "milestone_is_default" %]
  844. [% title = "Default milestone not deletable" %]
  845. [% admindocslinks = {'products.html' => 'Administering products',
  846. 'milestones.html' => 'About Milestones'} %]
  847. Sorry, but [% milestone.name FILTER html %] is the default milestone
  848. for the '[% milestone.product.name FILTER html %]' product, and so
  849. it cannot be deleted.
  850. [% ELSIF error == "milestone_name_too_long" %]
  851. [% title = "Milestone Name Is Too Long" %]
  852. The name of a milestone is limited to [% constants.MAX_MILESTONE_SIZE FILTER html %]
  853. characters. '[% name FILTER html %]' is too long ([% name.length %] characters).
  854. [% ELSIF error == "milestone_required" %]
  855. [% title = "Milestone Required" %]
  856. You must select a target milestone for [% terms.bug %]
  857. [%+ bug.id FILTER html %]
  858. if you are going to accept it. Part of accepting
  859. [%+ terms.abug %] is giving an estimate of when it will be fixed.
  860. [% ELSIF error == "milestone_sortkey_invalid" %]
  861. [% title = "Invalid Milestone Sortkey" %]
  862. The sortkey '[% sortkey FILTER html %]' is not in the range
  863. [%+ constants.MIN_SMALLINT FILTER html %] &le; sortkey &le;
  864. [%+ constants.MAX_SMALLINT FILTER html %].
  865. [% ELSIF error == "misarranged_dates" %]
  866. [% title = "Misarranged Dates" %]
  867. Your start date ([% datefrom FILTER html %]) is after
  868. your end date ([% dateto FILTER html %]).
  869. [% ELSIF error == "missing_attachment_description" %]
  870. [% title = "Missing Attachment Description" %]
  871. You must enter a description for the attachment.
  872. [% ELSIF error == "missing_category" %]
  873. [% title = "Missing Category" %]
  874. You did not specify a category for this series.
  875. [% ELSIF error == "missing_component" %]
  876. [% title = "Missing Component" %]
  877. [% admindocslinks = {'products.html' => 'Administering products',
  878. 'components.html' => 'Creating a component'} %]
  879. Sorry, the product <em>[% product.name FILTER html %]</em>
  880. has to have at least one component in order for you to
  881. enter [% terms.abug %] into it.<br>
  882. [% IF user.in_group("editcomponents", product.id) %]
  883. <a href="editcomponents.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Create
  884. a new component</a>.
  885. [% ELSE %]
  886. Please contact [% Param("maintainer") %] and ask them
  887. to add a component to this product.
  888. [% END %]
  889. [% ELSIF error == "missing_content_type" %]
  890. [% title = "Missing Content-Type" %]
  891. You asked [% terms.Bugzilla %] to auto-detect the content type, but
  892. your browser did not specify a content type when uploading the file,
  893. so you must enter a content type manually.
  894. [% ELSIF error == "missing_content_type_method" %]
  895. [% title = "Missing Content-Type Determination Method" %]
  896. You must choose a method for determining the content type,
  897. either <em>auto-detect</em>, <em>select from list</em>, or <em>enter
  898. manually</em>.
  899. [% ELSIF error == "missing_cookie" %]
  900. [% title = "Missing Cookie" %]
  901. Sorry, I seem to have lost the cookie that recorded
  902. the results of your last search. I'm afraid you will have to start
  903. again from the <a href="query.cgi">search page</a>.
  904. [% ELSIF error == "missing_datasets" %]
  905. [% title = "No Datasets Selected" %]
  906. [% docslinks = {'reporting.html' => 'Reporting'} %]
  907. You must specify one or more datasets to plot.
  908. [% ELSIF error == "missing_frequency" %]
  909. [% title = "Missing Frequency" %]
  910. [% docslinks = {'reporting.html' => 'Reporting'} %]
  911. You did not specify a valid frequency for this series.
  912. [% ELSIF error == "missing_name" %]
  913. [% title = "Missing Name" %]
  914. [% docslinks = {'reporting.html' => 'Reporting'} %]
  915. You did not specify a name for this series.
  916. [% ELSIF error == "missing_query" %]
  917. [% title = "Missing Search" %]
  918. [% docslinks = {'query.html' => "Searching for $terms.bugs",
  919. 'query.html#list' => "$terms.Bug lists"} %]
  920. The search named <em>[% queryname FILTER html %]</em>
  921. [% IF sharer_id && sharer_id != user.id %]
  922. has not been made visible to you.
  923. [% ELSE %]
  924. does not exist.
  925. [% END %]
  926. [% ELSIF error == "missing_resolution" %]
  927. [% title = "Resolution Required" %]
  928. A valid resolution is required to mark [% terms.bugs %] as
  929. [%+ status FILTER upper FILTER html %].
  930. [% ELSIF error == "move_bugs_disabled" %]
  931. [% title = BLOCK %][% terms.Bug %] Moving Disabled[% END %]
  932. Sorry, [% terms.bug %] moving has been disabled. If you need
  933. to move [% terms.abug %], please contact [% Param("maintainer") %].
  934. [% ELSIF error == "missing_subcategory" %]
  935. [% title = "Missing Subcategory" %]
  936. You did not specify a subcategory for this series.
  937. [% ELSIF error == "missing_version" %]
  938. [% title = "Missing Version" %]
  939. [% admindocslinks = {'versions.html' => 'Defining versions'} %]
  940. Sorry, the product <em>[% product.name FILTER html %]</em>
  941. has to have at least one version in order for you to
  942. enter [% terms.abug %] into it.<br>
  943. [% IF user.in_group("editcomponents", product.id) %]
  944. <a href="editversions.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Create
  945. a new version</a>.
  946. [% ELSE %]
  947. Please contact [% Param("maintainer") %] and ask them
  948. to add a version to this product.
  949. [% END %]
  950. [% ELSIF error == "need_quip" %]
  951. [% title = "Quip Required" %]
  952. [% docslinks = {'quips.html' => 'About quips'} %]
  953. Please enter a quip in the text field.
  954. [% ELSIF error == "new_password_missing" %]
  955. [% title = "New Password Missing" %]
  956. You must enter a new password.
  957. [% ELSIF error == "no_axes_defined" %]
  958. [% title = "No Axes Defined" %]
  959. [% docslinks = {'reporting.html' => 'Reporting'} %]
  960. You didn't define any axes to plot.
  961. [% ELSIF error == "no_bugs_chosen" %]
  962. [% title = BLOCK %]No [% terms.Bugs %] Selected[% END %]
  963. You apparently didn't choose any [% terms.bugs %]
  964. [% IF action == "modify" %]
  965. to modify.
  966. [% ELSIF action == "view" %]
  967. to view.
  968. [% END %]
  969. [% ELSIF error == "no_bug_ids" %]
  970. [% title = BLOCK %]No [% terms.Bugs %] Selected[% END %]
  971. You didn't choose any [% terms.bugs %] to
  972. [% IF action == "add" %] add to [% ELSE %] remove from [% END %]
  973. the [% tag FILTER html %] tag.
  974. [% ELSIF error == "no_bugs_in_list" %]
  975. [% title = "Delete Tag?" %]
  976. This will remove all [% terms.bugs %] from the
  977. <em>[% name FILTER html %]</em> tag. This will delete the tag completely. Click
  978. <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
  979. [%- name FILTER url_quote %]&amp;token=
  980. [%- issue_hash_token([query_id, name]) FILTER url_quote %]">here</a>
  981. if you really want to delete it.
  982. [% ELSIF error == "no_bugs_to_remove" %]
  983. [% title = "No Tag Selected" %]
  984. You didn't select a tag from which to remove [% terms.bugs %].
  985. [% ELSIF error == "no_dupe_stats" %]
  986. [% title = "Cannot Find Duplicate Statistics" %]
  987. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  988. There are no duplicate statistics for today ([% today FILTER html %])
  989. or yesterday.
  990. [% ELSIF error == "no_dupe_stats_error_today" %]
  991. [% title = "Error Reading Today's Dupes File" %]
  992. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  993. An error occurred opening today's dupes file: [% error_msg FILTER html %].
  994. [% ELSIF error == "no_dupe_stats_error_whenever" %]
  995. [% title = "Error Reading Previous Dupes File" %]
  996. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  997. An error occurred opening [% changedsince FILTER html %] days ago
  998. ([% whenever FILTER html %])'s dupes file:
  999. [% error_msg FILTER html %].
  1000. [% ELSIF error == "no_dupe_stats_error_yesterday" %]
  1001. [% title = "Error Reading Yesterday's Dupes File" %]
  1002. [% admindocslinks = {'extraconfig.html' => 'Setting up the collecstats.pl job'} %]
  1003. There are no duplicate statistics for today ([% today FILTER html %]),
  1004. and an error
  1005. occurred opening yesterday's dupes file: [% error_msg FILTER html %].
  1006. [% ELSIF error == "no_initial_bug_status" %]
  1007. [% title = "No Initial $terms.Bug Status" %]
  1008. No [% terms.bug %] status is available on [% terms.bug %] creation.
  1009. Please report the problem to [% Param("maintainer") %].
  1010. [% ELSIF error == "no_new_quips" %]
  1011. [% title = "No New Quips" %]
  1012. [% admindocslinks = {'quips.html' => 'Controlling quip usage'} %]
  1013. This site does not permit the addition of new quips.
  1014. [% ELSIF error == "no_page_specified" %]
  1015. [% title = "No Page Specified" %]
  1016. You did not specify the id of a page to display.
  1017. [% ELSIF error == "no_products" %]
  1018. [% title = "No Products" %]
  1019. [% admindocslinks = {'products.html' => 'Setting up a product',
  1020. 'components.html' => 'Adding components to products',
  1021. 'groups.html' => 'Groups security'} %]
  1022. Either no products have been defined to enter [% terms.bugs %] against or you have not
  1023. been given access to any.
  1024. [% ELSIF error == "no_valid_action" %]
  1025. [% title = "No valid action specified" %]
  1026. Cannot edit [% field_descs.$field FILTER html %]: no valid action was specified.
  1027. [% ELSIF error == "number_not_numeric" %]
  1028. [% title = "Numeric Value Required" %]
  1029. The value '[% num FILTER html %]' in the
  1030. <em>[% field_descs.$field FILTER html %]</em> field
  1031. is not a numeric value.
  1032. [% ELSIF error == "number_too_large" %]
  1033. [% title = "Number Too Large" %]
  1034. The value '[% num FILTER html %]' in the
  1035. <em>[% field_descs.$field FILTER html %]</em> field
  1036. is more than the maximum allowable value of '[% max_num FILTER html %]'.
  1037. [% ELSIF error == "number_too_small" %]
  1038. [% title = "Number Too Small" %]
  1039. The value '[% num FILTER html %]'
  1040. in the <em>[% field_descs.$field FILTER html %]</em> field
  1041. is less than the minimum all

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