pl.po 74 KB

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