sk.po 57 KB

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