pl.po 61 KB

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