pt.po 73 KB

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