pl.po 66 KB

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