pl.po 66 KB

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