sk.po 60 KB

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