pl.po 65 KB

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