pt_BR.po 77 KB

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