pt.po 64 KB

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