pt_BR.po 59 KB

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