da.po 64 KB

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