sk.po 70 KB

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