pl.po 68 KB

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