da.po 50 KB

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