pt.po 63 KB

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