pl.po 52 KB

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