pl.po 81 KB

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