pl.po 79 KB

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