pt_BR.po 81 KB

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