pt_BR.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992
  1. # Brazilian Portuguese translation for aria2
  2. # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2009-03-13 23:24+0900\n"
  11. "PO-Revision-Date: 2007-12-01 14:25+0000\n"
  12. "Last-Translator: jareth-Br <fcarretoni@gmail.com>\n"
  13. "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-03-01 03:48+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:208
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr ""
  23. #: src/DownloadEngine.cc:214
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr ""
  26. #: src/MultiUrlRequestInfo.cc:96
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr ""
  29. #: src/MultiUrlRequestInfo.cc:98
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. #: src/RequestGroupMan.cc:423
  35. msgid "Download Results:"
  36. msgstr ""
  37. #: src/RequestGroupMan.cc:464
  38. msgid "Status Legend:"
  39. msgstr ""
  40. #: src/OptionHandler.cc:38
  41. msgid " Default: "
  42. msgstr ""
  43. #: src/OptionHandler.cc:39
  44. msgid " Tags: "
  45. msgstr ""
  46. #: src/OptionHandler.cc:40
  47. msgid " Possible Values: "
  48. msgstr ""
  49. #: src/OptionHandlerImpl.h:129
  50. msgid "must be either 'true' or 'false'."
  51. msgstr "deve ser 'true' ou 'false'"
  52. #: src/OptionHandlerImpl.h:162 src/OptionHandlerImpl.h:210
  53. #, c-format
  54. msgid "must be between %s and %s."
  55. msgstr "deve estar entre %s e %s"
  56. #: src/OptionHandlerImpl.h:207
  57. #, c-format
  58. msgid "must be smaller than or equal to %s."
  59. msgstr "deve ser menor que, ou igual a %s"
  60. #: src/OptionHandlerImpl.h:213
  61. #, c-format
  62. msgid "must be greater than or equal to %s."
  63. msgstr "deve ser maior que, ou igual a %s"
  64. #: src/OptionHandlerImpl.h:216 src/OptionHandlerImpl.h:282
  65. msgid "must be a number."
  66. msgstr "deve ser um número."
  67. #: src/OptionHandlerImpl.h:273
  68. #, c-format
  69. msgid "must be smaller than or equal to %.1f."
  70. msgstr "deve ser menor que, ou igual a %.1f."
  71. #: src/OptionHandlerImpl.h:276
  72. #, c-format
  73. msgid "must be between %.1f and %.1f."
  74. msgstr "deve estar entre %.1f e %.1f."
  75. #: src/OptionHandlerImpl.h:279
  76. #, c-format
  77. msgid "must be greater than or equal to %.1f."
  78. msgstr "deve ser maior que, ou igual a %.1f."
  79. #: src/OptionHandlerImpl.h:456
  80. msgid "must be one of the following:"
  81. msgstr "deve ser um dos seguintes:"
  82. #: src/OptionHandlerImpl.h:505 src/OptionHandlerImpl.h:548
  83. msgid "unrecognized proxy format"
  84. msgstr "formato proxy não reconhecido"
  85. #: src/usage_text.h:37
  86. msgid ""
  87. " -d, --dir=DIR The directory to store the downloaded file."
  88. msgstr ""
  89. #: src/usage_text.h:39
  90. msgid " -o, --out=FILE The file name of the downloaded file."
  91. msgstr ""
  92. #: src/usage_text.h:41
  93. msgid ""
  94. " -l, --log=LOG The file name of the log file. If '-' is\n"
  95. " specified, log is written to stdout."
  96. msgstr ""
  97. #: src/usage_text.h:44
  98. msgid " -D, --daemon Run as daemon."
  99. msgstr ""
  100. #: src/usage_text.h:46
  101. msgid ""
  102. " -s, --split=N Download a file using N connections. If more\n"
  103. " than N URLs are given, first N URLs are used "
  104. "and\n"
  105. " remaining URLs are used for backup. If less "
  106. "than\n"
  107. " N URLs are given, those URLs are used more "
  108. "than\n"
  109. " once so that N connections total are made\n"
  110. " simultaneously. Please see -j option too.\n"
  111. " Please note that in Metalink download, this\n"
  112. " option has no effect and use -C option instead."
  113. msgstr ""
  114. #: src/usage_text.h:55
  115. msgid ""
  116. " --retry-wait=SEC Set the seconds to wait to retry after an "
  117. "error\n"
  118. " has occured."
  119. msgstr ""
  120. #: src/usage_text.h:58
  121. msgid " -t, --timeout=SEC Set timeout in seconds."
  122. msgstr ""
  123. #: src/usage_text.h:60
  124. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  125. msgstr ""
  126. #: src/usage_text.h:62
  127. msgid ""
  128. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  129. " See also --all-proxy option.\n"
  130. " This affects all URLs."
  131. msgstr ""
  132. #: src/usage_text.h:66
  133. msgid ""
  134. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  135. " See also --all-proxy option.\n"
  136. " This affects all URLs."
  137. msgstr ""
  138. #: src/usage_text.h:70
  139. msgid ""
  140. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  141. " See also --all-proxy option.\n"
  142. " This affects all URLs."
  143. msgstr ""
  144. #: src/usage_text.h:74
  145. msgid ""
  146. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  147. " You can override this setting and specify a\n"
  148. " proxy server for a particular protocol using\n"
  149. " --http-proxy, --https-proxy and --ftp-proxy\n"
  150. " options.\n"
  151. " This affects all URLs."
  152. msgstr ""
  153. #: src/usage_text.h:81
  154. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  155. msgstr ""
  156. #: src/usage_text.h:83
  157. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  158. msgstr ""
  159. #: src/usage_text.h:85
  160. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  161. msgstr ""
  162. #: src/usage_text.h:87
  163. msgid ""
  164. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  165. "basic\n"
  166. " is the only supported scheme."
  167. msgstr ""
  168. #: src/usage_text.h:90
  169. msgid " --referer=REFERER Set Referer. This affects all URLs."
  170. msgstr ""
  171. #: src/usage_text.h:92
  172. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  173. msgstr ""
  174. #: src/usage_text.h:94
  175. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  176. msgstr ""
  177. #: src/usage_text.h:96
  178. msgid " --ftp-type=TYPE Set FTP transfer type."
  179. msgstr ""
  180. #: src/usage_text.h:98
  181. msgid ""
  182. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  183. "given,\n"
  184. " the active mode will be used."
  185. msgstr ""
  186. #: src/usage_text.h:101
  187. msgid ""
  188. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  189. "than\n"
  190. " or equal to this value(bytes per sec).\n"
  191. " 0 means aria2 does not have a lowest speed "
  192. "limit.\n"
  193. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  194. " This option does not affect BitTorrent "
  195. "downloads."
  196. msgstr ""
  197. #: src/usage_text.h:107
  198. msgid ""
  199. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  200. "sec.\n"
  201. " 0 means unrestricted.\n"
  202. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  203. " To limit the download speed per download, use\n"
  204. " --max-download-limit option."
  205. msgstr ""
  206. #: src/usage_text.h:113
  207. msgid ""
  208. " --max-download-limit=SPEED Set max download speed per each download in\n"
  209. " bytes/sec. 0 means unrestricted.\n"
  210. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  211. " To limit the overall download speed, use\n"
  212. " --max-overall-download-limit option."
  213. msgstr ""
  214. #: src/usage_text.h:119
  215. msgid ""
  216. " --file-allocation=METHOD Specify file allocation method.\n"
  217. " 'none' doesn't pre-allocate file space. "
  218. "'prealloc'\n"
  219. " pre-allocates file space before download "
  220. "begins.\n"
  221. " This may take some time depending on the size "
  222. "of\n"
  223. " the file."
  224. msgstr ""
  225. #: src/usage_text.h:125
  226. msgid ""
  227. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  228. " size is smaller than SIZE.\n"
  229. " You can append K or M(1K = 1024, 1M = 1024K)."
  230. msgstr ""
  231. #: src/usage_text.h:129
  232. msgid ""
  233. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  234. "while\n"
  235. " allocating files.\n"
  236. " Turn off if you encounter any error"
  237. msgstr ""
  238. #: src/usage_text.h:133
  239. msgid ""
  240. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  241. " already exists but the corresponding .aria2 "
  242. "file\n"
  243. " doesn't exist."
  244. msgstr ""
  245. #: src/usage_text.h:137
  246. msgid ""
  247. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  248. "download\n"
  249. " when a piece length is different from one in\n"
  250. " a control file. If true is given, you can "
  251. "proceed\n"
  252. " but some download progress will be lost."
  253. msgstr ""
  254. #: src/usage_text.h:142
  255. msgid ""
  256. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  257. "sequentially\n"
  258. " and download each URI in a separate session, "
  259. "like\n"
  260. " the usual command-line download utilities."
  261. msgstr ""
  262. #: src/usage_text.h:146
  263. msgid ""
  264. " --auto-file-renaming[=true|false] Rename file name if the same file "
  265. "already\n"
  266. " exists. This option works only in http(s)/ftp\n"
  267. " download.\n"
  268. " The new file name has a dot and a number"
  269. "(1..9999)\n"
  270. " appended."
  271. msgstr ""
  272. #: src/usage_text.h:152
  273. msgid ""
  274. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  275. " You can specify set of parts:\n"
  276. " http://{sv1,sv2,sv3}/foo.iso\n"
  277. " Also you can specify numeric sequences with "
  278. "step\n"
  279. " counter:\n"
  280. " http://host/image[000-100:2].img\n"
  281. " A step counter can be omitted.\n"
  282. " If all URIs do not point to the same file, "
  283. "such\n"
  284. " as the second example above, -Z option is\n"
  285. " required."
  286. msgstr ""
  287. #: src/usage_text.h:163
  288. msgid ""
  289. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  290. msgstr ""
  291. #: src/usage_text.h:165
  292. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  293. msgstr ""
  294. #: src/usage_text.h:167
  295. msgid ""
  296. " -V, --check-integrity[=true|false] Check file integrity by validating "
  297. "piece\n"
  298. " hashes. This option has effect only in "
  299. "BitTorrent\n"
  300. " and Metalink downloads with chunk checksums.\n"
  301. " Use this option to re-download a damaged "
  302. "portion\n"
  303. " of a file. See also --bt-hash-check-seed "
  304. "option."
  305. msgstr ""
  306. #: src/usage_text.h:173
  307. msgid ""
  308. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  309. " --check-integrity option and file is "
  310. "complete,\n"
  311. " continue to seed file. If you want to check "
  312. "file\n"
  313. " and download it only when it is damaged or\n"
  314. " incomplete, set this option to false.\n"
  315. " This option has effect only on BitTorrent\n"
  316. " download."
  317. msgstr ""
  318. #: src/usage_text.h:181
  319. msgid ""
  320. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  321. "calculating\n"
  322. " checksum while downloading a file if chunk\n"
  323. " checksums are provided."
  324. msgstr ""
  325. #: src/usage_text.h:185
  326. msgid ""
  327. " -c, --continue Continue downloading a partially downloaded\n"
  328. " file. Use this option to resume a download\n"
  329. " started by a web browser or another program\n"
  330. " which downloads files sequentially from the\n"
  331. " beginning. Currently this option is only\n"
  332. " applicable to http(s)/ftp downloads."
  333. msgstr ""
  334. #: src/usage_text.h:192
  335. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  336. msgstr ""
  337. #: src/usage_text.h:194
  338. msgid " -n, --no-netrc Disables netrc support."
  339. msgstr ""
  340. #: src/usage_text.h:196
  341. msgid ""
  342. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  343. " multiple URIs for a single entity: separate\n"
  344. " URIs on a single line using the TAB "
  345. "character.\n"
  346. " Reads input from stdin when '-' is specified.\n"
  347. " The additional out and dir options can be\n"
  348. " specified after each line of URIs. This "
  349. "optional\n"
  350. " line must start with white space(s). See "
  351. "INPUT\n"
  352. " FILE section of man page for details."
  353. msgstr ""
  354. #: src/usage_text.h:205
  355. msgid ""
  356. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  357. "for\n"
  358. " every static (HTTP/FTP) URL, torrent and "
  359. "metalink.\n"
  360. " See also -s and -C options."
  361. msgstr ""
  362. #: src/usage_text.h:209
  363. msgid ""
  364. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  365. "format\n"
  366. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  367. msgstr ""
  368. #: src/usage_text.h:212
  369. msgid ""
  370. " -S, --show-files Print file listing of .torrent or .metalink "
  371. "file\n"
  372. " and exit. More detailed information will be "
  373. "listed\n"
  374. " in case of torrent file."
  375. msgstr ""
  376. #: src/usage_text.h:216
  377. msgid ""
  378. " --select-file=INDEX... Set file to download by specifying its index.\n"
  379. " You can find the file index using the\n"
  380. " --show-files option. Multiple indexes can be\n"
  381. " specified by using ',', for example: \"3,6\".\n"
  382. " You can also use '-' to specify a range: \"1-5"
  383. "\".\n"
  384. " ',' and '-' can be used together.\n"
  385. " When used with the -M option, index may vary\n"
  386. " depending on the query(see --metalink-* "
  387. "options)."
  388. msgstr ""
  389. #: src/usage_text.h:225
  390. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  391. msgstr ""
  392. #: src/usage_text.h:227
  393. msgid ""
  394. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  395. " whose suffix is .torrent or content type is\n"
  396. " application/x-bittorrent is downloaded, aria2\n"
  397. " parses it as a torrent file and downloads "
  398. "files\n"
  399. " mentioned in it.\n"
  400. " If mem is specified, a torrent file is not\n"
  401. " written to the disk, but is just kept in "
  402. "memory.\n"
  403. " If false is specified, the action mentioned "
  404. "above\n"
  405. " is not taken."
  406. msgstr ""
  407. #: src/usage_text.h:237
  408. msgid ""
  409. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  410. " mentioned in .torrent file."
  411. msgstr ""
  412. #: src/usage_text.h:240
  413. msgid ""
  414. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  415. " Multiple ports can be specified by using ',',\n"
  416. " for example: \"6881,6885\". You can also use "
  417. "'-'\n"
  418. " to specify a range: \"6881-6999\". ',' and '-' "
  419. "can\n"
  420. " be used together."
  421. msgstr ""
  422. #: src/usage_text.h:246
  423. msgid ""
  424. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  425. "sec.\n"
  426. " 0 means unrestricted.\n"
  427. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  428. " To limit the upload speed per torrent, use\n"
  429. " --max-upload-limit option."
  430. msgstr ""
  431. #: src/usage_text.h:252
  432. msgid ""
  433. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  434. " bytes/sec. 0 means unrestricted.\n"
  435. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  436. " To limit the overall upload speed, use\n"
  437. " --max-overall-upload-limit option."
  438. msgstr ""
  439. #: src/usage_text.h:258
  440. msgid ""
  441. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  442. " --seed-ratio option."
  443. msgstr ""
  444. #: src/usage_text.h:261
  445. msgid ""
  446. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  447. " until share ratio reaches RATIO.\n"
  448. " You are strongly encouraged to specify equals "
  449. "or\n"
  450. " more than 1.0 here. Specify 0.0 if you intend "
  451. "to\n"
  452. " do seeding regardless of share ratio.\n"
  453. " If --seed-time option is specified along with\n"
  454. " this option, seeding ends when at least one "
  455. "of\n"
  456. " the conditions is satisfied."
  457. msgstr ""
  458. #: src/usage_text.h:270
  459. msgid ""
  460. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  461. "in\n"
  462. " BitTorrent is 20 byte length. If more than 20\n"
  463. " bytes are specified, only first 20\n"
  464. " bytes are used. If less than 20 bytes are\n"
  465. " specified, the random alphabet characters are\n"
  466. " added to make it's length 20 bytes."
  467. msgstr ""
  468. #: src/usage_text.h:277
  469. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  470. msgstr ""
  471. #: src/usage_text.h:279
  472. msgid " --enable-dht[=true|false] Enable DHT functionality."
  473. msgstr ""
  474. #: src/usage_text.h:281
  475. msgid ""
  476. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  477. " Multiple ports can be specified by using ',',\n"
  478. " for example: \"6881,6885\". You can also use "
  479. "'-'\n"
  480. " to specify a range: \"6881-6999\". ',' and '-' "
  481. "can\n"
  482. " be used together."
  483. msgstr ""
  484. #: src/usage_text.h:287
  485. msgid ""
  486. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  487. " network."
  488. msgstr ""
  489. #: src/usage_text.h:290
  490. msgid ""
  491. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  492. msgstr ""
  493. #: src/usage_text.h:292
  494. msgid ""
  495. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  496. " If several encryption methods are provided by "
  497. "a\n"
  498. " peer, aria2 chooses the lowest one which "
  499. "satisfies\n"
  500. " the given level."
  501. msgstr ""
  502. #: src/usage_text.h:297
  503. msgid ""
  504. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  505. " establish connection with legacy BitTorrent\n"
  506. " handshake. Thus aria2 always uses Obfuscation\n"
  507. " handshake."
  508. msgstr ""
  509. #: src/usage_text.h:302
  510. msgid ""
  511. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  512. " torrent is lower than SPEED, aria2 "
  513. "temporarily\n"
  514. " increases the number of peers to try for more\n"
  515. " download speed. Configuring this option with "
  516. "your\n"
  517. " preferred download speed can increase your\n"
  518. " download speed in some cases.\n"
  519. " You can append K or M(1K = 1024, 1M = 1024K)."
  520. msgstr ""
  521. #: src/usage_text.h:310
  522. msgid ""
  523. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  524. "each\n"
  525. " BitTorrent download."
  526. msgstr ""
  527. #: src/usage_text.h:313
  528. msgid ""
  529. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  530. " verifying piece hashes."
  531. msgstr ""
  532. #: src/usage_text.h:316
  533. msgid ""
  534. " --bt-max-peers=NUM Specify the maximum number of peers per "
  535. "torrent.\n"
  536. " 0 means unlimited.\n"
  537. " See also --bt-request-peer-speed-limit option."
  538. msgstr ""
  539. #: src/usage_text.h:320
  540. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  541. msgstr ""
  542. #: src/usage_text.h:322
  543. msgid ""
  544. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  545. " simultaneously. Some Metalinks regulate the\n"
  546. " number of servers to connect. aria2 strictly\n"
  547. " respects them. This means that if Metalink "
  548. "defines\n"
  549. " the maxconnections attribute lower than\n"
  550. " NUM_SERVERS, then aria2 uses the value of\n"
  551. " maxconnections attribute instead of "
  552. "NUM_SERVERS.\n"
  553. " See also -s and -j options."
  554. msgstr ""
  555. #: src/usage_text.h:331
  556. msgid " --metalink-version=VERSION The version of the file to download."
  557. msgstr ""
  558. #: src/usage_text.h:333
  559. msgid " --metalink-language=LANGUAGE The language of the file to download."
  560. msgstr ""
  561. #: src/usage_text.h:335
  562. msgid ""
  563. " --metalink-os=OS The operating system of the file to download."
  564. msgstr ""
  565. #: src/usage_text.h:337
  566. msgid ""
  567. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  568. " A comma-delimited list of locations is\n"
  569. " acceptable."
  570. msgstr ""
  571. #: src/usage_text.h:341
  572. msgid ""
  573. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  574. "'none'\n"
  575. " if you don't have any preferred protocol."
  576. msgstr ""
  577. #: src/usage_text.h:344
  578. msgid ""
  579. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  580. " whose suffix is .metaink or content type of\n"
  581. " application/metalink+xml is downloaded, aria2\n"
  582. " parses it as a metalink file and downloads "
  583. "files\n"
  584. " mentioned in it.\n"
  585. " If mem is specified, a metalink file is not\n"
  586. " written to the disk, but is just kept in "
  587. "memory.\n"
  588. " If false is specified, the action mentioned "
  589. "above\n"
  590. " is not taken."
  591. msgstr ""
  592. #: src/usage_text.h:354
  593. msgid ""
  594. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  595. " protocols are available for a mirror in a "
  596. "metalink\n"
  597. " file, aria2 uses one of them.\n"
  598. " Use --metalink-preferred-protocol option to\n"
  599. " specify the preference of protocol."
  600. msgstr ""
  601. #: src/usage_text.h:360
  602. msgid " -v, --version Print the version number and exit."
  603. msgstr ""
  604. #: src/usage_text.h:362
  605. msgid ""
  606. " -h, --help[=CATEGORY] Print usage and exit.\n"
  607. " The help messages are classified in several\n"
  608. " categories. For example, type \"--help=http\" "
  609. "for\n"
  610. " detailed explanation for the options related "
  611. "to\n"
  612. " http. If no matching category is found, "
  613. "search\n"
  614. " option name using a given word in middle "
  615. "match\n"
  616. " and print the result."
  617. msgstr ""
  618. #: src/usage_text.h:370
  619. msgid " --no-conf Disable loading aria2.conf file."
  620. msgstr ""
  621. #: src/usage_text.h:372
  622. msgid ""
  623. " --conf-path=PATH Change the configuration file path to PATH."
  624. msgstr ""
  625. #: src/usage_text.h:374
  626. msgid ""
  627. " --stop=SEC Stop application after SEC seconds has "
  628. "passed.\n"
  629. " If 0 is given, this feature is disabled."
  630. msgstr ""
  631. #: src/usage_text.h:377
  632. msgid ""
  633. " --header=HEADER Append HEADER to HTTP request header. You can "
  634. "use\n"
  635. " this option repeatedly to specify more than "
  636. "one\n"
  637. " header:\n"
  638. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  639. "9J1\"\n"
  640. " http://host/file"
  641. msgstr ""
  642. #: src/usage_text.h:383
  643. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  644. msgstr ""
  645. #: src/usage_text.h:385
  646. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  647. msgstr ""
  648. #: src/usage_text.h:387
  649. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  650. msgstr ""
  651. #: src/usage_text.h:389
  652. msgid ""
  653. " --summary-interval=SEC Set interval to output download progress "
  654. "summary.\n"
  655. " Setting 0 suppresses the output."
  656. msgstr ""
  657. #: src/usage_text.h:392
  658. msgid " --log-level=LEVEL Set log level to output."
  659. msgstr ""
  660. #: src/usage_text.h:394
  661. msgid ""
  662. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  663. "the\n"
  664. " remote HTTP/FTP server and if it is "
  665. "available,\n"
  666. " apply it to the local file."
  667. msgstr ""
  668. #: src/usage_text.h:398
  669. msgid ""
  670. " --connect-timeout=SEC Set the connect timeout in seconds to "
  671. "establish\n"
  672. " connection to HTTP/FTP/proxy server. After "
  673. "the\n"
  674. " connection is established, this option makes "
  675. "no\n"
  676. " effect and --timeout option is used instead."
  677. msgstr ""
  678. #: src/usage_text.h:403
  679. msgid ""
  680. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  681. "the\n"
  682. " remote HTTP/FTP servers NUM times without "
  683. "getting\n"
  684. " a single byte, then force the download to "
  685. "fail.\n"
  686. " Specify 0 to disable this option.\n"
  687. " This options is effective only when using\n"
  688. " HTTP/FTP servers."
  689. msgstr ""
  690. #: src/usage_text.h:410
  691. msgid ""
  692. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  693. " If 'inorder' is given, URI is tried in the "
  694. "order\n"
  695. " appeared in the URI list.\n"
  696. " If 'feedback' is given, aria2 uses download "
  697. "speed\n"
  698. " observed in the previous downloads and choose\n"
  699. " fastest server in the URI list. This also\n"
  700. " effectively skips dead mirrors. The observed\n"
  701. " download speed is a part of performance "
  702. "profile\n"
  703. " of servers mentioned in --server-stat-of and\n"
  704. " --server-stat-if options.\n"
  705. " If 'adaptive' is given, selects one of the "
  706. "best\n"
  707. " mirrors for the first and reserved "
  708. "connections.\n"
  709. " For supplementary ones, it returns mirrors "
  710. "which\n"
  711. " has not been tested yet, and if each of them "
  712. "has\n"
  713. " already been tested, returns mirrors which has "
  714. "to\n"
  715. " be tested again. Otherwise, it doesn't select\n"
  716. " anymore mirrors. Like 'feedback', it uses a\n"
  717. " performance profile of servers."
  718. msgstr ""
  719. #: src/usage_text.h:429
  720. msgid ""
  721. " --server-stat-of=FILE Specify the filename to which performance "
  722. "profile\n"
  723. " of the servers is saved. You can load saved "
  724. "data\n"
  725. " using --server-stat-if option."
  726. msgstr ""
  727. #: src/usage_text.h:433
  728. msgid ""
  729. " --server-stat-if=FILE Specify the filename to load performance "
  730. "profile\n"
  731. " of the servers. The loaded data will be used "
  732. "in\n"
  733. " some URI selector such as 'feedback'.\n"
  734. " See also --uri-selector option"
  735. msgstr ""
  736. #: src/usage_text.h:438
  737. msgid ""
  738. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  739. " performance profile of the servers since the "
  740. "last\n"
  741. " contact to them."
  742. msgstr ""
  743. #: src/usage_text.h:442
  744. msgid ""
  745. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  746. "seconds.\n"
  747. " If 0 is given, a control file is not saved "
  748. "during\n"
  749. " download. aria2 saves a control file when it "
  750. "stops\n"
  751. " regardless of the value."
  752. msgstr ""
  753. #: src/usage_text.h:447
  754. msgid ""
  755. " --certificate=FILE Use the client certificate in FILE.\n"
  756. " The certificate must be in PEM format.\n"
  757. " You may use --private-key option to specify "
  758. "the\n"
  759. " private key."
  760. msgstr ""
  761. #: src/usage_text.h:452
  762. msgid ""
  763. " --private-key=FILE Use the private key in FILE.\n"
  764. " The private key must be decrypted and in PEM\n"
  765. " format. See also --certificate option."
  766. msgstr ""
  767. #: src/usage_text.h:456
  768. msgid ""
  769. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  770. "verify\n"
  771. " the peers. The certificate file must be in "
  772. "PEM\n"
  773. " format and can contain multiple CA "
  774. "certificates.\n"
  775. " Use --check-certificate option to enable\n"
  776. " verification."
  777. msgstr ""
  778. #: src/usage_text.h:462
  779. msgid ""
  780. " --check-certificate[=true|false] Verify the peer using certificates "
  781. "specified\n"
  782. " in --ca-certificate option."
  783. msgstr ""
  784. #: src/usage_text.h:465
  785. msgid ""
  786. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  787. "where\n"
  788. " proxy should not be used."
  789. msgstr ""
  790. #: src/usage_text.h:468
  791. msgid ""
  792. " --use-head[=true|false] Use HEAD method for the first request to the "
  793. "HTTP\n"
  794. " server."
  795. msgstr ""
  796. #: src/usage_text.h:471
  797. msgid " --event-poll=POLL Specify the method for polling events."
  798. msgstr ""
  799. #: src/usage_text.h:484
  800. msgid ""
  801. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  802. "a\n"
  803. " BitTorrent tracker. Although this function is\n"
  804. " named 'external', it can accept any kind of "
  805. "IP\n"
  806. " addresses."
  807. msgstr ""
  808. #: src/usage_text.h:489
  809. msgid ""
  810. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  811. "it\n"
  812. " is requested by the server. If false is set, "
  813. "then\n"
  814. " authorization header is always sent to the "
  815. "server.\n"
  816. " There is an exception: if username and "
  817. "password\n"
  818. " are embedded in URI, authorization header is\n"
  819. " always sent to the server regardless of this\n"
  820. " option."
  821. msgstr ""
  822. #: src/usage_text.h:497
  823. msgid ""
  824. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  825. "can\n"
  826. " find the file index using the --show-files "
  827. "option.\n"
  828. " PATH is a relative path to the path specified "
  829. "in\n"
  830. " --dir option. You can use this option "
  831. "multiple\n"
  832. " times."
  833. msgstr ""
  834. #: src/usage_text.h:503
  835. msgid ""
  836. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  837. "the\n"
  838. " remote file is available and doesn't download\n"
  839. " data. This option has effect on HTTP/FTP "
  840. "download.\n"
  841. " BitTorrent downloads are canceled if true is\n"
  842. " specified."
  843. msgstr ""
  844. #: src/version_usage.cc:54
  845. msgid " version "
  846. msgstr ""
  847. #: src/version_usage.cc:71
  848. #, c-format
  849. msgid "Report bugs to %s"
  850. msgstr ""
  851. #: src/version_usage.cc:76
  852. #, c-format
  853. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  854. msgstr ""
  855. #: src/version_usage.cc:86
  856. #, c-format
  857. msgid "Printing options whose name includes '%s'."
  858. msgstr ""
  859. #: src/version_usage.cc:89 src/version_usage.cc:111
  860. msgid "Options:"
  861. msgstr ""
  862. #: src/version_usage.cc:94
  863. #, c-format
  864. msgid "No help category or option name matching with '%s'."
  865. msgstr ""
  866. #: src/version_usage.cc:100
  867. msgid "Printing all options."
  868. msgstr ""
  869. #: src/version_usage.cc:102
  870. #, c-format
  871. msgid "Printing options tagged with '%s'."
  872. msgstr ""
  873. #: src/version_usage.cc:106
  874. #, c-format
  875. msgid "See -h option to know other command-line options(%s)."
  876. msgstr ""
  877. #: src/version_usage.cc:120
  878. msgid ""
  879. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  880. " point to the same file or downloading will fail."
  881. msgstr ""
  882. #: src/version_usage.cc:122
  883. msgid ""
  884. " You can also specify arbitrary number of torrent files and metalink files\n"
  885. " stored in a local drive. Please note that they are always treated as a\n"
  886. " separate download."
  887. msgstr ""
  888. #: src/version_usage.cc:127
  889. msgid ""
  890. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  891. " download a file from both torrent swarm and http/ftp server at the same "
  892. "time,\n"
  893. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  894. " only single file torrent can be integrated with http/ftp."
  895. msgstr ""
  896. #: src/version_usage.cc:132
  897. msgid ""
  898. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  899. " contains \"&\" or any characters that have special meaning in shell."
  900. msgstr ""
  901. #: src/version_usage.cc:136
  902. msgid "Refer to man page for more information."
  903. msgstr ""
  904. #: src/message.h:40
  905. #, c-format
  906. msgid "CUID#%d - The download for one segment completed successfully."
  907. msgstr "CUID#%d - O download de um segmento terminou finalizou com sucesso."
  908. #: src/message.h:41
  909. #, c-format
  910. msgid "CUID#%d - No segment available."
  911. msgstr "CUID#%d - Nenhum segmento disponível."
  912. #: src/message.h:42
  913. #, c-format
  914. msgid "CUID#%d - Connecting to %s:%d"
  915. msgstr "CUID#%d - Conectando-se a %s:%d"
  916. #: src/message.h:43
  917. #, c-format
  918. msgid ""
  919. "CUID#%d - The segment changed. We send the request again with new Range "
  920. "header."
  921. msgstr ""
  922. "CUID#%d - O segmento foi modificado. Enviaremos o requerimento novamente com "
  923. "uma nova ordem de cabeçalho."
  924. #: src/message.h:44
  925. #, c-format
  926. msgid "CUID#%d - Redirecting to %s"
  927. msgstr "CUID#%d - Redirecionando a %s"
  928. #: src/message.h:45
  929. #, c-format
  930. msgid ""
  931. "CUID#%d - Requesting:\n"
  932. "%s"
  933. msgstr ""
  934. "CUID#%d - Requisitando:\n"
  935. "%s"
  936. #: src/message.h:46
  937. #, c-format
  938. msgid ""
  939. "CUID#%d - Response received:\n"
  940. "%s"
  941. msgstr ""
  942. "CUID#%d - Resposta recebida:\n"
  943. "%s"
  944. #: src/message.h:47
  945. #, c-format
  946. msgid "CUID#%d - Download aborted. URI=%s"
  947. msgstr "CUID#%d - Download abortado. URI=%s"
  948. #: src/message.h:48
  949. #, c-format
  950. msgid "CUID#%d - Restarting the download. URI=%s"
  951. msgstr "CUID#%d - Reiniciando o download. URI=%s"
  952. #: src/message.h:49
  953. #, c-format
  954. msgid "CUID#%d - Download aborted."
  955. msgstr "CUID#%d - Download abortado."
  956. #: src/message.h:50
  957. #, c-format
  958. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  959. msgstr "CUID#%d - %d tentativas, nenhum sucesso. Download abortado."
  960. #: src/message.h:51
  961. #, c-format
  962. msgid "CUID#%d - Unregistering cuid from segmentManager."
  963. msgstr "CUID#%d - Eliminando registro cuid do Gerenciador de segmentos."
  964. #: src/message.h:57
  965. #, c-format
  966. msgid "CUID#%d - we got new piece. index=%d"
  967. msgstr "CUID#%d - obtivémos um novo pedaço. índice=%d"
  968. #: src/message.h:58
  969. #, c-format
  970. msgid "CUID#%d - we got wrong piece. index=%d"
  971. msgstr "CUID#%d - obtivémos pedaço errado. índice=%d"
  972. #: src/message.h:59
  973. #, c-format
  974. msgid "CUID#%d - Download not complete: %s"
  975. msgstr "CUID#%d - Download incompleto: %s"
  976. #: src/message.h:60
  977. #, c-format
  978. msgid "#%d - Download has already completed: %s"
  979. msgstr "#%d - Download completo: %s"
  980. #: src/message.h:61
  981. #, c-format
  982. msgid "CUID#%d - Good checksum: %s"
  983. msgstr "CUID#%d - Resultado da soma de verificação positivo: %s"
  984. #: src/message.h:62
  985. #, c-format
  986. msgid "CUID#%d - Bad checksum: %s"
  987. msgstr "CUID#%d - Resultado da soma de verificação negativo: %s"
  988. #: src/message.h:63
  989. #, c-format
  990. msgid "CUID#%d - Resolving hostname %s"
  991. msgstr "CUID#%d - Resolvendo o endereço do host %s"
  992. #: src/message.h:64
  993. #, c-format
  994. msgid "CUID#%d - Name resolution complete: %s -> %s"
  995. msgstr "CUID#%d - Resolução de endereço completa: %s -> %s"
  996. #: src/message.h:65
  997. #, c-format
  998. msgid "CUID#%d - Name resolution for %s failed:%s"
  999. msgstr "CUID#%d - Resolução do nome para %s falhou:%s"
  1000. #: src/message.h:66
  1001. #, c-format
  1002. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1003. msgstr "CUID#%d - Cache DNS acertado: %s -> %s"
  1004. #: src/message.h:67
  1005. #, c-format
  1006. msgid "CUID#%d - Abort requested."
  1007. msgstr "CUID#%d - Requerimento para abortar enviado."
  1008. #: src/message.h:68
  1009. #, c-format
  1010. msgid "CUID#%d - Connecting to the peer %s"
  1011. msgstr "CUID#%d - Conectando-se ao peer %s"
  1012. #: src/message.h:69
  1013. #, c-format
  1014. msgid ""
  1015. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1016. "blockIndex=%d"
  1017. msgstr ""
  1018. "CUID#%d - Pedaço recebido. índice=%d, início=%d, comprimento=%d, desvio=%"
  1019. "llu, índice-de-bloco=%d"
  1020. #: src/message.h:70
  1021. #, c-format
  1022. msgid "CUID#%d - Piece bitfield %s"
  1023. msgstr "CUID#%d - Bitfield da peça %s"
  1024. #: src/message.h:71
  1025. #, c-format
  1026. msgid ""
  1027. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1028. "index=%d, begin=%d, length=%d"
  1029. msgstr ""
  1030. "CUID#%d - Mensagem da peça na fila rejeitada devido engasgamento do peer. "
  1031. "índice=%d, início=%d, comprimento=%d"
  1032. #: src/message.h:72
  1033. #, c-format
  1034. msgid ""
  1035. "CUID#%d - Reject piece message in queue because cancel message received. "
  1036. "index=%d, begin=%d, length=%d"
  1037. msgstr ""
  1038. "CUID#%d - Mensagem da peça na fila rejeitada devido recebimento de uma "
  1039. "mensagem de cancelamento. índice=%d, início=%d, comprimento=%d"
  1040. #: src/message.h:73
  1041. #, c-format
  1042. msgid "CUID#%d - Exception caught while validating file integrity."
  1043. msgstr "CUID#%d - Captada exceção durante validação da integridade."
  1044. #: src/message.h:74
  1045. #, c-format
  1046. msgid "CUID#%d - Interested in the peer"
  1047. msgstr "CUID#%d - Interessado no peer"
  1048. #: src/message.h:75
  1049. #, c-format
  1050. msgid "CUID#%d - Not interested in the peer"
  1051. msgstr "CUID#%d - Não interessado no peer"
  1052. #: src/message.h:76
  1053. #, c-format
  1054. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1055. msgstr ""
  1056. "CUID#%d - Deletando abertura de requerimento índice=%d, índice-de-bloco=%d"
  1057. #: src/message.h:77
  1058. #, c-format
  1059. msgid ""
  1060. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1061. "got choked."
  1062. msgstr ""
  1063. "CUID#%d - Deletando abertura de requerimento índice=%d, índice-de-bloco=%d "
  1064. "devido afogamento do host local."
  1065. #: src/message.h:78
  1066. #, c-format
  1067. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1068. msgstr ""
  1069. "CUID#%d - Deletando abertura de requerimento índice-de-bloco=%d devido tempo "
  1070. "excedido"
  1071. #: src/message.h:79
  1072. #, c-format
  1073. msgid ""
  1074. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1075. "acquired."
  1076. msgstr ""
  1077. "CUID#%d - Deletando bertura de requerimento índice-de-bloco=%d pois o bloco "
  1078. "foi adiquirido."
  1079. #: src/message.h:80
  1080. #, c-format
  1081. msgid "CUID#%d - Fast extension enabled."
  1082. msgstr "CUID#%d - Extensão rápida habilitada."
  1083. #: src/message.h:81
  1084. #, c-format
  1085. msgid "CUID#%d - Extended Messaging enabled."
  1086. msgstr ""
  1087. #: src/message.h:82
  1088. #, c-format
  1089. msgid "CUID#%d - Exception caught while allocating file space."
  1090. msgstr "CUID#%d - Captada exceção durante alocação do espaço do arquivo."
  1091. #: src/message.h:83
  1092. #, c-format
  1093. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1094. msgstr ""
  1095. "CUID#%d - Deiposição-do-conteúdo detecteda. Usar %s como nome do arquivo."
  1096. #: src/message.h:84
  1097. #, c-format
  1098. msgid "CUID#%d - Peer %s:%d banned."
  1099. msgstr "CUID#%d - Peer %s:%d banido."
  1100. #: src/message.h:85
  1101. #, c-format
  1102. msgid "CUID#%d - Using port %d for accepting new connections"
  1103. msgstr "CUID#%d - Usando porta %d para aceitar novas conexões"
  1104. #: src/message.h:86
  1105. #, c-format
  1106. msgid "CUID#%d - An error occurred while binding port=%d"
  1107. msgstr ""
  1108. #: src/message.h:87
  1109. #, c-format
  1110. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1111. msgstr ""
  1112. #: src/message.h:88
  1113. #, c-format
  1114. msgid "CUID#%d - Error in accepting connection"
  1115. msgstr ""
  1116. #: src/message.h:89
  1117. #, c-format
  1118. msgid "CUID#%d - Error occurred while processing tracker response."
  1119. msgstr ""
  1120. #: src/message.h:90
  1121. #, c-format
  1122. msgid "CUID#%d - Cannot create tracker request."
  1123. msgstr ""
  1124. #: src/message.h:91
  1125. #, c-format
  1126. msgid "CUID#%d - Creating new tracker request command #%d"
  1127. msgstr ""
  1128. #: src/message.h:92
  1129. #, c-format
  1130. msgid "CUID#%d - The peer is DHT-enabled."
  1131. msgstr ""
  1132. #: src/message.h:94
  1133. #, c-format
  1134. msgid "Unrecognized URI or unsupported protocol: %s"
  1135. msgstr ""
  1136. #: src/message.h:95
  1137. #, c-format
  1138. msgid "Tracker returned warning message: %s"
  1139. msgstr ""
  1140. #: src/message.h:96
  1141. #, c-format
  1142. msgid "The segment file %s exists."
  1143. msgstr ""
  1144. #: src/message.h:97
  1145. #, c-format
  1146. msgid "The segment file %s does not exist."
  1147. msgstr ""
  1148. #: src/message.h:98
  1149. #, c-format
  1150. msgid "Saving the segment file %s"
  1151. msgstr ""
  1152. #: src/message.h:99
  1153. msgid "The segment file was saved successfully."
  1154. msgstr ""
  1155. #: src/message.h:100
  1156. #, c-format
  1157. msgid "Loading the segment file %s."
  1158. msgstr ""
  1159. #: src/message.h:101
  1160. msgid "The segment file was loaded successfully."
  1161. msgstr ""
  1162. #: src/message.h:102
  1163. msgid "No URI to download. Download aborted."
  1164. msgstr ""
  1165. #: src/message.h:103
  1166. #, c-format
  1167. msgid ""
  1168. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1169. "canceled in order to prevent your file from being truncated to 0. If you are "
  1170. "sure to download the file all over again, then delete it or add --allow-"
  1171. "overwrite=true option and restart aria2."
  1172. msgstr ""
  1173. #: src/message.h:104
  1174. #, c-format
  1175. msgid "Allocating file %s, %s bytes"
  1176. msgstr ""
  1177. #: src/message.h:105
  1178. msgid "File not found"
  1179. msgstr ""
  1180. #: src/message.h:106
  1181. msgid "Not a directory"
  1182. msgstr ""
  1183. #: src/message.h:107
  1184. #, c-format
  1185. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1186. msgstr ""
  1187. #: src/message.h:108
  1188. #, c-format
  1189. msgid "Writing file %s"
  1190. msgstr ""
  1191. #: src/message.h:109
  1192. msgid "No peer list received."
  1193. msgstr ""
  1194. #: src/message.h:110
  1195. #, c-format
  1196. msgid "Adding peer %s:%d"
  1197. msgstr ""
  1198. #: src/message.h:111
  1199. #, c-format
  1200. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1201. msgstr ""
  1202. #: src/message.h:112
  1203. msgid "Download of selected files was complete."
  1204. msgstr ""
  1205. #: src/message.h:113
  1206. msgid "The download was complete."
  1207. msgstr ""
  1208. #: src/message.h:114
  1209. #, c-format
  1210. msgid "Removed %d have entries."
  1211. msgstr ""
  1212. #: src/message.h:115
  1213. #, c-format
  1214. msgid "Validating file %s"
  1215. msgstr ""
  1216. #: src/message.h:116
  1217. #, c-format
  1218. msgid "%d seconds to allocate %s byte(s)"
  1219. msgstr ""
  1220. #: src/message.h:117
  1221. #, c-format
  1222. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1223. msgstr ""
  1224. #: src/message.h:118
  1225. #, c-format
  1226. msgid "Metalink: Queueing %s for download."
  1227. msgstr ""
  1228. #: src/message.h:119
  1229. #, c-format
  1230. msgid "Download complete: %s"
  1231. msgstr ""
  1232. #: src/message.h:120
  1233. msgid "Seeding is over."
  1234. msgstr ""
  1235. #: src/message.h:121
  1236. #, c-format
  1237. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1238. msgstr ""
  1239. #: src/message.h:122
  1240. msgid "No chunk to verify."
  1241. msgstr ""
  1242. #: src/message.h:123
  1243. #, c-format
  1244. msgid "Good chunk checksum. hash=%s"
  1245. msgstr ""
  1246. #: src/message.h:124
  1247. #, c-format
  1248. msgid "Failed to load cookies from %s"
  1249. msgstr ""
  1250. #: src/message.h:125
  1251. #, c-format
  1252. msgid ""
  1253. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1254. "support disabled."
  1255. msgstr ""
  1256. #: src/message.h:126
  1257. msgid "Logging started."
  1258. msgstr ""
  1259. #: src/message.h:127
  1260. msgid "Specify at least one URL."
  1261. msgstr ""
  1262. #: src/message.h:128
  1263. msgid "daemon failed."
  1264. msgstr ""
  1265. #: src/message.h:129
  1266. #, c-format
  1267. msgid "Verification finished successfully. file=%s"
  1268. msgstr ""
  1269. #: src/message.h:130
  1270. #, c-format
  1271. msgid "Checksum error detected. file=%s"
  1272. msgstr ""
  1273. #: src/message.h:131
  1274. #, c-format
  1275. msgid "Incomplete range specified. %s"
  1276. msgstr ""
  1277. #: src/message.h:132
  1278. #, c-format
  1279. msgid "Failed to convert string into value: %s"
  1280. msgstr ""
  1281. #: src/message.h:133
  1282. msgid "Resource not found"
  1283. msgstr ""
  1284. #: src/message.h:134
  1285. #, c-format
  1286. msgid "File already exists. Renamed to %s."
  1287. msgstr ""
  1288. #: src/message.h:135
  1289. msgid "Cannot parse metalink XML file. XML may be malformed."
  1290. msgstr ""
  1291. #: src/message.h:136
  1292. #, c-format
  1293. msgid "Too small payload size for %s, size=%d."
  1294. msgstr ""
  1295. #: src/message.h:137
  1296. #, c-format
  1297. msgid ""
  1298. "Removed the defunct control file %s because the download file %s doesn't "
  1299. "exist."
  1300. msgstr ""
  1301. #: src/message.h:138
  1302. #, c-format
  1303. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1304. msgstr ""
  1305. #: src/message.h:139
  1306. #, c-format
  1307. msgid "Missing %s in torrent metainfo."
  1308. msgstr ""
  1309. #: src/message.h:140
  1310. msgid "Tracker returned null data."
  1311. msgstr ""
  1312. #: src/message.h:141
  1313. msgid "Windows socket library initialization failed"
  1314. msgstr ""
  1315. #: src/message.h:142
  1316. #, c-format
  1317. msgid "%d second(s) has passed. Stopping application."
  1318. msgstr ""
  1319. #: src/message.h:143
  1320. #, c-format
  1321. msgid ""
  1322. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1323. msgstr ""
  1324. #: src/message.h:145
  1325. #, c-format
  1326. msgid "Saving signature as %s failed. Maybe file already exists."
  1327. msgstr ""
  1328. #: src/message.h:148
  1329. #, c-format
  1330. msgid "Failed to open ServerStat file %s for read."
  1331. msgstr ""
  1332. #: src/message.h:149
  1333. #, c-format
  1334. msgid "ServerStat file %s loaded successfully."
  1335. msgstr ""
  1336. #: src/message.h:150
  1337. #, c-format
  1338. msgid "Failed to read ServerStat from %s."
  1339. msgstr ""
  1340. #: src/message.h:153
  1341. #, c-format
  1342. msgid "Failed to open ServerStat file %s for write."
  1343. msgstr ""
  1344. #: src/message.h:154
  1345. #, c-format
  1346. msgid "ServerStat file %s saved successfully."
  1347. msgstr ""
  1348. #: src/message.h:155
  1349. #, c-format
  1350. msgid "Failed to write ServerStat to %s."
  1351. msgstr ""
  1352. #: src/message.h:158
  1353. #, c-format
  1354. msgid "Failed to establish connection, cause: %s"
  1355. msgstr ""
  1356. #: src/message.h:159
  1357. #, c-format
  1358. msgid "Network problem has occurred. cause:%s"
  1359. msgstr ""
  1360. #: src/message.h:161
  1361. #, c-format
  1362. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1363. msgstr ""
  1364. #: src/message.h:163
  1365. #, c-format
  1366. msgid "Certificate verification failed. Cause: %s"
  1367. msgstr ""
  1368. #: src/message.h:164
  1369. msgid "No certificate found."
  1370. msgstr ""
  1371. #: src/message.h:165
  1372. msgid "Hostname not match."
  1373. msgstr ""
  1374. #: src/message.h:166
  1375. msgid "No files to download."
  1376. msgstr ""
  1377. #: src/message.h:168
  1378. msgid ""
  1379. "You may encounter the certificate verification error with HTTPS server. See "
  1380. "--ca-certificate and --check-certificate option."
  1381. msgstr ""
  1382. #: src/message.h:170
  1383. #, c-format
  1384. msgid "Printing the contents of file '%s'..."
  1385. msgstr ""
  1386. #: src/message.h:171
  1387. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1388. msgstr ""
  1389. #: src/message.h:174
  1390. msgid "Timeout."
  1391. msgstr ""
  1392. #: src/message.h:175
  1393. msgid "Invalid chunk size."
  1394. msgstr ""
  1395. #: src/message.h:176
  1396. #, c-format
  1397. msgid "Too large chunk. size=%d"
  1398. msgstr ""
  1399. #: src/message.h:177
  1400. msgid "Invalid header."
  1401. msgstr ""
  1402. #: src/message.h:178
  1403. msgid "Invalid response."
  1404. msgstr ""
  1405. #: src/message.h:179
  1406. msgid "No header found."
  1407. msgstr ""
  1408. #: src/message.h:180
  1409. msgid "No status header."
  1410. msgstr ""
  1411. #: src/message.h:181
  1412. msgid "Proxy connection failed."
  1413. msgstr ""
  1414. #: src/message.h:182
  1415. msgid "Connection failed."
  1416. msgstr ""
  1417. #: src/message.h:183
  1418. #, c-format
  1419. msgid ""
  1420. "The requested filename and the previously registered one are not same. "
  1421. "Expected:%s Actual:%s"
  1422. msgstr ""
  1423. #: src/message.h:184
  1424. #, c-format
  1425. msgid "The response status is not successful. status=%d"
  1426. msgstr ""
  1427. #: src/message.h:185
  1428. #, c-format
  1429. msgid "Too large file size. size=%s"
  1430. msgstr ""
  1431. #: src/message.h:186
  1432. #, c-format
  1433. msgid "Transfer encoding %s is not supported."
  1434. msgstr ""
  1435. #: src/message.h:187
  1436. #, c-format
  1437. msgid "SSL initialization failed: %s"
  1438. msgstr ""
  1439. #: src/message.h:188
  1440. msgid "SSL I/O error"
  1441. msgstr ""
  1442. #: src/message.h:189
  1443. msgid "SSL protocol error"
  1444. msgstr ""
  1445. #: src/message.h:190
  1446. #, c-format
  1447. msgid "SSL unknown error %d"
  1448. msgstr ""
  1449. #: src/message.h:191
  1450. #, c-format
  1451. msgid "SSL initialization failed: OpenSSL connect error %d"
  1452. msgstr ""
  1453. #: src/message.h:192
  1454. #, c-format
  1455. msgid "Size mismatch Expected:%s Actual:%s"
  1456. msgstr ""
  1457. #: src/message.h:193
  1458. msgid "Authorization failed."
  1459. msgstr ""
  1460. #: src/message.h:194
  1461. msgid "Got EOF from the server."
  1462. msgstr ""
  1463. #: src/message.h:195
  1464. msgid "Got EOF from peer."
  1465. msgstr ""
  1466. #: src/message.h:196
  1467. msgid "Malformed meta info."
  1468. msgstr ""
  1469. #: src/message.h:198
  1470. #, c-format
  1471. msgid "Failed to open the file %s, cause: %s"
  1472. msgstr ""
  1473. #: src/message.h:199
  1474. #, c-format
  1475. msgid "Failed to write into the file %s, cause: %s"
  1476. msgstr ""
  1477. #: src/message.h:200
  1478. #, c-format
  1479. msgid "Failed to read from the file %s, cause: %s"
  1480. msgstr ""
  1481. #: src/message.h:201
  1482. msgid "Failed to read data from disk."
  1483. msgstr ""
  1484. #: src/message.h:202
  1485. #, c-format
  1486. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1487. msgstr ""
  1488. #: src/message.h:203
  1489. #, c-format
  1490. msgid "Failed to seek the file %s, cause: %s"
  1491. msgstr ""
  1492. #: src/message.h:204
  1493. #, c-format
  1494. msgid "The offset is out of range, offset=%s"
  1495. msgstr ""
  1496. #: src/message.h:205
  1497. #, c-format
  1498. msgid "%s is not a directory."
  1499. msgstr ""
  1500. #: src/message.h:206
  1501. #, c-format
  1502. msgid "Failed to make the directory %s, cause: %s"
  1503. msgstr ""
  1504. #: src/message.h:207
  1505. #, c-format
  1506. msgid "Failed to open the segment file %s, cause: %s"
  1507. msgstr ""
  1508. #: src/message.h:208
  1509. #, c-format
  1510. msgid "Failed to write into the segment file %s, cause: %s"
  1511. msgstr ""
  1512. #: src/message.h:209
  1513. #, c-format
  1514. msgid "Failed to read from the segment file %s, cause: %s"
  1515. msgstr ""
  1516. #: src/message.h:211
  1517. #, c-format
  1518. msgid "Failed to open a socket, cause: %s"
  1519. msgstr ""
  1520. #: src/message.h:212
  1521. #, c-format
  1522. msgid "Failed to set a socket option, cause: %s"
  1523. msgstr ""
  1524. #: src/message.h:213
  1525. #, c-format
  1526. msgid "Failed to set a socket as blocking, cause: %s"
  1527. msgstr ""
  1528. #: src/message.h:214
  1529. #, c-format
  1530. msgid "Failed to set a socket as non-blocking, cause: %s"
  1531. msgstr ""
  1532. #: src/message.h:215
  1533. #, c-format
  1534. msgid "Failed to bind a socket, cause: %s"
  1535. msgstr ""
  1536. #: src/message.h:216
  1537. #, c-format
  1538. msgid "Failed to listen to a socket, cause: %s"
  1539. msgstr ""
  1540. #: src/message.h:217
  1541. #, c-format
  1542. msgid "Failed to accept a peer connection, cause: %s"
  1543. msgstr ""
  1544. #: src/message.h:218
  1545. #, c-format
  1546. msgid "Failed to get the name of socket, cause: %s"
  1547. msgstr ""
  1548. #: src/message.h:219
  1549. #, c-format
  1550. msgid "Failed to get the name of connected peer, cause: %s"
  1551. msgstr ""
  1552. #: src/message.h:220
  1553. #, c-format
  1554. msgid "Failed to resolve the hostname %s, cause: %s"
  1555. msgstr ""
  1556. #: src/message.h:221
  1557. #, c-format
  1558. msgid "Failed to connect to the host %s, cause: %s"
  1559. msgstr ""
  1560. #: src/message.h:222
  1561. #, c-format
  1562. msgid "Failed to check whether the socket is writable, cause: %s"
  1563. msgstr ""
  1564. #: src/message.h:223
  1565. #, c-format
  1566. msgid "Failed to check whether the socket is readable, cause: %s"
  1567. msgstr ""
  1568. #: src/message.h:224
  1569. #, c-format
  1570. msgid "Failed to send data, cause: %s"
  1571. msgstr ""
  1572. #: src/message.h:225
  1573. #, c-format
  1574. msgid "Failed to receive data, cause: %s"
  1575. msgstr ""
  1576. #: src/message.h:226
  1577. #, c-format
  1578. msgid "Failed to peek data, cause: %s"
  1579. msgstr ""
  1580. #: src/message.h:227
  1581. #, c-format
  1582. msgid "Unknown socket error %d (0x%x)"
  1583. msgstr ""
  1584. #: src/message.h:228
  1585. #, c-format
  1586. msgid "File %s exists, but %s does not exist."
  1587. msgstr ""
  1588. #: src/message.h:229
  1589. #, c-format
  1590. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1591. msgstr ""
  1592. #: src/message.h:230
  1593. #, c-format
  1594. msgid "Invalid ID=%d for %s. It should be %d."
  1595. msgstr ""
  1596. #: src/message.h:231
  1597. #, c-format
  1598. msgid ""
  1599. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1600. "s, actualHash=%s"
  1601. msgstr ""
  1602. #: src/message.h:232
  1603. msgid "Download aborted."
  1604. msgstr ""
  1605. #: src/message.h:233
  1606. #, c-format
  1607. msgid "File %s is being downloaded by other command."
  1608. msgstr ""
  1609. #: src/message.h:234
  1610. msgid "Insufficient checksums."
  1611. msgstr ""
  1612. #: src/message.h:235
  1613. #, c-format
  1614. msgid "Tracker returned failure reason: %s"
  1615. msgstr ""
  1616. #: src/message.h:236
  1617. msgid "Flooding detected."
  1618. msgstr ""
  1619. #: src/message.h:237
  1620. #, c-format
  1621. msgid ""
  1622. "Drop connection because no request/piece messages were exchanged in a "
  1623. "certain period(%d seconds)."
  1624. msgstr ""
  1625. #: src/message.h:238
  1626. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1627. msgstr ""
  1628. #: src/message.h:239
  1629. #, c-format
  1630. msgid "No such file entry %s"
  1631. msgstr ""
  1632. #: src/message.h:240
  1633. #, c-format
  1634. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1635. msgstr ""
  1636. #: src/message.h:241
  1637. msgid "No HttpRequestEntry found."
  1638. msgstr ""
  1639. #: src/message.h:242
  1640. #, c-format
  1641. msgid "Got %d status, but no location header provided."
  1642. msgstr ""
  1643. #: src/message.h:243
  1644. #, c-format
  1645. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1646. msgstr ""
  1647. #: src/message.h:244
  1648. msgid "No file matched with your preference."
  1649. msgstr ""
  1650. #: src/message.h:245
  1651. msgid "Exception caught"
  1652. msgstr ""
  1653. #: src/message.h:246
  1654. #, c-format
  1655. msgid "Max payload length exceeded or invalid. length = %u"
  1656. msgstr ""
  1657. #: src/message.h:247
  1658. #, c-format
  1659. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1660. msgstr ""
  1661. #: src/BtSetup.cc:160
  1662. msgid "Errors occurred while binding port.\n"
  1663. msgstr ""
  1664. #: src/Util.cc:731
  1665. msgid "Files:"
  1666. msgstr ""