PageRenderTime 59ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/pt-br/default/global/user-error.html.tmpl

https://bitbucket.org/ale_borba/bugzilla_template_pt-br
Go Template | 1801 lines | 1523 code | 278 blank | 0 comment | 0 complexity | 1f4057080a3583d0974a17b29b99aed6 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. # Max Kanat-Alexander <mkanat@bugzilla.org>
  21. #%]
  22. [%# INTERFACE:
  23. # header_done: boolean. True if the Bugzilla header has already been printed.
  24. # error: string. The tag of the error, or the error message to be displayed
  25. # (deprecated). May contain HTML if it's an error message.
  26. #%]
  27. [%# This is a list of all the possible user errors. Please keep them in
  28. # alphabetical order by error tag, and leave a blank line between errors.
  29. #
  30. # Note that you must explicitly filter every single template variable
  31. # in this file; if you do not wish to change it, use the "none" filter.
  32. #
  33. # Extension- or custom-specific error handling can be easily added
  34. # via hooks: just place additional code into
  35. # template/en/hook/global/user-error-errors.html.tmpl
  36. # Note: be aware of uniqueness of error string parameter value, since
  37. # nobody can guarantee the hook files processing order in the future.
  38. #%]
  39. [% PROCESS global/variables.none.tmpl %]
  40. [% PROCESS "global/field-descs.none.tmpl" %]
  41. [% DEFAULT title = "Error" %]
  42. [% error_message = BLOCK %]
  43. [% IF error == "account_creation_disabled" %]
  44. [% title = "Account Creation Disabled" %]
  45. User account creation has been disabled.
  46. <hr>
  47. New accounts must be created by an administrator. The
  48. maintainer is [% Param("maintainer") %].
  49. [% ELSIF error == "account_creation_restricted" %]
  50. [% title = "Account Creation Restricted" %]
  51. User account creation has been restricted.
  52. <hr>
  53. Contact your administrator or the maintainer
  54. ([% Param("maintainer") %]) for information about
  55. creating an account.
  56. [% ELSIF error == "account_disabled" %]
  57. [% title = "Account Disabled" %]
  58. [% disabled_reason FILTER none %]
  59. <hr>
  60. If you believe your account should be restored, please
  61. send email to [% Param("maintainer") %] explaining why.
  62. [% ELSIF error == "account_exists" %]
  63. [% title = "Account Already Exists" %]
  64. There is already an account with
  65. [% IF email %]
  66. the login name [% email FILTER html %].
  67. [% ELSE %]
  68. that login name.
  69. [% END %]
  70. [% ELSIF error == "account_locked" %]
  71. [% title = "Account Locked" %]
  72. Your IP ([% ip_addr FILTER html %]) has been locked out of this
  73. account until [% unlock_at FILTER time %], as you have
  74. exceeded the maximum number of login attempts.
  75. [% ELSIF error == "alias_has_comma_or_space" %]
  76. [% title = "Invalid Characters In Alias" %]
  77. The alias you entered, <em>[% alias FILTER html %]</em>,
  78. contains one or more commas or spaces. Aliases cannot contain
  79. commas or spaces because those characters are used to separate
  80. aliases from each other in lists. Please choose an alias
  81. that does not contain commas and spaces.
  82. [% ELSIF error == "alias_in_use" %]
  83. [% title = "Alias In Use" %]
  84. [% terms.Bug %] [%+ bug_id FILTER bug_link(bug_id) FILTER none %]
  85. has already taken the alias <em>[% alias FILTER html %]</em>.
  86. Please choose another one.
  87. [% ELSIF error == "alias_is_numeric" %]
  88. [% title = "Alias Is Numeric" %]
  89. You tried to give this [% terms.bug %] the alias <em>[% alias FILTER html %]</em>,
  90. but aliases cannot be merely numbers, since they could
  91. then be confused with [% terms.bug %] IDs. Please choose an
  92. alias containing at least one letter.
  93. [% ELSIF error == "alias_too_long" %]
  94. [% title = "Alias Too Long" %]
  95. [% terms.Bug %] aliases cannot be longer than 20 characters.
  96. Please choose a shorter alias.
  97. [% ELSIF error == "attachment_bug_id_mismatch" %]
  98. [% title = "Invalid Attachments" %]
  99. You tried to perform an action on attachments from different [% terms.bugs %].
  100. This operation requires all attachments to be from the same [% terms.bug %].
  101. [% ELSIF error == "auth_cant_create_account" %]
  102. [% title = "Can't create accounts" %]
  103. This site is using an authentication scheme which does not permit
  104. account creation. Please contact an administrator to get a new account
  105. created.
  106. [% ELSIF error == "auth_failure" %]
  107. [% title = "Authorization Required" %]
  108. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  109. Sorry,
  110. [% IF group %]
  111. you aren't a member of the '[% group FILTER html %]' group,
  112. [% END %]
  113. [% IF reason %]
  114. [% IF group %] and [% END %]
  115. [% IF reason == "cant_bless" %]
  116. you don't have permissions to add or remove people from a group,
  117. [% ELSIF reason == "not_visible" %]
  118. there are visibility restrictions on certain user groups,
  119. [% END %]
  120. [% END %]
  121. [% IF group || reason %] and so [% END %] you are not authorized to
  122. [% IF action == "access" %]
  123. access
  124. [% ELSIF action == "add" %]
  125. add new
  126. [% ELSIF action == "begin" %]
  127. begin
  128. [% ELSIF action == "modify" %]
  129. modify
  130. [% ELSIF action == "delete" %]
  131. delete
  132. [% ELSIF action == "edit" %]
  133. add, modify or delete
  134. [% ELSIF action == "run" %]
  135. run
  136. [% ELSIF action == "schedule" %]
  137. schedule
  138. [% ELSIF action == "use" %]
  139. use
  140. [% ELSIF action == "approve" %]
  141. approve
  142. [% ELSE %]
  143. [%+ Hook.process('auth_failure_action') %]
  144. [% END %]
  145. [% IF object == "administrative_pages" %]
  146. administrative pages
  147. [% ELSIF object == "attachment" %]
  148. [% IF attach_id %]
  149. attachment #[% attach_id FILTER html %]
  150. [% ELSE %]
  151. this attachment
  152. [% END %]
  153. [% ELSIF object == "bugs" %]
  154. [%+ terms.bugs %]
  155. [% ELSIF object == "charts" %]
  156. the "New Charts" feature
  157. [% ELSIF object == "classifications" %]
  158. classifications
  159. [% ELSIF object == "components" %]
  160. components
  161. [% ELSIF object == "custom_fields" %]
  162. custom fields
  163. [% ELSIF object == "field_values" %]
  164. field values
  165. [% ELSIF object == "flagtypes" %]
  166. flag types
  167. [% ELSIF object == "group_access" %]
  168. group access
  169. [% ELSIF object == "groups" %]
  170. groups
  171. [% ELSIF object == "keywords" %]
  172. keywords
  173. [% ELSIF object == "milestones" %]
  174. milestones
  175. [% ELSIF object == "multiple_bugs" %]
  176. multiple [% terms.bugs %] at once
  177. [% ELSIF object == "parameters" %]
  178. parameters
  179. [% ELSIF object == "products" %]
  180. products
  181. [% ELSIF object == "quips" %]
  182. quips
  183. [% ELSIF object == "reports" %]
  184. whine reports
  185. [% ELSIF object == "sanity_check" %]
  186. a sanity check
  187. [% ELSIF object == "settings" %]
  188. settings
  189. [% ELSIF object == "sudo_session" %]
  190. a sudo session
  191. [% ELSIF object == "timetracking_summaries" %]
  192. time-tracking summary reports
  193. [% ELSIF object == "user" %]
  194. the user [% IF userid %] with ID '[% userid FILTER html %]'
  195. [% ELSE %]you specified [% END %]
  196. [% ELSIF object == "users" %]
  197. users
  198. [% ELSIF object == "versions" %]
  199. versions
  200. [% ELSIF object == "workflow" %]
  201. the workflow
  202. [% ELSE %]
  203. [%+ Hook.process('auth_failure_object') %]
  204. [% END %].
  205. [% Hook.process("auth_failure") %]
  206. [% ELSIF error == "attachment_deletion_disabled" %]
  207. [% title = "Attachment Deletion Disabled" %]
  208. Attachment deletion is disabled on this installation.
  209. [% ELSIF error == "attachment_illegal_url" %]
  210. [% title = "Illegal Attachment URL" %]
  211. <em>[% url FILTER html %]</em> is not a legal URL for attachments.
  212. It must start either with http://, https:// or ftp://.
  213. [% ELSIF error == "attachment_removed" %]
  214. [% title = "Attachment Removed" %]
  215. The attachment you are attempting to access has been removed.
  216. [% ELSIF error == "bug_access_denied" %]
  217. [% title = "Access Denied" %]
  218. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  219. You are not authorized to access [% terms.bug %] #[% bug_id FILTER html %].
  220. [% ELSIF error == "bug_access_query" %]
  221. [% title = "Access Denied" %]
  222. [% docslinks = {'myaccount.html' => 'Creating an account'} %]
  223. You are not authorized to access [% terms.bug %] #[% bug_id FILTER html %].
  224. To see this [% terms.bug %], you must
  225. first <a href="show_bug.cgi?id=
  226. [% bug_id FILTER url_quote %]&amp;GoAheadAndLogIn=1">log
  227. in to an account</a> with the appropriate permissions.
  228. [% ELSIF error == "bug_url_invalid" %]
  229. [% title = "Invalid $terms.Bug URL" %]
  230. <code>[% url FILTER html %]</code> is not a valid URL to [% terms.abug %].
  231. [% IF reason == 'http' %]
  232. URLs must start with "http" or "https".
  233. [% ELSIF reason == 'path_only' %]
  234. You must specify a full URL.
  235. [% ELSIF reason == 'show_bug' %]
  236. [%+ field_descs.see_also FILTER html %] URLs should point to one of:
  237. <ul>
  238. <li><code>show_bug.cgi</code> in a [% terms.Bugzilla %]
  239. installation.</li>
  240. <li>A b[% %]ug on launchpad.net</li>
  241. <li>An issue on code.google.com.</li>
  242. <li>A b[% %]ug on b[% %]ugs.debian.org.</li>
  243. </ul>
  244. [% ELSIF reason == 'id' %]
  245. There is no valid [% terms.bug %] id in that URL.
  246. [% END %]
  247. [% ELSIF error == "bug_url_too_long" %]
  248. [% title = "Invalid $terms.Bug URL" %]
  249. [% terms.Bug %] URLs can not be longer than
  250. [%+ constants.MAX_BUG_URL_LENGTH FILTER none %] characters long.
  251. <code>[% url FILTER html %]</code> is too long.
  252. [% ELSIF error == "buglist_parameters_required" %]
  253. [% title = "Parameters Required" %]
  254. [% docslinks = {'query.html' => "Searching for $terms.bugs",
  255. 'query.html#list' => "$terms.Bug lists"} %]
  256. You may not search, or create saved searches, without any search terms.
  257. [% ELSIF error == "chart_too_large" %]
  258. [% title = "Chart Too Large" %]
  259. Sorry, but 2000 x 2000 is the maximum size for a chart.
  260. [% ELSIF error == "comment_id_invalid" %]
  261. [% id FILTER html %] is not a valid comment id.
  262. [% ELSIF error == "comment_invalid_isprivate" %]
  263. You tried to modify the privacy of comment id [% id FILTER html %],
  264. but that is not a valid comment on this [% terms.bug %].
  265. [% ELSIF error == "comment_is_private" %]
  266. Comment id [% id FILTER html %] is private.
  267. [% ELSIF error == "comment_required" %]
  268. [% title = "Comment Required" %]
  269. You have to specify a
  270. [% IF old && new %]
  271. <b>comment</b> when changing the status of [% terms.abug %] from
  272. [%+ old.name FILTER html %] to [% new.name FILTER html %].
  273. [% ELSIF new %]
  274. description for this [% terms.bug %].
  275. [% ELSE %]
  276. <b>comment</b> on this change.
  277. [% END %]
  278. [% ELSIF error == "comment_too_long" %]
  279. [% title = "Comment Too Long" %]
  280. Comments cannot be longer than
  281. [%+ constants.MAX_COMMENT_LENGTH FILTER html %] characters.
  282. [% ELSIF error == "auth_classification_not_enabled" %]
  283. [% title = "Classification Not Enabled" %]
  284. Sorry, classification is not enabled.
  285. [% ELSIF error == "classification_name_too_long" %]
  286. [% title = "Classification Name Too Long" %]
  287. The name of a classification is limited to [% constants.MAX_CLASSIFICATION_SIZE FILTER html %]
  288. characters. '[% name FILTER html %]' is too long ([% name.length %] characters).
  289. [% ELSIF error == "classification_not_specified" %]
  290. [% title = "You Must Supply A Classification Name" %]
  291. You must enter a classification name.
  292. [% ELSIF error == "classification_already_exists" %]
  293. [% title = "Classification Already Exists" %]
  294. A classification with the name '[% name FILTER html %]' already exists.
  295. [% ELSIF error == "classification_invalid_sortkey" %]
  296. [% title = "Invalid Sortkey for Classification" %]
  297. The sortkey '[% sortkey FILTER html %]' is invalid. It must be an
  298. integer between 0 and [% constants.MAX_SMALLINT FILTER html %].
  299. [% ELSIF error == "classification_not_deletable" %]
  300. [% title = "Default Classification Can Not Be Deleted" %]
  301. You can not delete the default classification
  302. [% ELSIF error == "classification_has_products" %]
  303. Sorry, there are products for this classification. You
  304. must reassign those products to another classification before you
  305. can delete this one.
  306. [% ELSIF error == "component_already_exists" %]
  307. [% title = "Component Already Exists" %]
  308. The <em>[% product.name FILTER html %]</em> product already has
  309. a component named <em>[% name FILTER html %]</em>.
  310. [% ELSIF error == "component_blank_description" %]
  311. [% title = "Blank Component Description Not Allowed" %]
  312. You must enter a non-blank description for this component.
  313. [% ELSIF error == "component_blank_name" %]
  314. [% title = "Blank Component Name Not Allowed" %]
  315. You must enter a name for this new component.
  316. [% ELSIF error == "component_has_bugs" %]
  317. [% title = BLOCK %]Component has [% terms.Bugs %][% END %]
  318. There are [% nb FILTER html %] [%+ terms.bugs %] entered for this component!
  319. You must reassign those [% terms.bugs %] to another component before you
  320. can delete this one.
  321. [% ELSIF error == "component_name_too_long" %]
  322. [% title = "Component Name Is Too Long" %]
  323. The name of a component is limited to [% constants.MAX_COMPONENT_SIZE FILTER html %]
  324. characters. '[% name FILTER html %]' is too long ([% name.length %] characters).
  325. [% ELSIF error == "component_need_initialowner" %]
  326. [% title = "Component Requires Default Assignee" %]
  327. A default assignee is required for this component.
  328. [% ELSIF error == "customfield_nonexistent" %]
  329. [% title = "Unknown Custom Field" %]
  330. There is no custom field with the name '[% name FILTER html %]'.
  331. [% ELSIF error == "customfield_not_obsolete" %]
  332. [% title = "Custom Field Not Obsolete" %]
  333. The custom field '[% name FILTER html %]' is not obsolete.
  334. Please obsolete a custom field before attempting to delete it.
  335. [% ELSIF error == "customfield_has_activity" %]
  336. [% title = "Custom Field Has Activity" %]
  337. The custom field '[% name FILTER html %]' cannot be deleted because
  338. it has recorded activity.
  339. [% ELSIF error == "customfield_has_contents" %]
  340. [% title = "Custom Field Has Contents" %]
  341. The custom field '[% name FILTER html %]' cannot be deleted because
  342. at least one [% terms.bug %] has a non empty value for this field.
  343. [% ELSIF error == "dependency_loop_multi" %]
  344. [% title = "Dependency Loop Detected" %]
  345. The following [% terms.bug %](s) would appear on both the "depends on"
  346. and "blocks" parts of the dependency tree if these changes
  347. are committed:
  348. [% FOREACH dep = deps %]
  349. [%+ dep FILTER bug_link(dep) FILTER none %]
  350. [% END %].
  351. This would create a circular dependency, which is not allowed.
  352. [% ELSIF error == "dependency_loop_single" %]
  353. [% title = "Dependency Loop Detected" %]
  354. You can't make [% terms.abug %] block itself or depend on itself.
  355. [% ELSIF error == "dupe_id_required" %]
  356. [% title = "Duplicate $terms.Bug Id Required" %]
  357. You must specify [% terms.abug %] id to mark this [% terms.bug %]
  358. as a duplicate of.
  359. [% ELSIF error == "dupe_not_allowed" %]
  360. [% title = "Cannot mark $terms.bugs as duplicates" %]
  361. You cannot mark [% terms.bugs %] as duplicates when
  362. changing several [% terms.bugs %] at once.
  363. [% ELSIF error == "dupe_loop_detected" %]
  364. [% title = "Loop detected among duplicates" %]
  365. You cannot mark [% terms.bug %] [%+ bug_id FILTER html %] as
  366. a duplicate of
  367. [% IF dupe_of == bug_id %]
  368. itself
  369. [% ELSE %]
  370. [%+ terms.bug %] [%+ dupe_of FILTER html %], because it
  371. would create a duplicate loop
  372. [% END %].
  373. [% ELSIF error == "email_change_in_progress" %]
  374. [% title = "Email Change Already In Progress" %]
  375. Email change already in progress; please check your email.
  376. [% ELSIF error == "email_confirmation_failed" %]
  377. [% title = "Email Address Confirmation Failed" %]
  378. Email address confirmation failed.
  379. [% ELSIF error == "email_no_text_plain" %]
  380. Your message did not contain any text.[% terms.Bugzilla %] does not
  381. accept HTML-only email, or HTML email with attachments.
  382. [% ELSIF error == "empty_group_description" %]
  383. [% title = "The group description can not be empty" %]
  384. You must enter a description for the group.
  385. [% ELSIF error == "empty_group_name" %]
  386. [% title = "The group name can not be empty" %]
  387. You must enter a name for the group.
  388. [% ELSIF error == "entry_access_denied" %]
  389. [% title = "Permission Denied" %]
  390. [% admindocslinks = {'groups.html' => 'Group Security'} %]
  391. Sorry, either the product <em>[% product FILTER html %]</em>
  392. does not exist or you aren't authorized to
  393. enter [% terms.abug %] into it.
  394. [% ELSIF error == "extension_create_no_name" %]
  395. You must specify a name for your extension, as an argument to this script.
  396. [% ELSIF error == "extension_first_letter_caps" %]
  397. The first letter of your extension's name must be a capital letter.
  398. (You specified '[% name FILTER html %]'.)
  399. [% ELSIF error == "field_already_exists" %]
  400. [% title = "Field Already Exists" %]
  401. The field '[% field.name FILTER html %]'
  402. ([% field.description FILTER html %]) already exists. Please
  403. choose another name.
  404. [% ELSIF error == "field_cant_control_self" %]
  405. [% title = "Field Can't Control Itself" %]
  406. The [% field.description FILTER html %] field can't be set to control
  407. itself.
  408. [% ELSIF error == "field_control_must_be_select" %]
  409. [% title = "Invalid Field Type Selected" %]
  410. Only drop-down and multi-select fields can be used to control
  411. the visibility/values of other fields. [% field.description FILTER html %]
  412. is not the right type of field.
  413. [% ELSIF error == "field_invalid_name" %]
  414. [% title = "Invalid Field Name" %]
  415. '[% name FILTER html %]' is not a valid name for a field.
  416. A name may contain only letters, numbers, and the underscore character.
  417. [% ELSIF error == "field_invalid_sortkey" %]
  418. [% title = "Invalid Sortkey for Field" %]
  419. The sortkey [% sortkey FILTER html %] that you have provided for
  420. this field is not a valid positive integer.
  421. [% ELSIF error == "field_missing_description" %]
  422. [% title = "Missing Description for Field" %]
  423. You must enter a description for this field.
  424. [% ELSIF error == "field_missing_name" %]
  425. [% title = "Missing Name for Field" %]
  426. You must enter a name for this field.
  427. [% ELSIF error == "field_value_control_select_only" %]
  428. [% title = "Invalid Value Control Field" %]
  429. Only Drop-Down or Multi-Select fields can have a field that
  430. controls their values.
  431. [% ELSIF error == "fieldname_invalid" %]
  432. [% title = "Specified Field Does Not Exist" %]
  433. The field '[% field.name FILTER html %]' does not exist or
  434. cannot be edited with this interface.
  435. [% ELSIF error == "fieldvalue_already_exists" %]
  436. [% title = "Field Value Already Exists" %]
  437. The value '[% value.name FILTER html %]' already exists for the
  438. [%+ field.description FILTER html %] field.
  439. [% ELSIF error == "fieldvalue_is_controller" %]
  440. [% title = "Value Controls Other Fields" %]
  441. You cannot delete the [% value.field.description FILTER html %]
  442. '[% value.name FILTER html %]' because
  443. [% IF fields.size %]
  444. it controls the visibility of the following fields:
  445. [%+ fields.join(', ') FILTER html %].
  446. [% END %]
  447. [% ' Also, ' IF fields.size AND vals.size %]
  448. [% IF vals.size %]
  449. it controls the visibility of the following field values:
  450. <ul>
  451. [% FOREACH field_name = vals.keys %]
  452. [% FOREACH val = vals.${field_name} %]
  453. <li>[% val.field.name FILTER html %]:
  454. '[% val.name FILTER html %]'</li>
  455. [% END %]
  456. [% END %]
  457. </ul>
  458. [% END %]
  459. [% ELSIF error == "fieldvalue_is_default" %]
  460. [% title = "Specified Field Value Is Default" %]
  461. '[% value.name FILTER html %]' is the default value for
  462. the '[% field.description FILTER html %]' field and cannot be deleted
  463. or disabled.
  464. [% IF user.in_group('tweakparams') %]
  465. You have to <a href="editparams.cgi?section=bugfields#
  466. [%- param_name FILTER url_quote %]">change</a> the default value first.
  467. [% END %]
  468. [% ELSIF error == "fieldvalue_name_too_long" %]
  469. [% title = "Field Value Is Too Long" %]
  470. The value of a field is limited to
  471. [%+ constants.FIELD_VALUE_MAX_SIZE FILTER none %] characters.
  472. '[% value FILTER html %]' is too long ([% value.length %] characters).
  473. [% ELSIF error == "fieldvalue_not_editable" %]
  474. [% title = "Field Value Not Editable" %]
  475. The value '[% old_value.name FILTER html %]' cannot be renamed because
  476. it plays some special role for the '[% field.description FILTER html %]'
  477. field.
  478. [% ELSIF error == "fieldvalue_not_deletable" %]
  479. [% title = "Field Value Not Deletable" %]
  480. The value '[% value.name FILTER html %]' cannot be removed or
  481. disabled, because it plays some special role for the
  482. '[% field.description FILTER html %]' field.
  483. [% ELSIF error == "fieldvalue_reserved_word" %]
  484. [% title = "Reserved Word Not Allowed" %]
  485. You cannot use the value '[% value FILTER html %]' for the
  486. '[% field.description FILTER html %]' field. This value is used internally.
  487. Please choose another one.
  488. [% ELSIF error == "fieldvalue_sortkey_invalid" %]
  489. [% title = "Invalid Field Value Sortkey" %]
  490. The sortkey '[% sortkey FILTER html %]' for the
  491. [%+ field.description FILTER html %] field is not a valid
  492. (positive) number.
  493. [% ELSIF error == "fieldvalue_still_has_bugs" %]
  494. [% title = "You Cannot Delete This Field Value" %]
  495. You cannot delete the value '[% value.name FILTER html %]' from the
  496. [% field.description FILTER html %] field, because there are still
  497. [%+ value.bug_count FILTER html %] [%+ terms.bugs %] using it.
  498. [% ELSIF error == "fieldvalue_undefined" %]
  499. [% title = "Undefined Value Not Allowed" %]
  500. You must specify a value.
  501. [% ELSIF error == "file_not_specified" %]
  502. [% title = "No File Specified" %]
  503. You did not specify a file to attach.
  504. [% ELSIF error == "file_too_large" %]
  505. [% title = "File Too Large" %]
  506. The file you are trying to attach is [% filesize FILTER html %]
  507. kilobytes (KB) in size. Attachments cannot be more than
  508. [%+ Param('maxattachmentsize') %] KB. <br>
  509. We recommend that you store your attachment elsewhere
  510. [% IF Param("allow_attach_url") %]
  511. and then specify the URL to this file on the attachment
  512. creation page in the <b>AttachURL</b> field.
  513. [% ELSE %]
  514. and then insert the URL to it in a comment, or in the URL field
  515. for this [% terms.bug %].
  516. [% END %]
  517. <br>Alternately, if your attachment is an image, you could convert
  518. it to a compressible format like JPG or PNG and try again.
  519. [% ELSIF error == "flag_requestee_needs_privs" %]
  520. [% title = "Flag Requestee Needs Privileges" %]
  521. [% requestee.identity FILTER html %] does not have permission to set the
  522. <em>[% flagtype.name FILTER html %]</em> flag. Please select a user who is
  523. a member of the <em>[% flagtype.grant_group.name FILTER html %]</em> group.
  524. [% ELSIF error == "flag_requestee_unauthorized" %]
  525. [% title = "Flag Requestee Not Authorized" %]
  526. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  527. 'groups.html' => 'Group Security'} %]
  528. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  529. 'flags.html' => 'Using Flags'} %]
  530. You asked [% requestee.identity FILTER html %]
  531. for <code>[% flag_type.name FILTER html %]</code> on [% terms.bug %]
  532. [%+ bug_id FILTER html -%]
  533. [% IF attach_id && attach_id > 0 %], attachment [% attach_id FILTER html %][% END %],
  534. but that [% terms.bug %] has been restricted to users in certain groups,
  535. and the user you asked isn't in all the groups to which
  536. the [% terms.bug %] has been restricted.
  537. Please choose someone else to ask, or make the [% terms.bug %] accessible
  538. to users on its CC: list and add that user to the list.
  539. [% ELSIF error == "flag_requestee_unauthorized_attachment" %]
  540. [% title = "Flag Requestee Not Authorized" %]
  541. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  542. 'groups.html' => 'Group Security'} %]
  543. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  544. 'flags.html' => 'Using Flags'} %]
  545. You asked [% requestee.identity FILTER html %]
  546. for <code>[% flag_type.name FILTER html %]</code> on
  547. [%+ terms.bug %] [%+ bug_id FILTER html %],
  548. attachment [% attach_id FILTER html %], but that attachment
  549. is restricted to users in the [% Param("insidergroup") FILTER html %] group,
  550. and the user you asked isn't in that group. Please choose someone else
  551. to ask, or ask an administrator to add the user to the group.
  552. [% ELSIF error == "flag_status_invalid" %]
  553. [% title = "Flag Status Invalid" %]
  554. The flag status <em>[% status FILTER html %]</em>
  555. [% IF id %]
  556. for flag ID #[% id FILTER html %]
  557. [% END %]
  558. is invalid.
  559. [% ELSIF error == "flag_type_cc_list_invalid" %]
  560. [% title = "Flag Type CC List Invalid" %]
  561. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  562. The CC list [% cc_list FILTER html %] must be less than 200 characters long.
  563. [% ELSIF error == "flag_type_component_without_product" %]
  564. [% title = "Product Missing" %]
  565. A component was selected without a product being selected.
  566. [% ELSIF error == "flag_type_description_invalid" %]
  567. [% title = "Flag Type Description Invalid" %]
  568. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  569. The description must be less than 32K.
  570. [% ELSIF error == "flag_type_name_invalid" %]
  571. [% title = "Flag Type Name Invalid" %]
  572. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags'} %]
  573. The name <em>[% name FILTER html %]</em> must be 1-50 characters long
  574. and must not contain any spaces or commas.
  575. [% ELSIF error == "flag_type_not_multiplicable" %]
  576. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  577. 'flags.html' => 'Using Flags'} %]
  578. You cannot have several <em>[% type.name FILTER html %]</em> flags
  579. for this [% IF attachment %] attachment [% ELSE %] [%+ terms.bug %] [% END %].
  580. [% ELSIF error == "flag_update_denied" %]
  581. [% title = "Flag Modification Denied" %]
  582. [% admindocslinks = {'flags-overview.html#flags-admin' => 'Administering Flags',
  583. 'groups.html' => 'Group Security'} %]
  584. [% docslinks = {'flags-overview.html' => 'An overview on Flags',
  585. 'flags.html' => 'Using Flags'} %]
  586. You tried to [% IF status == "+" %] grant [% ELSIF status == "-" %] deny
  587. [% ELSIF status == "X" %] clear [% ELSE %] request [% END %]
  588. <code>[% name FILTER html %]
  589. [% IF status == "X" %][% old_status FILTER html %][% END %]</code>.
  590. Only a user with the required permissions may make this change.
  591. [% ELSIF error == "format_not_found" %]
  592. [% title = "Format Not Found" %]
  593. The requested format <em>[% format FILTER html %]</em> does not exist with
  594. a content type of <em>[% ctype FILTER html %]</em>.
  595. [% ELSIF error == "flag_type_sortkey_invalid" %]
  596. [% title = "Flag Type Sort Key Invalid" %]
  597. The sort key must be an integer between 0 and 32767 inclusive.
  598. It cannot be <em>[% sortkey FILTER html %]</em>.
  599. [% ELSIF error == "freetext_too_long" %]
  600. [% title = "Text Too Long" %]
  601. The text you entered in the [% field_descs.$field FILTER html %]
  602. field is too long ([% text.length FILTER html %] characters,
  603. above the maximum length allowed of
  604. [%+ constants.MAX_FREETEXT_LENGTH FILTER none %] characters).
  605. [% ELSIF error == "group_cannot_delete" %]
  606. [% title = "Cannot Delete Group" %]
  607. The <em>[% group.name FILTER html %]</em> group cannot be deleted because
  608. there are
  609. <a href="editgroups.cgi?action=del&amp;group=
  610. [%- group.id FILTER url_quote %]">records</a>
  611. in the database which refer to it. All references to this group must
  612. be removed before you can remove it.
  613. [% ELSIF error == "group_exists" %]
  614. [% title = "The group already exists" %]
  615. The group [% name FILTER html %] already exists.
  616. [% ELSIF error == "group_has_special_role" %]
  617. [% title = "Group not deletable" %]
  618. [% IF groups.size == 1 %]
  619. [% attr = "it" %]
  620. [% param = "parameter" %]
  621. [% ELSE %]
  622. [% attr = "them" %]
  623. [% param = "parameters" %]
  624. [% END %]
  625. The group '[% name FILTER html %]' is used by the
  626. '[% groups.join("' and '") FILTER html %]' [% param FILTER html %].
  627. In order to delete this group, you first have to change the
  628. [%+ param FILTER html %] to make [% attr FILTER html %] point to another group.
  629. [% ELSIF error == "group_invalid_removal" %]
  630. You tried to remove [% terms.bug %] [%+ bug_id FILTER html %]
  631. from the '[% name FILTER html %]' group, but either this group does not exist,
  632. or you are not allowed to remove [% terms.bugs %] from this group in the
  633. '[% product FILTER html %]' product.
  634. [% ELSIF error == "group_restriction_not_allowed" %]
  635. [% title = "Group Restriction Not Allowed" %]
  636. You tried to restrict [% bug_id ? "$terms.bug $bug_id" : terms.abug FILTER html %]
  637. to the '[% name FILTER html %]' group, but either this group does not exist,
  638. or you are not allowed to restrict [% terms.bugs %] to this group in the
  639. '[% product FILTER html %]' product.
  640. [% ELSIF error == "group_not_specified" %]
  641. [% title = "Group not specified" %]
  642. No group was specified.
  643. [% ELSIF error == "system_group_not_deletable" %]
  644. [% title = "System Groups not deletable" %]
  645. <em>[% name FILTER html %]</em> is a system group.
  646. This group cannot be deleted.
  647. [% ELSIF error == "group_unknown" %]
  648. [% title = "Unknown Group" %]
  649. The group [% name FILTER html %] does not exist. Please specify
  650. a valid group name. Create it first if necessary!
  651. [% ELSIF error == "illegal_attachment_edit" %]
  652. [% title = "Unauthorized Action" %]
  653. You are not authorized to edit attachment [% attach_id FILTER html %].
  654. [% ELSIF error == "illegal_attachment_edit_bug" %]
  655. [% title = "Unauthorized Action" %]
  656. You are not authorized to edit attachments on [% terms.bug %]
  657. [%+ bug_id FILTER html %].
  658. [% ELSIF error == "illegal_attachment_is_patch" %]
  659. [% title = "Your Search Makes No Sense" %]
  660. The only legal values for the <em>Attachment is patch</em> field are
  661. 0 and 1.
  662. [% ELSIF error == "illegal_bug_status_transition" %]
  663. [% title = "Illegal $terms.Bug Status Change" %]
  664. [% IF old.defined %]
  665. You are not allowed to change the [% terms.bug %] status from
  666. [%+ old.name FILTER html %] to [% new.name FILTER html %].
  667. [% ELSE %]
  668. You are not allowed to file new [% terms.bugs %] with the
  669. [%+ new.name FILTER html %] status.
  670. [% END %]
  671. [% ELSIF error == "illegal_change" %]
  672. [% title = "Not allowed" %]
  673. You tried to change the
  674. <strong>[% field_descs.$field FILTER html %]</strong> field
  675. [% IF oldvalue.defined %]
  676. from <em>[% oldvalue.join(', ') FILTER html %]</em>
  677. [% END %]
  678. [% IF newvalue.defined %]
  679. to <em>[% newvalue.join(', ') FILTER html %]</em>
  680. [% END %]
  681. , but only
  682. [% IF privs < constants.PRIVILEGES_REQUIRED_EMPOWERED %]
  683. the assignee
  684. [% IF privs < constants.PRIVILEGES_REQUIRED_ASSIGNEE %] or reporter [% END %]
  685. of the [% terms.bug %], or
  686. [% END %]
  687. a user with the required permissions may change that field.
  688. [% ELSIF error == "illegal_change_deps" %]
  689. [% title = "Not allowed" %]
  690. You tried to change the
  691. <strong>[% field_descs.$field FILTER html %]</strong> field
  692. but only a user allowed to edit
  693. both related [% terms.bugs %] may change that field.
  694. [% ELSIF error == "illegal_changed_in_last_x_days" %]
  695. [% title = "Your Search Makes No Sense" %]
  696. The <em>Changed in last ___ days</em> field must be a simple number.
  697. You entered <tt>[% value FILTER html %]</tt>, which isn't.
  698. [% ELSIF error == "illegal_date" %]
  699. [% title = "Illegal Date" %]
  700. '<tt>[% date FILTER html %]</tt>' is not a legal date.
  701. [% IF format %]
  702. Please use the format '<tt>[% format FILTER html %]</tt>'.
  703. [% END %]
  704. [% ELSIF error == "illegal_email_address" %]
  705. [% title = "Invalid Email Address" %]
  706. The e-mail address you entered (<b>[% addr FILTER html %]</b>)
  707. didn't pass our syntax checking for a legal email address.
  708. [% IF default %]
  709. A legal address must contain exactly one '@',
  710. and at least one '.' after the @.
  711. [% ELSE %]
  712. [%+ Param('emailregexpdesc') %]
  713. [% END %]
  714. It must also not contain any of these special characters:
  715. <tt>\ ( ) &amp; &lt; &gt; , ; : &quot; [ ]</tt>, or any whitespace.
  716. [% ELSIF error == "illegal_frequency" %]
  717. [% title = "Too Frequent" %]
  718. Unless you are an administrator, you may not create series which are
  719. run more often than once every [% minimum FILTER html %] days.
  720. [% ELSIF error == "illegal_group_control_combination" %]
  721. [% title = "Your Group Control Combination Is Illegal" %]
  722. [% admindocslinks = {'groups.html' => 'Assigning Group Controls to Products'} %]
  723. Your group control combination for group &quot;
  724. [% groupname FILTER html %]&quot; is illegal.
  725. [% ELSIF error == "illegal_is_obsolete" %]
  726. [% title = "Your Search Makes No Sense" %]
  727. The only legal values for the <em>Attachment is obsolete</em> field are
  728. 0 and 1.
  729. [% ELSIF error == "illegal_query_name" %]
  730. [% title = "Illegal Search Name" %]
  731. The name of your search cannot contain any of the following characters:
  732. &lt;, &gt;, &amp;.
  733. [% ELSIF error == "illegal_series_creation" %]
  734. [% admindocslinks = {'groups.html' => 'Group security'} %]
  735. [% docslinks = {'reporting.html' => 'Reporting'} %]
  736. You are not authorized to create series.
  737. [% ELSIF error == "illegal_series_edit" %]
  738. [% admindocslinks = {'groups.html' => 'Group security'} %]
  739. [% docslinks = {'reporting.html' => 'Reporting'} %]
  740. You are not authorized to edit this series. To do this, you must either
  741. be its creator, or an administrator.
  742. [% ELSIF error == "illegal_time" %]
  743. [% title = "Illegal Time" %]
  744. '<tt>[% time FILTER html %]</tt>' is not a legal time.
  745. [% IF format %]
  746. Please use the format '<tt>[% format FILTER html %]</tt>'.
  747. [% END %]
  748. [% ELSIF error == "illegal_regexp" %]
  749. [% title = "Illegal Regular Expression" %]
  750. The regular expression you provided [% value FILTER html %] is not valid.
  751. The error was: [% dberror FILTER html %].
  752. [% ELSIF error == "insufficient_data_points" %]
  753. [% docslinks = {'reporting.html' => 'Reporting'} %]
  754. We don't have enough data points to make a graph (yet).
  755. [% ELSIF error == "invalid_attach_id" %]
  756. [% title = "Invalid Attachment ID" %]
  757. The attachment id [% attach_id FILTER html %] is invalid.
  758. [% ELSIF error == "bug_id_does_not_exist" %]
  759. [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %]
  760. [% terms.Bug %] #[% bug_id FILTER html %] does not exist.
  761. [% ELSIF error == "improper_bug_id_field_value" %]
  762. [% title = BLOCK %]
  763. [% IF bug_id %]Invalid [% ELSE %]Missing [% END %] [% terms.Bug %] ID
  764. [% END %]
  765. [% IF bug_id %]
  766. '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number
  767. [% IF Param("usebugaliases") %]
  768. nor an alias to [% terms.abug %]
  769. [% END %].
  770. [% ELSE %]
  771. [% IF field %]
  772. The '[% field_descs.$field FILTER html %]' field
  773. cannot be empty.
  774. [% END %]
  775. You must enter a valid [% terms.bug %] number!
  776. [% END %]
  777. [% ELSIF error == "invalid_changedsince" %]
  778. [% title = "Invalid 'Changed Since'" %]
  779. The 'changed since' value, '[% changedsince FILTER html %]', must be an
  780. integer >= 0.
  781. [% ELSIF error == "invalid_content_type" %]
  782. [% title = "Invalid Content-Type" %]
  783. The content type <em>[% contenttype FILTER html %]</em> is invalid.
  784. Valid types must be of the form <em>foo/bar</em> where <em>foo</em>
  785. is one of <em>[% constants.LEGAL_CONTENT_TYPES.join(', ') FILTER html %]</em>.
  786. [% ELSIF error == "invalid_context" %]
  787. [% title = "Invalid Context" %]
  788. The context [% context FILTER html %] is invalid (must be a number,
  789. "file" or "patch").
  790. [% ELSIF error == "invalid_datasets" %]
  791. [% title = "Invalid Datasets" %]
  792. Invalid datasets <em>[% datasets.join(":") FILTER html %]</em>. Only digits,
  793. letters and colons are allowed.
  794. [% ELSIF error == "invalid_format" %]
  795. [% title = "Invalid Format" %]
  796. The format "[% format FILTER html %]" is invalid (must be one of
  797. [% FOREACH my_format = formats %]
  798. "[% my_format FILTER html %]"
  799. [% END %]
  800. ).
  801. [% ELSIF error == "invalid_group_ID" %]
  802. [% title = "Invalid group ID" %]
  803. The group you specified doesn't exist.
  804. [% ELSIF error == "invalid_group_name" %]
  805. [% title = "Invalid group name" %]
  806. The group you specified, [% name FILTER html %], is not valid here.
  807. [% ELSIF error == "invalid_maxrows" %]
  808. [% title = "Invalid Max Rows" %]
  809. The maximum number of rows, '[% maxrows FILTER html %]', must be
  810. a positive integer.
  811. [% ELSIF error == "invalid_parameter" %]
  812. [% title = "Invalid Parameter" %]
  813. The new value for [% name FILTER html %] is invalid: [% err FILTER html %].
  814. [% ELSIF error == "invalid_product_name" %]
  815. [% title = "Invalid Product Name" %]
  816. The product name '[% product FILTER html %]' is invalid or does not exist.
  817. [% ELSIF error == "invalid_regexp" %]
  818. [% title = "Invalid regular expression" %]
  819. The regular expression you entered is invalid.
  820. [% ELSIF error == "invalid_user_group" %]
  821. [% title = "Invalid User Group" %]
  822. [% IF users.size > 1 %] Users [% ELSE %] User [% END %]
  823. '[% users.join(', ') FILTER html %]'
  824. [% IF users.size > 1 %] are [% ELSE %] is [% END %]
  825. not able to edit the
  826. [% IF product %]
  827. '[% product FILTER html %]'
  828. [% END %]
  829. [%+ field_descs.product FILTER html %]
  830. [% IF bug_id %]
  831. for [% terms.bug %] '[% bug_id FILTER html %]'.
  832. [% ELSIF new %]
  833. and may not be included on a new [% terms.bug %].
  834. [% ELSE %]
  835. for at least one [% terms.bug %] being changed.
  836. [% END %]
  837. [% ELSIF error == "invalid_username" %]
  838. [% title = "Invalid Username" %]
  839. The name <tt>[% name FILTER html %]</tt> is not a valid username.
  840. Either you misspelled it, or the person has not
  841. registered for a [% terms.Bugzilla %] account.
  842. [% ELSIF error == "invalid_username_or_password" %]
  843. [% title = "Invalid Username Or Password" %]
  844. The username or password you entered is not valid.
  845. [%# People get two login attempts before being warned about
  846. # being locked out.
  847. #%]
  848. [% IF remaining <= 2 %]
  849. If you do not enter the correct password after
  850. [%+ remaining FILTER html %] more attempt(s), you will be
  851. locked out of this account for
  852. [%+ constants.LOGIN_LOCKOUT_INTERVAL FILTER html %] minutes.
  853. [% END %]
  854. [% ELSIF error == "json_rpc_get_method_required" %]
  855. When using JSON-RPC over GET, you must specify a 'method'
  856. parameter. See the documentation at
  857. [%+ docs_urlbase FILTER html %]api/Bugzilla/WebService/Server/JSONRPC.html
  858. [% ELSIF error == "json_rpc_invalid_params" %]
  859. Could not parse the 'params' argument as valid JSON.
  860. Error: [% err_msg FILTER html %]
  861. Value: [% params FILTER html %]
  862. [% ELSIF error == "json_rpc_invalid_callback" %]
  863. You cannot use '[% callback FILTER html %]' as your 'callback' parameter.
  864. For security reasons, only letters, numbers, and the following
  865. characters are allowed in the 'callback' parameter: <code>[]._</code>
  866. [% ELSIF error == "json_rpc_post_only" %]
  867. For security reasons, you must use HTTP POST to call the
  868. '[% method FILTER html %]' method.
  869. [% ELSIF error == "keyword_already_exists" %]
  870. [% title = "Keyword Already Exists" %]
  871. A keyword with the name [% name FILTER html %] already exists.
  872. [% ELSIF error == "keyword_blank_description" %]
  873. [% title = "Blank Keyword Description Not Allowed" %]
  874. You must enter a non-blank description for the keyword.
  875. [% ELSIF error == "keyword_blank_name" %]
  876. [% title = "Blank Keyword Name Not Allowed" %]
  877. You must enter a non-blank name for the keyword.
  878. [% ELSIF error == "keyword_invalid_name" %]
  879. [% title = "Invalid Keyword Name" %]
  880. You may not use commas or whitespace in a keyword name.
  881. [% ELSIF error == "local_file_too_large" %]
  882. [% title = "Local File Too Large" %]
  883. Local file uploads must not exceed
  884. [% Param('maxlocalattachment') %] MB in size.
  885. [% ELSIF error == "login_needed_for_password_change" %]
  886. [% title = "Login Name Required" %]
  887. You must enter a login name when requesting to change your password.
  888. [% ELSIF error == "login_required_for_pronoun" %]
  889. [% title = "Login Name Required" %]
  890. You can't use %user% without being logged in, because %user% refers
  891. to your login name, which we don't know.
  892. [% ELSIF error == "login_required" %]
  893. [%# Used for non-web-based LOGIN_REQUIRED situations. %]
  894. You must log in before using this part of [% terms.Bugzilla %].
  895. [% ELSIF error == "migrate_config_created" %]
  896. The file <kbd>[% file FILTER html %]</kbd> contains configuration
  897. variables that must be set before continuing with the migration.
  898. [% ELSIF error == "migrate_from_invalid" %]
  899. '[% from FILTER html %]' is not a valid type of [% terms.bug %]-tracker
  900. to migrate from. See the contents of the <kbd>B[% %]ugzilla/Migrate/</kbd>
  901. directory for a list of valid [% terms.bug %]-trackers.
  902. [% ELSIF error == "milestone_already_exists" %]
  903. [% title = "Milestone Already Exists" %]
  904. [% admindocslinks = {'products.html' => 'Administering products',
  905. 'milestones.html' => 'About Milestones'} %]
  906. The milestone '[% name FILTER html %]' already exists for product '
  907. [%- product FILTER html %]'.
  908. [% ELSIF error == "milestone_blank_name" %]
  909. [% title = "Blank Milestone Name Not Allowed" %]
  910. You must enter a name for this milestone.
  911. [% ELSIF error == "milestone_is_default" %]
  912. [% title = "Default milestone not deletable" %]
  913. [% admindocslinks = {'products.html' => 'Administering products',
  914. 'milestones.html' => 'About Milestones'} %]
  915. Sorry, but [% milestone.name FILTER html %] is the default milestone
  916. for the '[% milestone.product.name FILTER html %]' product, and so
  917. it cannot be deleted.
  918. [% ELSIF error == "milestone_name_too_long" %]
  919. [% title = "Milestone Name Is Too Long" %]
  920. The name of a milestone is limited to [% constants.MAX_MILESTONE_SIZE FILTER html %]
  921. characters. '[% name FILTER html %]' is too long ([% name.length %] characters).
  922. [% ELSIF error == "milestone_required" %]
  923. [% title = "Milestone Required" %]
  924. You must select a target milestone for [% terms.bug %]
  925. [%+ bug.id FILTER html %]
  926. if you are going to accept it. Part of accepting
  927. [%+ terms.abug %] is giving an estimate of when it will be fixed.
  928. [% ELSIF error == "milestone_sortkey_invalid" %]
  929. [% title = "Invalid Milestone Sortkey" %]
  930. The sortkey '[% sortkey FILTER html %]' is not in the range
  931. [%+ constants.MIN_SMALLINT FILTER html %] &le; sortkey &le;
  932. [%+ constants.MAX_SMALLINT FILTER html %].
  933. [% ELSIF error == "misarranged_dates" %]
  934. [% title = "Misarranged Dates" %]
  935. Your start date ([% datefrom FILTER html %]) is after
  936. your end date ([% dateto FILTER html %]).
  937. [% ELSIF error == "missing_attachment_description" %]
  938. [% title = "Missing Attachment Description" %]
  939. You must enter a description for the attachment.
  940. [% ELSIF error == "missing_category" %]
  941. [% title = "Missing Category" %]
  942. You did not specify a category for this series.
  943. [% ELSIF error == "missing_component" %]
  944. [% title = "Missing Component" %]
  945. [% admindocslinks = {'products.html' => 'Administering products',
  946. 'components.html' => 'Creating a component'} %]
  947. Sorry, the product <em>[% product.name FILTER html %]</em>
  948. has to have at least one component in order for you to
  949. enter [% terms.abug %] into it.<br>
  950. [% IF user.in_group("editcomponents", product.id) %]
  951. <a href="editcomponents.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Create
  952. a new component</a>.
  953. [% ELSE %]
  954. Please contact [% Param("maintainer") %] and ask them
  955. to add a component to this product.
  956. [% END %]
  957. [% ELSIF error == "missing_content_type" %]
  958. [% title = "Missing Content-Type" %]
  959. You asked [% terms.Bugzilla %] to auto-detect the content type, but
  960. your browser did not specify a content type when uploading the file,
  961. so you must enter a content type manually.
  962. [% ELSIF error == "missing_content_type_method" %]
  963. [% title = "Missing Content-Type Determination Method" %]
  964. You must choose a method for determining the content type,
  965. either <em>auto-detect</em>, <em>select from list</em>, or <em>enter
  966. manually</em>.
  967. [% ELSIF error == "missing_cookie" %]
  968. [% title = "Missing Cookie" %]
  969. Sorry, I seem to have lost the cookie that recorded
  970. the results of your last search. I'm afraid you will have to start
  971. again from the <a href="query.cgi">search page</a>.
  972. [% ELSIF error == "missing_datasets" %]
  973. [% title = "No Datasets Selected" %]
  974. [% docslinks = {'reporting.html' => 'Reporting'} %]
  975. You must specify one or more datasets to plot.
  976. [% ELSIF error == "missing_frequency" %]
  977. [% title = "Missing Frequency" %]
  978. [% docslinks = {'reporting.html' => 'Reporting'} %]
  979. You did not specify a valid frequency for this series.
  980. [% ELSIF error == "missing_name" %]
  981. [% title = "Missing Name" %]
  982. [% docslinks = {'reporting.html' => 'Reporting'} %]
  983. You did not specify a name for this series.
  984. [% ELSIF error == "missing_query" %]
  985. [% title = "Missing Search" %]
  986. [% docslinks = {'query.html' => "Searching for $terms.bugs",
  987. 'query.html#list' => "$terms.Bug lists"} %]
  988. The search named <em>[% queryname FILTER html %]</em>
  989. [% IF sharer_id && sharer_id != user.id %]
  990. has not been made visible to you.
  991. [% ELSE %]
  992. does not exist.
  993. [% END %]
  994. [% ELSIF error == "missing_resolution" %]
  995. [% title = "Resolution Required" %]
  996. A valid resolution is required to mark [% terms.bugs %] as
  997. [%+ status FILTER upper FILTER html %].
  998. [% ELSIF error == "missing_subcategory" %]
  999. [% title = "Missing Subcategory" %]
  1000. You did not specify a subcategory for this series.
  1001. [% ELSIF error == "missing_version" %]
  1002. [% title = "Missing Version" %]
  1003. [% admindocslinks = {'versions.html' => 'Defining versions'} %]
  1004. Sorry, the product <em>[% product.name FILTER html %]</em>
  1005. has to have at least one version in order for you to
  1006. enter [% terms.abug %] into it.<br>
  1007. [% IF user.in_group("editcomponents", product.id) %]
  1008. <a href="editversions.cgi?action=add&amp;product=[% product.name FILTER url_quote %]">Create
  1009. a new version</a>.
  1010. [% ELSE %]
  1011. Please contact [% Param("maintainer") %] and ask them
  1012. to add a version to this product.
  1013. [% END %]
  1014. [% ELSIF error == "multiple_alias_not_allowed" %]
  1015. You cannot set aliases when modifying multiple [% terms.bugs %]
  1016. at once.
  1017. [% ELSIF error == "need_quip" %]
  1018. [% title = "Quip Required" %]
  1019. [% docslinks = {'quips.html' => 'About quips'} %]
  1020. Please enter a quip in the text field.
  1021. [% ELSIF error == "new_password_missing" %]
  1022. [% title = "New Password Missing" %]
  1023. You must enter a new password.
  1024. [% ELSIF error == "no_axes_defined" %]
  1025. [% title = "No Axes Defined" %]
  1026. [% docslinks = {'reporting.html' => 'Reporting'} %]
  1027. You didn't define any axes to plot.
  1028. [% ELSIF error == "no_bugs_chosen" %]
  1029. [% title = BLOCK %]No [% terms.Bugs %] Selected[% END %]
  1030. You apparently didn't choose any [% terms.bugs %]
  1031. [% IF action == "modify" %]
  1032. to modify.
  1033. [% ELSIF action == "view" %]
  1034. to view.
  1035. [% END %]
  1036. [% ELSIF error == "no_bug_ids" %]
  1037. [% title = BLOCK %]No [% terms.Bugs %] Selected[% END %]
  1038. You didn't choose any [% terms.bugs %] to
  1039. [% IF action == "add" %] add to [% ELSE %] remove from [% END %]
  1040. the [% tag FILTER html %] tag.
  1041. [% ELSIF error == "no_bugs_in_list" %]
  1042. [% title = "Delete Tag?" %]
  1043. This will remove all [% terms.bugs %] from the
  1044. <em>[% name FILTER html %]</em> tag. This will delete the tag completely. Click
  1045. <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
  1046. [%- name FILT

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