pt_BR.po 59 KB

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