da.po 60 KB

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