sk.po 76 KB

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