pl.po 60 KB

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