da.po 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  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: 2012-10-01 23:45+0900\n"
  11. "PO-Revision-Date: 2010-11-20 12:18+0000\n"
  12. "Last-Translator: Josso <Unknown>\n"
  13. "Language-Team: Danish <da@li.org>\n"
  14. "Language: da\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2010-12-04 12:56+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:225
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr "Afslutningsprocedure i gang... Tryk Ctrl-C igen for nød-afslutning."
  24. #: src/DownloadEngine.cc:232
  25. msgid "Emergency shutdown sequence commencing..."
  26. msgstr "Nød-afslutningsprocedure i gang..."
  27. #: src/MultiUrlRequestInfo.cc:125
  28. msgid "aria2 will resume download if the transfer is restarted."
  29. msgstr "aria2 vil forsætte filhentningen hvis overførslen bliver genstartet."
  30. #: src/MultiUrlRequestInfo.cc:126
  31. msgid ""
  32. "If there are any errors, then see the log file. See '-l' option in help/man "
  33. "page for details."
  34. msgstr ""
  35. "Hvis der er nogle fejl, så kig i logfilen. Se '-l' flaget i hjælp/man siden "
  36. "for mere information."
  37. #: src/MultiUrlRequestInfo.cc:272
  38. #, c-format
  39. msgid "Serialized session to '%s' successfully."
  40. msgstr ""
  41. #: src/MultiUrlRequestInfo.cc:275
  42. #, c-format
  43. msgid "Failed to serialize session to '%s'."
  44. msgstr ""
  45. #: src/RequestGroupMan.cc:399
  46. #, c-format
  47. msgid "Download GID#%<PRId64> paused"
  48. msgstr ""
  49. #: src/RequestGroupMan.cc:445
  50. #, c-format
  51. msgid "Download GID#%<PRId64> not complete: %s"
  52. msgstr ""
  53. #: src/RequestGroupMan.cc:726
  54. msgid "Download Results:"
  55. msgstr "Overførsels resultater:"
  56. #: src/RequestGroupMan.cc:769
  57. msgid "Status Legend:"
  58. msgstr "Status forklaring:"
  59. #: src/RequestGroupMan.cc:771
  60. msgid "(OK):download completed."
  61. msgstr ""
  62. #: src/RequestGroupMan.cc:774
  63. msgid "(ERR):error occurred."
  64. msgstr ""
  65. #: src/RequestGroupMan.cc:777
  66. msgid "(INPR):download in-progress."
  67. msgstr ""
  68. #: src/RequestGroupMan.cc:780
  69. msgid "(RM):download removed."
  70. msgstr ""
  71. #: src/OptionHandler.cc:38
  72. msgid " Default: "
  73. msgstr " Standard: "
  74. #: src/OptionHandler.cc:39
  75. msgid " Tags: "
  76. msgstr " Mærker: "
  77. #: src/OptionHandler.cc:40
  78. msgid " Possible Values: "
  79. msgstr ""
  80. #: src/usage_text.h:37
  81. msgid ""
  82. " -d, --dir=DIR The directory to store the downloaded file."
  83. msgstr " -d, --dir=MAPPE Mappen hvor den hentede fil skal gemmes."
  84. #: src/usage_text.h:39
  85. msgid ""
  86. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  87. " option is used, this option is ignored."
  88. msgstr ""
  89. " -o, --out=FIL Navnet på den downloadede fil. Hvis -Z\n"
  90. " flaget er brugt, ignoreres dette flag."
  91. #: src/usage_text.h:42
  92. msgid ""
  93. " -l, --log=LOG The file name of the log file. If '-' is\n"
  94. " specified, log is written to stdout."
  95. msgstr ""
  96. " -l, --log=LOG Filnavn for logfilen. Hvis den er sat til '-'\n"
  97. " vil loggen blive skrevet til standarduddata."
  98. #: src/usage_text.h:45
  99. #, fuzzy
  100. msgid ""
  101. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  102. "will\n"
  103. " be changed to \"/\" and standard input, "
  104. "standard\n"
  105. " output and standard error will be redirected "
  106. "to\n"
  107. " \"/dev/null\"."
  108. msgstr ""
  109. " -D, --daemon Kør som baggrundsprocess. Den nuværende mappe vil\n"
  110. " blive ændret til \"/“ og standard input, "
  111. "standard\n"
  112. " output og standard error vil blive sendt til\n"
  113. " \"/dev/null\"."
  114. #: src/usage_text.h:50
  115. msgid ""
  116. " -s, --split=N Download a file using N connections. If more\n"
  117. " than N URLs are given, first N URLs are used "
  118. "and\n"
  119. " remaining URLs are used for backup. If less "
  120. "than\n"
  121. " N URLs are given, those URLs are used more "
  122. "than\n"
  123. " once so that N connections total are made\n"
  124. " simultaneously. The number of connections to "
  125. "the\n"
  126. " same host is restricted by\n"
  127. " --max-connection-per-server option. See also\n"
  128. " --min-split-size option."
  129. msgstr ""
  130. #: src/usage_text.h:60
  131. #, fuzzy
  132. msgid ""
  133. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  134. " With SEC > 0, aria2 will retry download when "
  135. "the\n"
  136. " HTTP server returns 503 response."
  137. msgstr ""
  138. " --retry-wait=SEK Antal sekunder før der bliver forsøgt igen, efter\n"
  139. " en fejl er opstået."
  140. #: src/usage_text.h:64
  141. msgid " -t, --timeout=SEC Set timeout in seconds."
  142. msgstr " -t, --timeout=SEC Sæt timeout i sekunder."
  143. #: src/usage_text.h:66
  144. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  145. msgstr " -m, --max-tries=N Sæt antal forsøg. 0 betyder ubegrænset."
  146. #: src/usage_text.h:68
  147. msgid ""
  148. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  149. " previously defined proxy, use \"\".\n"
  150. " See also --all-proxy option.\n"
  151. " This affects all URLs."
  152. msgstr ""
  153. " --http-proxy=PROXY Brug denne proxy server til HTTP. For at slette\n"
  154. " tidligere definerede proxy’er, brug \"\".\n"
  155. " Se også --all-proxy flaget.\n"
  156. " Dette påvirker alle URLs."
  157. #: src/usage_text.h:73
  158. msgid ""
  159. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  160. " previously defined proxy, use \"\".\n"
  161. " See also --all-proxy option.\n"
  162. " This affects all URLs."
  163. msgstr ""
  164. " --https-proxy=PROXY Brug denne proxy server til HTTPS. For at slette\n"
  165. " tidligere definerede proxy’er, brug \"\".\n"
  166. " Se også --all-proxy flaget.\n"
  167. " Dette påvirker alle URLs."
  168. #: src/usage_text.h:78
  169. msgid ""
  170. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  171. "previously\n"
  172. " defined proxy, use \"\".\n"
  173. " See also --all-proxy option.\n"
  174. " This affects all URLs."
  175. msgstr ""
  176. " --ftp-proxy=PROXY Brug denne proxy server til FTP. For at slette\n"
  177. " tidligere definerede proxy’er, brug \"\".\n"
  178. " Se også --all-proxy flaget.\n"
  179. " Dette påvirker alle URLs."
  180. #: src/usage_text.h:83
  181. msgid ""
  182. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  183. "erase\n"
  184. " previously defined proxy, use \"\".\n"
  185. " You can override this setting and specify a\n"
  186. " proxy server for a particular protocol using\n"
  187. " --http-proxy, --https-proxy and --ftp-proxy\n"
  188. " options.\n"
  189. " This affects all URLs."
  190. msgstr ""
  191. " --all-proxy=PROXY Brug denne proxy server til alle protokoller. For at "
  192. "slette\n"
  193. " tidligere definerede proxy’er, brug \"\".\n"
  194. " Du kan overskrive denne indstilling for\n"
  195. " en enkelt protokol, ved at bruge\n"
  196. " --http-proxy, --https-proxy og --ftp-proxy "
  197. "flagene.\n"
  198. " Dette påvirker alle URLs."
  199. #: src/usage_text.h:91
  200. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  201. msgstr ""
  202. " --http-user=BRUGER Sæt HTTP bruger. Dette påvirker alle URLs."
  203. #: src/usage_text.h:93
  204. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  205. msgstr ""
  206. " --http-passwd=KODE Sæt HTTP kodeord. Dette påvirker alle URLs."
  207. #: src/usage_text.h:95
  208. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  209. msgstr ""
  210. " --proxy-method=METHOD Sæt metoden der skal benyttes i en proxy forespørgsel."
  211. #: src/usage_text.h:97
  212. msgid " --referer=REFERER Set Referer. This affects all URLs."
  213. msgstr ""
  214. " --referer=HENVISER Sæt henviser. Dette vil påvirke alle URLs."
  215. #: src/usage_text.h:99
  216. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  217. msgstr " --ftp-user=USER Sæt FTP bruger. Dette påvirker all URLs."
  218. #: src/usage_text.h:101
  219. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  220. msgstr " --ftp-passwd=PASSWD Sæt FTP password. Dette påvirker all URLs."
  221. #: src/usage_text.h:103
  222. msgid " --ftp-type=TYPE Set FTP transfer type."
  223. msgstr " --ftp-type=TYPE Set FTP overførslestype."
  224. #: src/usage_text.h:105
  225. msgid ""
  226. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  227. "given,\n"
  228. " the active mode will be used."
  229. msgstr ""
  230. " -p, --ftp-pasv[=true|false] Brug den passive tilstand til FTP. Hvis false "
  231. "(falsk) gives,\n"
  232. " vil aktive tilstand bruges."
  233. #: src/usage_text.h:108
  234. msgid ""
  235. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  236. "than\n"
  237. " or equal to this value(bytes per sec).\n"
  238. " 0 means aria2 does not have a lowest speed "
  239. "limit.\n"
  240. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  241. " This option does not affect BitTorrent "
  242. "downloads."
  243. msgstr ""
  244. " --lowest-speed-limit=HASTIGHED Luk forbindelsen hvis download hastigheden "
  245. "er lavere\n"
  246. " eller lig med denne værdig (bytes i "
  247. "sekundet).\n"
  248. " 0 betyder at aria2 ikke har en laveste "
  249. "hastighedsgrænse.\n"
  250. " Du kan tilføje K eller M (1K = 1024, 1M = "
  251. "1024K).\n"
  252. " Dette flag påvirker ikke BitTorrent downloads."
  253. #: src/usage_text.h:114
  254. msgid ""
  255. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  256. "sec.\n"
  257. " 0 means unrestricted.\n"
  258. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  259. " To limit the download speed per download, use\n"
  260. " --max-download-limit option."
  261. msgstr ""
  262. " --max-overall-download-limit=HASTIGHED Sæt max download hastighed i bytes/"
  263. "sek.\n"
  264. " 0 betyder ubegrænset.\n"
  265. " Du kan tilføje K eller M(1K = 1024, 1M = "
  266. "1024K).\n"
  267. " For at begrænse hastigheden per download, "
  268. "brug\n"
  269. " --max-download-limit flaget."
  270. #: src/usage_text.h:120
  271. msgid ""
  272. " --max-download-limit=SPEED Set max download speed per each download in\n"
  273. " bytes/sec. 0 means unrestricted.\n"
  274. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  275. " To limit the overall download speed, use\n"
  276. " --max-overall-download-limit option."
  277. msgstr ""
  278. " --max-download-limit=HASTIGHED Sæt max download hastigheden for hvert "
  279. "enkelt download\n"
  280. " i bytes/sek. 0 betyder ubegrænset.\n"
  281. " Du kan tilføje K eller M(1K = 1024, 1M = "
  282. "1024K).\n"
  283. " For at begrænse den samlede download "
  284. "hastighed, brug\n"
  285. " --max-overall-download-limit flaget."
  286. #: src/usage_text.h:126
  287. msgid ""
  288. " --file-allocation=METHOD Specify file allocation method.\n"
  289. " 'none' doesn't pre-allocate file space. "
  290. "'prealloc'\n"
  291. " pre-allocates file space before download "
  292. "begins.\n"
  293. " This may take some time depending on the size "
  294. "of\n"
  295. " the file.\n"
  296. " If you are using newer file systems such as "
  297. "ext4\n"
  298. " (with extents support), btrfs, xfs or NTFS\n"
  299. " (MinGW build only), 'falloc' is your best\n"
  300. " choice. It allocates large(few GiB) files\n"
  301. " almost instantly. Don't use 'falloc' with "
  302. "legacy\n"
  303. " file systems such as ext3 and FAT32 because "
  304. "it\n"
  305. " takes almost same time as 'prealloc' and it\n"
  306. " blocks aria2 entirely until allocation "
  307. "finishes.\n"
  308. " 'falloc' may not be available if your system\n"
  309. " doesn't have posix_fallocate() function.\n"
  310. " 'trunc' uses ftruncate() system call or\n"
  311. " platform-specific counterpart to truncate a "
  312. "file\n"
  313. " to a specified length."
  314. msgstr ""
  315. #: src/usage_text.h:145
  316. msgid ""
  317. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  318. " size is smaller than SIZE.\n"
  319. " You can append K or M(1K = 1024, 1M = 1024K)."
  320. msgstr ""
  321. " --no-file-allocation-limit=STR Ingen filallokering vil blive lavet for "
  322. "filer\n"
  323. " hvis størrelse er mindre end STR.\n"
  324. " Du kan tilføje K eller M (1K = 1024, 1M = "
  325. "1024K)."
  326. #: src/usage_text.h:149
  327. msgid ""
  328. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  329. "while\n"
  330. " allocating files.\n"
  331. " Turn off if you encounter any error"
  332. msgstr ""
  333. " --enable-direct-io[=true|false] Aktiver direkte I/O, hvilket reducerer cpu-"
  334. "forbruget under\n"
  335. " allokering af filer.\n"
  336. " Slå det fra, hvis du oplever nogle fejl."
  337. #: src/usage_text.h:153
  338. #, fuzzy
  339. msgid ""
  340. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  341. " corresponding control file doesn't exist. "
  342. "See\n"
  343. " also --auto-file-renaming option."
  344. msgstr ""
  345. " --allow-overwrite=true|false Genstart download fra bunden hvis den\n"
  346. " tilhørende kontrolfil ikke eksistere. Se også\n"
  347. " --auto-file-renaming flaget."
  348. #: src/usage_text.h:157
  349. msgid ""
  350. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  351. " download when a piece length is different "
  352. "from\n"
  353. " one in a control file. If true is given, you "
  354. "can\n"
  355. " proceed but some download progress will be "
  356. "lost."
  357. msgstr ""
  358. #: src/usage_text.h:162
  359. msgid ""
  360. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  361. "sequentially\n"
  362. " and download each URI in a separate session, "
  363. "like\n"
  364. " the usual command-line download utilities."
  365. msgstr ""
  366. #: src/usage_text.h:166
  367. msgid ""
  368. " --auto-file-renaming[=true|false] Rename file name if the same file "
  369. "already\n"
  370. " exists. This option works only in http(s)/ftp\n"
  371. " download.\n"
  372. " The new file name has a dot and a number"
  373. "(1..9999)\n"
  374. " appended."
  375. msgstr ""
  376. " --auto-file-renaming[=true|false] Omdøber filen, hvis en fil med samme navn "
  377. "allerede\n"
  378. " eksistere. Denne funktionvirker kun med http"
  379. "(s)/ftp\n"
  380. " downloads.\n"
  381. " Den nye fil vil få et punktum samt et tal "
  382. "(1..9999)\n"
  383. " tilføjet."
  384. #: src/usage_text.h:172
  385. msgid ""
  386. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  387. " You can specify set of parts:\n"
  388. " http://{sv1,sv2,sv3}/foo.iso\n"
  389. " Also you can specify numeric sequences with "
  390. "step\n"
  391. " counter:\n"
  392. " http://host/image[000-100:2].img\n"
  393. " A step counter can be omitted.\n"
  394. " If all URIs do not point to the same file, "
  395. "such\n"
  396. " as the second example above, -Z option is\n"
  397. " required."
  398. msgstr ""
  399. #: src/usage_text.h:183
  400. msgid ""
  401. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  402. msgstr ""
  403. " --enable-http-keep-alive[=true|false] Aktiver HTTP/1.1 vedvarende "
  404. "forbindelse."
  405. #: src/usage_text.h:185
  406. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  407. msgstr ""
  408. #: src/usage_text.h:187
  409. msgid ""
  410. " -V, --check-integrity[=true|false] Check file integrity by validating "
  411. "piece\n"
  412. " hashes or a hash of entire file. This option "
  413. "has\n"
  414. " effect only in BitTorrent, Metalink downloads\n"
  415. " with checksums or HTTP(S)/FTP downloads with\n"
  416. " --checksum option. If piece hashes are "
  417. "provided,\n"
  418. " this option can detect damaged portions of a "
  419. "file\n"
  420. " and re-download them. If a hash of entire file "
  421. "is\n"
  422. " provided, hash check is only done when file "
  423. "has\n"
  424. " been already download. This is determined by "
  425. "file\n"
  426. " length. If hash check fails, file is\n"
  427. " re-downloaded from scratch. If both piece "
  428. "hashes\n"
  429. " and a hash of entire file are provided, only\n"
  430. " piece hashes are used."
  431. msgstr ""
  432. #: src/usage_text.h:201
  433. msgid ""
  434. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  435. " --check-integrity option and file is "
  436. "complete,\n"
  437. " continue to seed file. If you want to check "
  438. "file\n"
  439. " and download it only when it is damaged or\n"
  440. " incomplete, set this option to false.\n"
  441. " This option has effect only on BitTorrent\n"
  442. " download."
  443. msgstr ""
  444. #: src/usage_text.h:209
  445. #, fuzzy
  446. msgid ""
  447. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  448. "calculating\n"
  449. " checksum while downloading a file if chunk\n"
  450. " checksums are provided."
  451. msgstr ""
  452. " --enable-direct-io[=true|false] Aktiver direkte I/O, hvilket reducerer cpu-"
  453. "forbruget under\n"
  454. " allokering af filer.\n"
  455. " Slå det fra, hvis du oplever nogle fejl."
  456. #: src/usage_text.h:213
  457. #, fuzzy
  458. msgid ""
  459. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  460. " file. Use this option to resume a download\n"
  461. " started by a web browser or another program\n"
  462. " which downloads files sequentially from the\n"
  463. " beginning. Currently this option is only\n"
  464. " applicable to http(s)/ftp downloads."
  465. msgstr ""
  466. " -c, --continue Fortsæt med at downloade en delvist hentet\n"
  467. " fil. Brug dette flag til at genoptage et "
  468. "download\n"
  469. " startet af en web browser eller et andet "
  470. "program,\n"
  471. " som downloader filer fortløbende fra\n"
  472. " starten. Denne mulighed er virker kun\n"
  473. " til http(s)/ftp forbindelser."
  474. #: src/usage_text.h:220
  475. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  476. msgstr ""
  477. #: src/usage_text.h:222
  478. #, fuzzy
  479. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  480. msgstr " -n, --no-netrc Deaktivere netrc understøttelse."
  481. #: src/usage_text.h:224
  482. msgid ""
  483. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  484. " multiple URIs for a single entity: separate\n"
  485. " URIs on a single line using the TAB "
  486. "character.\n"
  487. " Reads input from stdin when '-' is specified.\n"
  488. " Additionally, options can be specified after "
  489. "each\n"
  490. " line of URI. This optional line must start "
  491. "with\n"
  492. " one or more white spaces and have one option "
  493. "per\n"
  494. " single line. See INPUT FILE section of man "
  495. "page\n"
  496. " for details. See also --deferred-input option."
  497. msgstr ""
  498. #: src/usage_text.h:234
  499. #, fuzzy
  500. msgid ""
  501. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  502. "for\n"
  503. " every static (HTTP/FTP) URL, torrent and "
  504. "metalink.\n"
  505. " See also --split option."
  506. msgstr ""
  507. " -j, --max-concurrent-downloads=N Sæt maximum antal af parallelle downloads "
  508. "for\n"
  509. " hver statisk (HTTP/FTP) URL, torrent og "
  510. "metalink.\n"
  511. " Se også -s og -C flagene."
  512. #: src/usage_text.h:238
  513. msgid ""
  514. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  515. "format\n"
  516. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  517. msgstr ""
  518. " --load-cookies=FIL Indlæs cookies fra FIL, som bruger Firefox3’s format\n"
  519. " eller Mozilla/Firefox(1.x/2.x)/Netscape "
  520. "formatet."
  521. #: src/usage_text.h:241
  522. msgid ""
  523. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  524. "x)/\n"
  525. " Netscape format. If FILE already exists, it "
  526. "is\n"
  527. " overwritten. Session Cookies are also saved "
  528. "and\n"
  529. " their expiry values are treated as 0."
  530. msgstr ""
  531. " --save-cookies=FIL Gem cookies til FIL i Mozilla/Firefox(1.x/2.x)/\n"
  532. " Netscape formatet. Hvis FIL allerede "
  533. "eksistere, bliver den\n"
  534. " overskrevet. Session cookies er også gemt og\n"
  535. " deres udløbsdato bliver behandloet som 0."
  536. #: src/usage_text.h:246
  537. #, fuzzy
  538. msgid ""
  539. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  540. " .metalink file and exit. More detailed\n"
  541. " information will be listed in case of torrent\n"
  542. " file."
  543. msgstr ""
  544. " -S, --show-files Viser en liste af filer i .torrent eller .metalink-filer.\n"
  545. " Mere detaljerede informationer vil blive "
  546. "vidst\n"
  547. " af torrent filer."
  548. #: src/usage_text.h:251
  549. msgid ""
  550. " --select-file=INDEX... Set file to download by specifying its index.\n"
  551. " You can find the file index using the\n"
  552. " --show-files option. Multiple indexes can be\n"
  553. " specified by using ',', for example: \"3,6\".\n"
  554. " You can also use '-' to specify a range: "
  555. "\"1-5\".\n"
  556. " ',' and '-' can be used together.\n"
  557. " When used with the -M option, index may vary\n"
  558. " depending on the query(see --metalink-* "
  559. "options)."
  560. msgstr ""
  561. #: src/usage_text.h:260
  562. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  563. msgstr " -T, --torrent-file=TORRENT_FIL Stien til .torrent-filen."
  564. #: src/usage_text.h:262
  565. msgid ""
  566. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  567. " whose suffix is .torrent or content type is\n"
  568. " application/x-bittorrent is downloaded, aria2\n"
  569. " parses it as a torrent file and downloads "
  570. "files\n"
  571. " mentioned in it.\n"
  572. " If mem is specified, a torrent file is not\n"
  573. " written to the disk, but is just kept in "
  574. "memory.\n"
  575. " If false is specified, the action mentioned "
  576. "above\n"
  577. " is not taken."
  578. msgstr ""
  579. #: src/usage_text.h:272
  580. msgid ""
  581. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  582. " Multiple ports can be specified by using ',',\n"
  583. " for example: \"6881,6885\". You can also use "
  584. "'-'\n"
  585. " to specify a range: \"6881-6999\". ',' and '-' "
  586. "can\n"
  587. " be used together."
  588. msgstr ""
  589. " --listen-port=PORT… Sæt TCP port-nummeret for BitTorrent downloads.\n"
  590. " Flere porte kan bruges ved at adskille dem med "
  591. "',',\n"
  592. " for eksempel: \"6881,6885”. Du kan også bruge "
  593. "'-‘\n"
  594. " til at specificere en række af porte: "
  595. "\"6881-6999”. \n"
  596. " ',’ og '-‘ kan bruges sammen."
  597. #: src/usage_text.h:278
  598. msgid ""
  599. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  600. "sec.\n"
  601. " 0 means unrestricted.\n"
  602. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  603. " To limit the upload speed per torrent, use\n"
  604. " --max-upload-limit option."
  605. msgstr ""
  606. " --max-overall-upload-limit=HASTIGHED Sæt den maximale overordnede upload "
  607. "hastighed i bytes/sek.\n"
  608. " 0 betyder ubegrænset.\n"
  609. " Du kan tilføje K eller M (1K = 1024, 1M = "
  610. "1024K).\n"
  611. " For at begrænse upload hastigheden per "
  612. "torrent, brug\n"
  613. " --max-upload-limit flaget."
  614. #: src/usage_text.h:284
  615. msgid ""
  616. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  617. " bytes/sec. 0 means unrestricted.\n"
  618. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  619. " To limit the overall upload speed, use\n"
  620. " --max-overall-upload-limit option."
  621. msgstr ""
  622. " -u, --max-upload-limit=HASTIGHED Sæt max upload hastighed for hver enkelt "
  623. "torrent i\n"
  624. " bytes/sek. 0 betyder ubegrænset.\n"
  625. " Du kan tilføje K eller M (1K = 1024, 1M = "
  626. "1024K).\n"
  627. " For at begrænse den overordnede upload "
  628. "hastighed, brug\n"
  629. " --max-overall-upload-limit flaget."
  630. #: src/usage_text.h:290
  631. msgid ""
  632. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  633. " --seed-ratio option."
  634. msgstr ""
  635. " --seed-time=MINUTTER Specificer hvor lang tid der skal seedes, i minutter. "
  636. "Se også\n"
  637. " --seed-ratio flaget."
  638. #: src/usage_text.h:293
  639. msgid ""
  640. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  641. " until share ratio reaches RATIO.\n"
  642. " You are strongly encouraged to specify equals "
  643. "or\n"
  644. " more than 1.0 here. Specify 0.0 if you intend "
  645. "to\n"
  646. " do seeding regardless of share ratio.\n"
  647. " If --seed-time option is specified along with\n"
  648. " this option, seeding ends when at least one "
  649. "of\n"
  650. " the conditions is satisfied."
  651. msgstr ""
  652. #: src/usage_text.h:302
  653. msgid ""
  654. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  655. "in\n"
  656. " BitTorrent is 20 byte length. If more than 20\n"
  657. " bytes are specified, only first 20 bytes are\n"
  658. " used. If less than 20 bytes are specified, "
  659. "random\n"
  660. " byte data are added to make its length 20 "
  661. "bytes."
  662. msgstr ""
  663. #: src/usage_text.h:308
  664. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  665. msgstr ""
  666. #: src/usage_text.h:310
  667. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  668. msgstr " --enable-dht[=true|false] Aktivere IPv4 DHT funktionaliteten."
  669. #: src/usage_text.h:312
  670. msgid ""
  671. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  672. " DHT. Multiple ports can be specified by using\n"
  673. " ',', for example: \"6881,6885\". You can also\n"
  674. " use '-' to specify a range: \"6881-6999\". "
  675. "','\n"
  676. " and '-' can be used together."
  677. msgstr ""
  678. #: src/usage_text.h:318
  679. msgid ""
  680. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  681. "DHT\n"
  682. " network."
  683. msgstr ""
  684. #: src/usage_text.h:321
  685. msgid ""
  686. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  687. msgstr ""
  688. #: src/usage_text.h:323
  689. msgid ""
  690. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  691. " If several encryption methods are provided by "
  692. "a\n"
  693. " peer, aria2 chooses the lowest one which "
  694. "satisfies\n"
  695. " the given level."
  696. msgstr ""
  697. #: src/usage_text.h:328
  698. msgid ""
  699. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  700. "and\n"
  701. " establish connection with legacy BitTorrent\n"
  702. " handshake. Thus aria2 always uses Obfuscation\n"
  703. " handshake."
  704. msgstr ""
  705. #: src/usage_text.h:333
  706. msgid ""
  707. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  708. " torrent is lower than SPEED, aria2 "
  709. "temporarily\n"
  710. " increases the number of peers to try for more\n"
  711. " download speed. Configuring this option with "
  712. "your\n"
  713. " preferred download speed can increase your\n"
  714. " download speed in some cases.\n"
  715. " You can append K or M(1K = 1024, 1M = 1024K)."
  716. msgstr ""
  717. #: src/usage_text.h:341
  718. msgid ""
  719. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  720. "each\n"
  721. " BitTorrent download."
  722. msgstr ""
  723. #: src/usage_text.h:344
  724. msgid ""
  725. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  726. " verifying piece hashes."
  727. msgstr ""
  728. #: src/usage_text.h:347
  729. msgid ""
  730. " --bt-max-peers=NUM Specify the maximum number of peers per "
  731. "torrent.\n"
  732. " 0 means unlimited.\n"
  733. " See also --bt-request-peer-speed-limit option."
  734. msgstr ""
  735. #: src/usage_text.h:351
  736. #, fuzzy
  737. msgid ""
  738. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  739. "metalink\n"
  740. " file. Reads input from stdin when '-' is\n"
  741. " specified."
  742. msgstr ""
  743. " -S, --show-files Viser en liste af filer i .torrent eller .metalink-filer.\n"
  744. " Mere detaljerede informationer vil blive "
  745. "vidst\n"
  746. " af torrent filer."
  747. #: src/usage_text.h:355
  748. msgid ""
  749. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  750. " simultaneously. Some Metalinks regulate the\n"
  751. " number of servers to connect. aria2 strictly\n"
  752. " respects them. This means that if Metalink "
  753. "defines\n"
  754. " the maxconnections attribute lower than\n"
  755. " NUM_SERVERS, then aria2 uses the value of\n"
  756. " maxconnections attribute instead of "
  757. "NUM_SERVERS.\n"
  758. " See also -s and -j options."
  759. msgstr ""
  760. #: src/usage_text.h:364
  761. msgid " --metalink-version=VERSION The version of the file to download."
  762. msgstr ""
  763. #: src/usage_text.h:366
  764. msgid " --metalink-language=LANGUAGE The language of the file to download."
  765. msgstr ""
  766. #: src/usage_text.h:368
  767. msgid ""
  768. " --metalink-os=OS The operating system of the file to download."
  769. msgstr ""
  770. #: src/usage_text.h:370
  771. msgid ""
  772. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  773. " A comma-delimited list of locations is\n"
  774. " acceptable."
  775. msgstr ""
  776. #: src/usage_text.h:374
  777. msgid ""
  778. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  779. "'none'\n"
  780. " if you don't have any preferred protocol."
  781. msgstr ""
  782. #: src/usage_text.h:377
  783. msgid ""
  784. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  785. " whose suffix is .meta4 or .metalink, or "
  786. "content\n"
  787. " type of application/metalink4+xml or\n"
  788. " application/metalink+xml is downloaded, aria2\n"
  789. " parses it as a metalink file and downloads "
  790. "files\n"
  791. " mentioned in it.\n"
  792. " If mem is specified, a metalink file is not\n"
  793. " written to the disk, but is just kept in "
  794. "memory.\n"
  795. " If false is specified, the action mentioned "
  796. "above\n"
  797. " is not taken."
  798. msgstr ""
  799. #: src/usage_text.h:388
  800. msgid ""
  801. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  802. "several\n"
  803. " protocols are available for a mirror in a "
  804. "metalink\n"
  805. " file, aria2 uses one of them.\n"
  806. " Use --metalink-preferred-protocol option to\n"
  807. " specify the preference of protocol."
  808. msgstr ""
  809. #: src/usage_text.h:394
  810. msgid " -v, --version Print the version number and exit."
  811. msgstr ""
  812. #: src/usage_text.h:396
  813. msgid ""
  814. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  815. " The help messages are classified with tags. A "
  816. "tag\n"
  817. " starts with \"#\". For example, type \"--"
  818. "help=#http\"\n"
  819. " to get the usage for the options tagged with\n"
  820. " \"#http\". If non-tag word is given, print the "
  821. "usage\n"
  822. " for the options whose name includes that word."
  823. msgstr ""
  824. #: src/usage_text.h:403
  825. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  826. msgstr ""
  827. #: src/usage_text.h:405
  828. msgid ""
  829. " --conf-path=PATH Change the configuration file path to PATH."
  830. msgstr ""
  831. #: src/usage_text.h:407
  832. msgid ""
  833. " --stop=SEC Stop application after SEC seconds has "
  834. "passed.\n"
  835. " If 0 is given, this feature is disabled."
  836. msgstr ""
  837. #: src/usage_text.h:410
  838. msgid ""
  839. " --header=HEADER Append HEADER to HTTP request header. You can "
  840. "use\n"
  841. " this option repeatedly to specify more than "
  842. "one\n"
  843. " header:\n"
  844. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  845. "9J1\"\n"
  846. " http://host/file"
  847. msgstr ""
  848. #: src/usage_text.h:416
  849. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  850. msgstr ""
  851. #: src/usage_text.h:418
  852. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  853. msgstr ""
  854. #: src/usage_text.h:420
  855. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  856. msgstr ""
  857. #: src/usage_text.h:422
  858. msgid ""
  859. " --summary-interval=SEC Set interval to output download progress "
  860. "summary.\n"
  861. " Setting 0 suppresses the output."
  862. msgstr ""
  863. #: src/usage_text.h:425
  864. msgid " --log-level=LEVEL Set log level to output."
  865. msgstr ""
  866. #: src/usage_text.h:427
  867. msgid ""
  868. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  869. "the\n"
  870. " remote HTTP/FTP server and if it is "
  871. "available,\n"
  872. " apply it to the local file."
  873. msgstr ""
  874. #: src/usage_text.h:431
  875. msgid ""
  876. " --connect-timeout=SEC Set the connect timeout in seconds to "
  877. "establish\n"
  878. " connection to HTTP/FTP/proxy server. After "
  879. "the\n"
  880. " connection is established, this option makes "
  881. "no\n"
  882. " effect and --timeout option is used instead."
  883. msgstr ""
  884. #: src/usage_text.h:436
  885. msgid ""
  886. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  887. "the\n"
  888. " remote HTTP/FTP servers NUM times without "
  889. "getting\n"
  890. " a single byte, then force the download to "
  891. "fail.\n"
  892. " Specify 0 to disable this option.\n"
  893. " This options is effective only when using\n"
  894. " HTTP/FTP servers."
  895. msgstr ""
  896. #: src/usage_text.h:443
  897. msgid ""
  898. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  899. " If 'inorder' is given, URI is tried in the "
  900. "order\n"
  901. " appeared in the URI list.\n"
  902. " If 'feedback' is given, aria2 uses download "
  903. "speed\n"
  904. " observed in the previous downloads and choose\n"
  905. " fastest server in the URI list. This also\n"
  906. " effectively skips dead mirrors. The observed\n"
  907. " download speed is a part of performance "
  908. "profile\n"
  909. " of servers mentioned in --server-stat-of and\n"
  910. " --server-stat-if options.\n"
  911. " If 'adaptive' is given, selects one of the "
  912. "best\n"
  913. " mirrors for the first and reserved "
  914. "connections.\n"
  915. " For supplementary ones, it returns mirrors "
  916. "which\n"
  917. " has not been tested yet, and if each of them "
  918. "has\n"
  919. " already been tested, returns mirrors which has "
  920. "to\n"
  921. " be tested again. Otherwise, it doesn't select\n"
  922. " anymore mirrors. Like 'feedback', it uses a\n"
  923. " performance profile of servers."
  924. msgstr ""
  925. #: src/usage_text.h:462
  926. msgid ""
  927. " --server-stat-of=FILE Specify the filename to which performance "
  928. "profile\n"
  929. " of the servers is saved. You can load saved "
  930. "data\n"
  931. " using --server-stat-if option."
  932. msgstr ""
  933. #: src/usage_text.h:466
  934. msgid ""
  935. " --server-stat-if=FILE Specify the filename to load performance "
  936. "profile\n"
  937. " of the servers. The loaded data will be used "
  938. "in\n"
  939. " some URI selector such as 'feedback'.\n"
  940. " See also --uri-selector option"
  941. msgstr ""
  942. #: src/usage_text.h:471
  943. msgid ""
  944. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  945. " performance profile of the servers since the "
  946. "last\n"
  947. " contact to them."
  948. msgstr ""
  949. #: src/usage_text.h:475
  950. msgid ""
  951. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  952. "seconds.\n"
  953. " If 0 is given, a control file is not saved "
  954. "during\n"
  955. " download. aria2 saves a control file when it "
  956. "stops\n"
  957. " regardless of the value."
  958. msgstr ""
  959. #: src/usage_text.h:480
  960. msgid ""
  961. " --certificate=FILE Use the client certificate in FILE.\n"
  962. " The certificate must be in PEM format.\n"
  963. " You may use --private-key option to specify "
  964. "the\n"
  965. " private key."
  966. msgstr ""
  967. #: src/usage_text.h:485
  968. msgid ""
  969. " --private-key=FILE Use the private key in FILE.\n"
  970. " The private key must be decrypted and in PEM\n"
  971. " format. See also --certificate option."
  972. msgstr ""
  973. #: src/usage_text.h:489
  974. msgid ""
  975. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  976. "verify\n"
  977. " the peers. The certificate file must be in "
  978. "PEM\n"
  979. " format and can contain multiple CA "
  980. "certificates.\n"
  981. " Use --check-certificate option to enable\n"
  982. " verification."
  983. msgstr ""
  984. #: src/usage_text.h:495
  985. msgid ""
  986. " --check-certificate[=true|false] Verify the peer using certificates "
  987. "specified\n"
  988. " in --ca-certificate option."
  989. msgstr ""
  990. #: src/usage_text.h:498
  991. msgid ""
  992. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  993. " network address with or without CIDR block "
  994. "where\n"
  995. " proxy should not be used."
  996. msgstr ""
  997. #: src/usage_text.h:502
  998. msgid ""
  999. " --use-head[=true|false] Use HEAD method for the first request to the "
  1000. "HTTP\n"
  1001. " server."
  1002. msgstr ""
  1003. #: src/usage_text.h:505
  1004. msgid " --event-poll=POLL Specify the method for polling events."
  1005. msgstr ""
  1006. #: src/usage_text.h:507
  1007. msgid ""
  1008. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1009. "a\n"
  1010. " BitTorrent tracker. Although this function is\n"
  1011. " named 'external', it can accept any kind of "
  1012. "IP\n"
  1013. " addresses."
  1014. msgstr ""
  1015. #: src/usage_text.h:512
  1016. msgid ""
  1017. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1018. "it\n"
  1019. " is requested by the server. If false is set, "
  1020. "then\n"
  1021. " authorization header is always sent to the "
  1022. "server.\n"
  1023. " There is an exception: if username and "
  1024. "password\n"
  1025. " are embedded in URI, authorization header is\n"
  1026. " always sent to the server regardless of this\n"
  1027. " option."
  1028. msgstr ""
  1029. #: src/usage_text.h:520
  1030. msgid ""
  1031. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1032. "can\n"
  1033. " find the file index using the --show-files "
  1034. "option.\n"
  1035. " PATH is a relative path to the path specified "
  1036. "in\n"
  1037. " --dir option. You can use this option "
  1038. "multiple\n"
  1039. " times."
  1040. msgstr ""
  1041. #: src/usage_text.h:526
  1042. msgid ""
  1043. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1044. "the\n"
  1045. " remote file is available and doesn't download\n"
  1046. " data. This option has effect on HTTP/FTP "
  1047. "download.\n"
  1048. " BitTorrent downloads are canceled if true is\n"
  1049. " specified."
  1050. msgstr ""
  1051. #: src/usage_text.h:532
  1052. msgid ""
  1053. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1054. " requests. This completely overrides interval "
  1055. "value\n"
  1056. " and aria2 just uses this value and ignores "
  1057. "the\n"
  1058. " min interval and interval value in the "
  1059. "response of\n"
  1060. " tracker. If 0 is set, aria2 determines "
  1061. "interval\n"
  1062. " based on the response of tracker and the "
  1063. "download\n"
  1064. " progress."
  1065. msgstr ""
  1066. #: src/usage_text.h:540
  1067. #, fuzzy
  1068. msgid ""
  1069. " --on-download-complete=COMMAND Set the command to be executed after "
  1070. "download\n"
  1071. " completed.\n"
  1072. " See --on-download-start option for the\n"
  1073. " requirement of COMMAND.\n"
  1074. " See also --on-download-stop option."
  1075. msgstr ""
  1076. " --max-download-limit=HASTIGHED Sæt max download hastigheden for hvert "
  1077. "enkelt download\n"
  1078. " i bytes/sek. 0 betyder ubegrænset.\n"
  1079. " Du kan tilføje K eller M(1K = 1024, 1M = "
  1080. "1024K).\n"
  1081. " For at begrænse den samlede download "
  1082. "hastighed, brug\n"
  1083. " --max-overall-download-limit flaget."
  1084. #: src/usage_text.h:546
  1085. msgid ""
  1086. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1087. " got started. aria2 passes 3 arguments to "
  1088. "COMMAND:\n"
  1089. " GID, the nubmer of files and file path. See "
  1090. "Event\n"
  1091. " Hook in man page for more details."
  1092. msgstr ""
  1093. #: src/usage_text.h:551
  1094. #, fuzzy
  1095. msgid ""
  1096. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1097. " was paused.\n"
  1098. " See --on-download-start option for the\n"
  1099. " requirement of COMMAND."
  1100. msgstr ""
  1101. " --ftp-proxy=PROXY Brug denne proxy server til FTP. For at slette\n"
  1102. " tidligere definerede proxy’er, brug \"\".\n"
  1103. " Se også --all-proxy flaget.\n"
  1104. " Dette påvirker alle URLs."
  1105. #: src/usage_text.h:556
  1106. #, fuzzy
  1107. msgid ""
  1108. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1109. " aborted due to error.\n"
  1110. " See --on-download-start option for the\n"
  1111. " requirement of COMMAND.\n"
  1112. " See also --on-download-stop option."
  1113. msgstr ""
  1114. " --max-download-limit=HASTIGHED Sæt max download hastigheden for hvert "
  1115. "enkelt download\n"
  1116. " i bytes/sek. 0 betyder ubegrænset.\n"
  1117. " Du kan tilføje K eller M(1K = 1024, 1M = "
  1118. "1024K).\n"
  1119. " For at begrænse den samlede download "
  1120. "hastighed, brug\n"
  1121. " --max-overall-download-limit flaget."
  1122. #: src/usage_text.h:562
  1123. msgid ""
  1124. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1125. " stopped. You can override the command to be\n"
  1126. " executed for particular download result using\n"
  1127. " --on-download-complete and --on-download-"
  1128. "error. If\n"
  1129. " they are specified, command specified in this\n"
  1130. " option is not executed.\n"
  1131. " See --on-download-start option for the\n"
  1132. " requirement of COMMAND."
  1133. msgstr ""
  1134. #: src/usage_text.h:571
  1135. msgid ""
  1136. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1137. "0 in\n"
  1138. " consecutive SEC seconds. If 0 is given, this\n"
  1139. " feature is disabled."
  1140. msgstr ""
  1141. #: src/usage_text.h:575
  1142. msgid ""
  1143. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1144. "last\n"
  1145. " pieces of each file first. This is useful for\n"
  1146. " previewing files. The argument can contain 2\n"
  1147. " keywords:head and tail. To include both "
  1148. "keywords,\n"
  1149. " they must be separated by comma. These "
  1150. "keywords\n"
  1151. " can take one parameter, SIZE. For example, if\n"
  1152. " head=SIZE is specified, pieces in the range "
  1153. "of\n"
  1154. " first SIZE bytes of each file get higher "
  1155. "priority.\n"
  1156. " tail=SIZE means the range of last SIZE bytes "
  1157. "of\n"
  1158. " each file. SIZE can include K or M(1K = 1024, "
  1159. "1M =\n"
  1160. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1161. msgstr ""
  1162. #: src/usage_text.h:587
  1163. msgid ""
  1164. " --interface=INTERFACE Bind sockets to given interface. You can "
  1165. "specify\n"
  1166. " interface name, IP address and hostname."
  1167. msgstr ""
  1168. #: src/usage_text.h:590
  1169. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1170. msgstr ""
  1171. #: src/usage_text.h:592
  1172. msgid ""
  1173. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1174. "has\n"
  1175. " effect only when BitTorrent Magnet URI is "
  1176. "used.\n"
  1177. " The filename is hex encoded info hash with "
  1178. "suffix\n"
  1179. " .torrent. The directory to be saved is the "
  1180. "same\n"
  1181. " directory where download file is saved. If "
  1182. "the\n"
  1183. " same file already exists, metadata is not "
  1184. "saved.\n"
  1185. " See also --bt-metadata-only option."
  1186. msgstr ""
  1187. #: src/usage_text.h:600
  1188. msgid ""
  1189. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1190. "cache\n"
  1191. " header to avoid cached content. If false is\n"
  1192. " given, these headers are not sent and you can "
  1193. "add\n"
  1194. " Cache-Control header with a directive you "
  1195. "like\n"
  1196. " using --header option."
  1197. msgstr ""
  1198. #: src/usage_text.h:606
  1199. msgid ""
  1200. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1201. "described\n"
  1202. " in metadata will not be downloaded. This "
  1203. "option\n"
  1204. " has effect only when BitTorrent Magnet URI is\n"
  1205. " used. See also --bt-save-metadata option."
  1206. msgstr ""
  1207. #: src/usage_text.h:611
  1208. msgid ""
  1209. " --human-readable[=true|false] Print sizes and speed in human readable "
  1210. "format\n"
  1211. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1212. msgstr ""
  1213. #: src/usage_text.h:614
  1214. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1215. msgstr ""
  1216. #: src/usage_text.h:616
  1217. msgid ""
  1218. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1219. "If\n"
  1220. " this option is not specified, the default\n"
  1221. " interface is chosen. You can specify "
  1222. "interface\n"
  1223. " name and IP address."
  1224. msgstr ""
  1225. #: src/usage_text.h:621
  1226. msgid ""
  1227. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1228. " left."
  1229. msgstr ""
  1230. #: src/usage_text.h:624
  1231. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1232. msgstr ""
  1233. #: src/usage_text.h:626
  1234. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1235. msgstr ""
  1236. #: src/usage_text.h:628
  1237. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1238. msgstr ""
  1239. #: src/usage_text.h:630
  1240. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1241. msgstr ""
  1242. #: src/usage_text.h:632
  1243. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1244. msgstr ""
  1245. #: src/usage_text.h:634
  1246. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1247. msgstr ""
  1248. #: src/usage_text.h:636
  1249. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1250. msgstr ""
  1251. #: src/usage_text.h:638
  1252. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1253. msgstr ""
  1254. #: src/usage_text.h:640
  1255. msgid ""
  1256. " --remove-control-file[=true|false] Remove control file before download. "
  1257. "Using\n"
  1258. " with --allow-overwrite=true, download always\n"
  1259. " starts from scratch. This will be useful for\n"
  1260. " users behind proxy server which disables "
  1261. "resume."
  1262. msgstr ""
  1263. #: src/usage_text.h:645
  1264. msgid ""
  1265. " --always-resume[=true|false] Always resume download. If true is given, "
  1266. "aria2\n"
  1267. " always tries to resume download and if resume "
  1268. "is\n"
  1269. " not possible, aborts download. If false is "
  1270. "given,\n"
  1271. " when all given URIs do not support resume or\n"
  1272. " aria2 encounters N URIs which does not "
  1273. "support\n"
  1274. " resume (N is the value specified using\n"
  1275. " --max-resume-failure-tries option), aria2\n"
  1276. " downloads file from scratch.\n"
  1277. " See --max-resume-failure-tries option."
  1278. msgstr ""
  1279. #: src/usage_text.h:655
  1280. msgid ""
  1281. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1282. " downloads file from scratch when aria2 detects "
  1283. "N\n"
  1284. " number of URIs that does not support resume. "
  1285. "If N\n"
  1286. " is 0, aria2 downloads file from scratch when "
  1287. "all\n"
  1288. " given URIs do not support resume.\n"
  1289. " See --always-resume option."
  1290. msgstr ""
  1291. #: src/usage_text.h:662
  1292. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1293. msgstr ""
  1294. #: src/usage_text.h:664
  1295. msgid ""
  1296. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1297. " establish connection to tracker. After the\n"
  1298. " connection is established, this option makes "
  1299. "no\n"
  1300. " effect and --bt-tracker-timeout option is "
  1301. "used\n"
  1302. " instead."
  1303. msgstr ""
  1304. #: src/usage_text.h:670
  1305. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1306. msgstr ""
  1307. #: src/usage_text.h:672
  1308. msgid ""
  1309. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1310. "header\n"
  1311. " and inflate response if remote server "
  1312. "responds\n"
  1313. " with 'Content-Encoding: gzip' or\n"
  1314. " 'Content-Encoding: deflate'."
  1315. msgstr ""
  1316. #: src/usage_text.h:677
  1317. msgid ""
  1318. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1319. "exit.\n"
  1320. " You can pass this output file to aria2c with -"
  1321. "i\n"
  1322. " option on restart. Please note that downloads\n"
  1323. " added by aria2.addTorrent and aria2."
  1324. "addMetalink\n"
  1325. " RPC method and whose metadata could not be "
  1326. "saved\n"
  1327. " as a file will not be saved. Downloads "
  1328. "removed\n"
  1329. " using aria2.remove and aria2.forceRemove will "
  1330. "not\n"
  1331. " be saved."
  1332. msgstr ""
  1333. #: src/usage_text.h:686
  1334. msgid ""
  1335. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1336. "one\n"
  1337. " server for each download."
  1338. msgstr ""
  1339. #: src/usage_text.h:689
  1340. msgid ""
  1341. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1342. "range.\n"
  1343. " For example, let's consider downloading 20MiB\n"
  1344. " file. If SIZE is 10M, aria2 can split file "
  1345. "into 2\n"
  1346. " range [0-10MiB) and [10MiB-20MiB) and download "
  1347. "it\n"
  1348. " using 2 sources(if --split >= 2, of course).\n"
  1349. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1350. "does\n"
  1351. " not split file and download it using 1 "
  1352. "source.\n"
  1353. " You can append K or M(1K = 1024, 1M = 1024K)."
  1354. msgstr ""
  1355. #: src/usage_text.h:698
  1356. msgid ""
  1357. " --conditional-get[=true|false] Download file only when the local file is "
  1358. "older\n"
  1359. " than remote file. Currently, this function "
  1360. "has\n"
  1361. " many limitations. See man page for details."
  1362. msgstr ""
  1363. #: src/usage_text.h:702
  1364. msgid ""
  1365. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1366. " --on-download-complete is called after "
  1367. "download\n"
  1368. " completed and seeding is over. On the other "
  1369. "hand,\n"
  1370. " this option sets the command to be executed "
  1371. "after\n"
  1372. " download completed but before seeding.\n"
  1373. " See --on-download-start option for the\n"
  1374. " requirement of COMMAND."
  1375. msgstr ""
  1376. #: src/usage_text.h:710
  1377. msgid ""
  1378. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1379. "asynchronous\n"
  1380. " DNS resolver. This option will be ignored "
  1381. "when\n"
  1382. " --async-dns=false."
  1383. msgstr ""
  1384. #: src/usage_text.h:714
  1385. msgid ""
  1386. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1387. " Use --dht-listen-port option to specify port\n"
  1388. " number to listen on. See also --dht-listen-"
  1389. "addr6\n"
  1390. " option."
  1391. msgstr ""
  1392. #: src/usage_text.h:719
  1393. msgid ""
  1394. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1395. " It should be a global unicast IPv6 address of "
  1396. "the\n"
  1397. " host."
  1398. msgstr ""
  1399. #: src/usage_text.h:723
  1400. msgid ""
  1401. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1402. "DHT\n"
  1403. " network."
  1404. msgstr ""
  1405. #: src/usage_text.h:726
  1406. msgid ""
  1407. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1408. msgstr ""
  1409. #: src/usage_text.h:728
  1410. msgid ""
  1411. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1412. " tracker's announce URI. These URIs are not\n"
  1413. " affected by --bt-exclude-tracker option "
  1414. "because\n"
  1415. " they are added after URIs in --bt-exclude-"
  1416. "tracker\n"
  1417. " option are removed."
  1418. msgstr ""
  1419. #: src/usage_text.h:734
  1420. msgid ""
  1421. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1422. "tracker's\n"
  1423. " announce URI to remove. You can use special "
  1424. "value\n"
  1425. " '*' which matches all URIs, thus removes all\n"
  1426. " announce URIs. When specifying '*' in shell\n"
  1427. " command-line, don't forget to escape or quote "
  1428. "it.\n"
  1429. " See also --bt-tracker option."
  1430. msgstr ""
  1431. #: src/usage_text.h:741
  1432. msgid ""
  1433. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1434. " memory. The download results are completed/"
  1435. "error/\n"
  1436. " removed downloads. The download results are "
  1437. "stored\n"
  1438. " in FIFO queue and it can store at most NUM\n"
  1439. " download results. When queue is full and new\n"
  1440. " download result is created, oldest download "
  1441. "result\n"
  1442. " is removed from the front of the queue and new "
  1443. "one\n"
  1444. " is pushed to the back. Setting big number in "
  1445. "this\n"
  1446. " option may result high memory consumption "
  1447. "after\n"
  1448. " thousands of downloads. Specifying 0 means no\n"
  1449. " download result is kept."
  1450. msgstr ""
  1451. #: src/usage_text.h:753
  1452. msgid ""
  1453. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1454. "address\n"
  1455. " used in asynchronous DNS resolver. Usually\n"
  1456. " asynchronous DNS resolver reads DNS server\n"
  1457. " addresses from /etc/resolv.conf. When this "
  1458. "option\n"
  1459. " is used, it uses DNS servers specified in "
  1460. "this\n"
  1461. " option instead of ones in /etc/resolv.conf. "
  1462. "You\n"
  1463. " can specify both IPv4 and IPv6 address. This\n"
  1464. " option is useful when the system does not "
  1465. "have\n"
  1466. " /etc/resolv.conf and user does not have the\n"
  1467. " permission to create it."
  1468. msgstr ""
  1469. #: src/usage_text.h:764
  1470. msgid ""
  1471. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1472. " It is strongly recommended to set username "
  1473. "and\n"
  1474. " password using --rpc-user and --rpc-passwd\n"
  1475. " option. See also --rpc-listen-port option."
  1476. msgstr ""
  1477. #: src/usage_text.h:769
  1478. msgid ""
  1479. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1480. "aria2\n"
  1481. " detects the request is more than SIZE bytes, "
  1482. "it\n"
  1483. " drops connection."
  1484. msgstr ""
  1485. #: src/usage_text.h:773
  1486. #, fuzzy
  1487. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1488. msgstr " --ftp-user=USER Sæt FTP bruger. Dette påvirker all URLs."
  1489. #: src/usage_text.h:775
  1490. #, fuzzy
  1491. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1492. msgstr " --ftp-passwd=PASSWD Sæt FTP password. Dette påvirker all URLs."
  1493. #: src/usage_text.h:777
  1494. #, fuzzy
  1495. msgid ""
  1496. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1497. "all\n"
  1498. " network interfaces. If false is given, listen "
  1499. "only\n"
  1500. " on local loopback interface."
  1501. msgstr ""
  1502. " -S, --show-files Viser en liste af filer i .torrent eller .metalink-filer.\n"
  1503. " Mere detaljerede informationer vil blive "
  1504. "vidst\n"
  1505. " af torrent filer."
  1506. #: src/usage_text.h:781
  1507. msgid ""
  1508. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1509. "server\n"
  1510. " to listen to."
  1511. msgstr ""
  1512. #: src/usage_text.h:784
  1513. msgid " --show-console-readout[=true|false] Show console readout."
  1514. msgstr ""
  1515. #: src/usage_text.h:786
  1516. #, fuzzy
  1517. msgid ""
  1518. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  1519. " metalink:url and metalink:metaurl element in "
  1520. "a\n"
  1521. " metalink file stored in local disk. If URI "
  1522. "points\n"
  1523. " to a directory, URI must end with '/'."
  1524. msgstr ""
  1525. " -S, --show-files Viser en liste af filer i .torrent eller .metalink-filer.\n"
  1526. " Mere detaljerede informationer vil blive "
  1527. "vidst\n"
  1528. " af torrent filer."
  1529. #: src/usage_text.h:791
  1530. msgid ""
  1531. " --stream-piece-selector=SELECTOR Specify piece selection algorithm\n"
  1532. " used in HTTP/FTP download. Piece means fixed\n"
  1533. " length segment which is downloaded in "
  1534. "parallel\n"
  1535. " in segmented download. If 'default' is given,\n"
  1536. " aria2 selects piece so that it reduces the\n"
  1537. " number of establishing connection. This is\n"
  1538. " reasonable default behaviour because\n"
  1539. " establishing connection is an expensive\n"
  1540. " operation.\n"
  1541. " If 'inorder' is given, aria2 selects piece "
  1542. "which\n"
  1543. " has minimum index. Index=0 means first of the\n"
  1544. " file. This will be useful to view movie while\n"
  1545. " downloading it. --enable-http-pipelining "
  1546. "option\n"
  1547. " may be useful to reduce reconnection "
  1548. "overhead.\n"
  1549. " Please note that aria2 honors\n"
  1550. " --min-split-size option, so it will be "
  1551. "necessary\n"
  1552. " to specify a reasonable value to\n"
  1553. " --min-split-size option.\n"
  1554. " If 'geom' is given, at the beginning aria2\n"
  1555. " selects piece which has minimum index like\n"
  1556. " 'inorder', but it exponentially increasingly\n"
  1557. " keeps space from previously selected piece. "
  1558. "This\n"
  1559. " will reduce the number of establishing "
  1560. "connection\n"
  1561. " and at the same time it will download the\n"
  1562. " beginning part of the file first. This will "
  1563. "be\n"
  1564. " useful to view movie while downloading it."
  1565. msgstr ""
  1566. #: src/usage_text.h:818
  1567. #, fuzzy
  1568. msgid ""
  1569. " --truncate-console-readout[=true|false] Truncate console readout to fit in\n"
  1570. " a single line."
  1571. msgstr ""
  1572. " --direct-file-mapping=true|false Læs direkte fra og skriv til hver enkelt "
  1573. "fil\n"
  1574. " nævnt i en .torrent-fil."
  1575. #: src/usage_text.h:821
  1576. #, fuzzy
  1577. msgid ""
  1578. " --pause[=true|false] Pause download after added. This option is\n"
  1579. " effective only when --enable-rpc=true is given."
  1580. msgstr ""
  1581. " -p, --ftp-pasv[=true|false] Brug den passive tilstand til FTP. Hvis false "
  1582. "(falsk) gives,\n"
  1583. " vil aktive tilstand bruges."
  1584. #: src/usage_text.h:824
  1585. msgid ""
  1586. " --rpc-allow-origin-all[=true|false] Add Access-Control-Allow-Origin header\n"
  1587. " field with value '*' to the RPC response."
  1588. msgstr ""
  1589. #: src/usage_text.h:827
  1590. msgid ""
  1591. " --download-result=OPT This option changes the way \"Download Results"
  1592. "\"\n"
  1593. " is formatted. If OPT is 'default', print GID,\n"
  1594. " status, average download speed and path/URI. "
  1595. "If\n"
  1596. " multiple files are involved, path/URI of "
  1597. "first\n"
  1598. " requested file is printed and remaining ones "
  1599. "are\n"
  1600. " omitted.\n"
  1601. " If OPT is 'full', print GID, status, average\n"
  1602. " download speed, percentage of progress and\n"
  1603. " path/URI. The percentage of progress and\n"
  1604. " path/URI are printed for each requested file "
  1605. "in\n"
  1606. " each row."
  1607. msgstr ""
  1608. #: src/usage_text.h:839
  1609. #, fuzzy
  1610. msgid ""
  1611. " --hash-check-only[=true|false] If true is given, after hash check using\n"
  1612. " --check-integrity option, abort download "
  1613. "whether\n"
  1614. " or not download is complete."
  1615. msgstr ""
  1616. " --enable-direct-io[=true|false] Aktiver direkte I/O, hvilket reducerer cpu-"
  1617. "forbruget under\n"
  1618. " allokering af filer.\n"
  1619. " Slå det fra, hvis du oplever nogle fejl."
  1620. #: src/usage_text.h:843
  1621. msgid ""
  1622. " --checksum=TYPE=DIGEST Set checksum. TYPE is hash type. The "
  1623. "supported\n"
  1624. " hash type is listed in \"Hash Algorithms\" in\n"
  1625. " \"aria2c -v\". DIGEST is hex digest.\n"
  1626. " For example, setting sha-1 digest looks like\n"
  1627. " this:\n"
  1628. " sha-1=0192ba11326fe2298c8cb4de616f4d4140213838\n"
  1629. " This option applies only to HTTP(S)/FTP\n"
  1630. " downloads."
  1631. msgstr ""
  1632. #: src/usage_text.h:852
  1633. msgid ""
  1634. " --piece-length=LENGTH Set a piece length for HTTP/FTP downloads. "
  1635. "This\n"
  1636. " is the boundary when aria2 splits a file. All\n"
  1637. " splits occur at multiple of this length. This\n"
  1638. " option will be ignored in BitTorrent "
  1639. "downloads.\n"
  1640. " It will be also ignored if Metalink file\n"
  1641. " contains piece hashes."
  1642. msgstr ""
  1643. #: src/usage_text.h:859
  1644. msgid ""
  1645. " --stop-with-process=PID Stop application when process PID is not "
  1646. "running.\n"
  1647. " This is useful if aria2 process is forked from "
  1648. "a\n"
  1649. " parent process. The parent process can fork "
  1650. "aria2\n"
  1651. " with its own pid and when parent process "
  1652. "exits\n"
  1653. " for some reason, aria2 can detect it and "
  1654. "shutdown\n"
  1655. " itself."
  1656. msgstr ""
  1657. #: src/usage_text.h:866
  1658. msgid ""
  1659. " --deferred-input[=true|false] If true is given, aria2 does not read all "
  1660. "URIs\n"
  1661. " and options from file specified by -i option "
  1662. "at\n"
  1663. " startup, but it reads one by one when it "
  1664. "needs\n"
  1665. " later. This may reduce memory usage if input\n"
  1666. " file contains a lot of URIs to download.\n"
  1667. " If false is given, aria2 reads all URIs and\n"
  1668. " options at startup."
  1669. msgstr ""
  1670. #: src/usage_text.h:874
  1671. #, fuzzy
  1672. msgid ""
  1673. " --bt-remove-unselected-file[=true|false] Removes the unselected files when\n"
  1674. " download is completed in BitTorrent. To\n"
  1675. " select files, use --select-file option. If\n"
  1676. " it is not used, all files are assumed to be\n"
  1677. " selected. Please use this option with care\n"
  1678. " because it will actually remove files from\n"
  1679. " your disk."
  1680. msgstr ""
  1681. " -c, --continue Fortsæt med at downloade en delvist hentet\n"
  1682. " fil. Brug dette flag til at genoptage et "
  1683. "download\n"
  1684. " startet af en web browser eller et andet "
  1685. "program,\n"
  1686. " som downloader filer fortløbende fra\n"
  1687. " starten. Denne mulighed er virker kun\n"
  1688. " til http(s)/ftp forbindelser."
  1689. #: src/usage_text.h:882
  1690. #, fuzzy
  1691. msgid " --enable-mmap[=true|false] Map files into memory."
  1692. msgstr " --enable-dht[=true|false] Aktivere IPv4 DHT funktionaliteten."
  1693. #: src/usage_text.h:884
  1694. #, fuzzy
  1695. msgid ""
  1696. " --rpc-certificate=FILE Use the certificate in FILE for RPC server.\n"
  1697. " The certificate must be in PEM format.\n"
  1698. " Use --rpc-private-key option to specify the\n"
  1699. " private key. Use --rpc-secure option to "
  1700. "enable\n"
  1701. " encryption."
  1702. msgstr ""
  1703. " --max-download-limit=HASTIGHED Sæt max download hastigheden for hvert "
  1704. "enkelt download\n"
  1705. " i bytes/sek. 0 betyder ubegrænset.\n"
  1706. " Du kan tilføje K eller M(1K = 1024, 1M = "
  1707. "1024K).\n"
  1708. " For at begrænse den samlede download "
  1709. "hastighed, brug\n"
  1710. " --max-overall-download-limit flaget."
  1711. #: src/usage_text.h:890
  1712. #, fuzzy
  1713. msgid ""
  1714. " --rpc-private-key=FILE Use the private key in FILE for RPC server.\n"
  1715. " The private key must be decrypted and in PEM\n"
  1716. " format. Use --rpc-secure option to enable\n"
  1717. " encryption. See also --rpc-certificate option."
  1718. msgstr ""
  1719. " --http-proxy=PROXY Brug denne proxy server til HTTP. For at slette\n"
  1720. " tidligere definerede proxy’er, brug \"\".\n"
  1721. " Se også --all-proxy flaget.\n"
  1722. " Dette påvirker alle URLs."
  1723. #: src/usage_text.h:895
  1724. #, fuzzy
  1725. msgid ""
  1726. " --rpc-secure[=true|false] RPC transport will be encrypted by SSL/TLS.\n"
  1727. " The RPC clients must use https scheme to "
  1728. "access\n"
  1729. " the server. For WebSocket client, use wss\n"
  1730. " scheme. Use --rpc-certificate and\n"
  1731. " --rpc-private-key options to specify the\n"
  1732. " server certificate and private key."
  1733. msgstr ""
  1734. " -c, --continue Fortsæt med at downloade en delvist hentet\n"
  1735. " fil. Brug dette flag til at genoptage et "
  1736. "download\n"
  1737. " startet af en web browser eller et andet "
  1738. "program,\n"
  1739. " som downloader filer fortløbende fra\n"
  1740. " starten. Denne mulighed er virker kun\n"
  1741. " til http(s)/ftp forbindelser."
  1742. #: src/version_usage.cc:57
  1743. msgid " version "
  1744. msgstr ""
  1745. #: src/version_usage.cc:61
  1746. msgid ""
  1747. "This program is free software; you can redistribute it and/or modify\n"
  1748. "it under the terms of the GNU General Public License as published by\n"
  1749. "the Free Software Foundation; either version 2 of the License, or\n"
  1750. "(at your option) any later version.\n"
  1751. "\n"
  1752. "This program is distributed in the hope that it will be useful,\n"
  1753. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1754. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1755. "GNU General Public License for more details.\n"
  1756. msgstr ""
  1757. #: src/version_usage.cc:71
  1758. msgid "** Configuration **"
  1759. msgstr ""
  1760. #: src/version_usage.cc:72
  1761. msgid "Enabled Features"
  1762. msgstr ""
  1763. #: src/version_usage.cc:75
  1764. msgid "Hash Algorithms"
  1765. msgstr ""
  1766. #: src/version_usage.cc:79
  1767. #, c-format
  1768. msgid "Report bugs to %s"
  1769. msgstr ""
  1770. #: src/version_usage.cc:80
  1771. msgid "Visit"
  1772. msgstr ""
  1773. #: src/version_usage.cc:87
  1774. #, c-format
  1775. msgid ""
  1776. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1777. msgstr ""
  1778. #: src/version_usage.cc:92
  1779. #, c-format
  1780. msgid "See 'aria2c -h'."
  1781. msgstr ""
  1782. #: src/version_usage.cc:100
  1783. #, c-format
  1784. msgid "Printing all options."
  1785. msgstr ""
  1786. #: src/version_usage.cc:102
  1787. #, c-format
  1788. msgid "Printing options tagged with '%s'."
  1789. msgstr ""
  1790. #: src/version_usage.cc:105
  1791. #, c-format
  1792. msgid "See 'aria2c -h#help' to know all available tags."
  1793. msgstr ""
  1794. #: src/version_usage.cc:108 src/version_usage.cc:122
  1795. #, c-format
  1796. msgid "Options:"
  1797. msgstr ""
  1798. #: src/version_usage.cc:119
  1799. #, c-format
  1800. msgid "Printing options whose name includes '%s'."
  1801. msgstr ""
  1802. #: src/version_usage.cc:130
  1803. #, c-format
  1804. msgid "No option matching with '%s'."
  1805. msgstr ""
  1806. #: src/version_usage.cc:138
  1807. #, c-format
  1808. msgid ""
  1809. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1810. "all\n"
  1811. " URIs must point to the same file or downloading will fail."
  1812. msgstr ""
  1813. #: src/version_usage.cc:141
  1814. #, c-format
  1815. msgid ""
  1816. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1817. " metalink files stored in a local drive. Please note that they are always\n"
  1818. " treated as a separate download."
  1819. msgstr ""
  1820. #: src/version_usage.cc:145
  1821. #, c-format
  1822. msgid ""
  1823. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1824. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1825. "time,\n"
  1826. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1827. "file\n"
  1828. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1829. "ends\n"
  1830. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1831. "and\n"
  1832. " 'path' in torrent are added to form a URI for each file."
  1833. msgstr ""
  1834. #: src/version_usage.cc:152
  1835. #, c-format
  1836. msgid ""
  1837. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1838. " contains \"&\" or any characters that have special meaning in shell."
  1839. msgstr ""
  1840. #: src/version_usage.cc:155
  1841. #, c-format
  1842. msgid ""
  1843. "About the number of connections\n"
  1844. " Since 1.10.0 release, aria2 uses 1 connection per host by default and has "
  1845. "20MiB\n"
  1846. " segment size restriction. So whatever value you specify using -s option, "
  1847. "it\n"
  1848. " uses 1 connection per host. To make it behave like 1.9.x, use\n"
  1849. " --max-connection-per-server=4 --min-split-size=1M.\n"
  1850. "\n"
  1851. msgstr ""
  1852. #: src/version_usage.cc:162
  1853. #, c-format
  1854. msgid "Refer to man page for more information."
  1855. msgstr ""
  1856. #: src/option_processing.cc:86
  1857. #, c-format
  1858. msgid "Caught Error while parsing environment variable '%s'"
  1859. msgstr ""
  1860. #: src/option_processing.cc:168
  1861. #, c-format
  1862. msgid "Did you mean:"
  1863. msgstr ""
  1864. #: src/option_processing.cc:235 src/option_processing.cc:244
  1865. #, c-format
  1866. msgid "Parse error in %s"
  1867. msgstr ""
  1868. #: src/option_processing.cc:239 src/option_processing.cc:280
  1869. #, c-format
  1870. msgid "Usage:"
  1871. msgstr ""
  1872. #: src/option_processing.cc:249
  1873. #, c-format
  1874. msgid "Configuration file %s is not found."
  1875. msgstr ""
  1876. #: src/OptionHandlerException.cc:43
  1877. #, c-format
  1878. msgid "We encountered a problem while processing the option '--%s'."
  1879. msgstr ""
  1880. #: src/UnknownOptionException.cc:41
  1881. #, c-format
  1882. msgid "Unknown option '%s'"
  1883. msgstr ""
  1884. #: src/BtSetup.cc:215
  1885. msgid "Errors occurred while binding port.\n"
  1886. msgstr ""
  1887. #: src/AbstractCommand.cc:443
  1888. #, c-format
  1889. msgid "CUID#%<PRId64> - Failed to resume download. Download from scratch."
  1890. msgstr ""
  1891. #: src/AdaptiveURISelector.cc:228
  1892. #, c-format
  1893. msgid ""
  1894. "Lowering lowest-speed-limit since known max speed is too near (new:%d was:%d "
  1895. "max:%d)"
  1896. msgstr ""
  1897. #: src/AdaptiveURISelector.cc:235
  1898. #, c-format
  1899. msgid ""
  1900. "Lowering lowest-speed-limit since we have no clue about available speed (now:"
  1901. "%d was:%d)"
  1902. msgstr ""
  1903. #: src/BtStopDownloadCommand.cc:64
  1904. #, c-format
  1905. msgid "GID#%<PRId64> Stop downloading torrent due to --bt-stop-timeout option."
  1906. msgstr ""
  1907. #: src/DHTConnectionImpl.cc:89
  1908. #, c-format
  1909. msgid "IPv%d DHT: listening to port %u"
  1910. msgstr ""
  1911. #: src/HttpListenCommand.cc:114
  1912. #, c-format
  1913. msgid "IPv%d RPC: listening to port %u"
  1914. msgstr ""
  1915. #: src/PeerListenCommand.cc:83
  1916. #, c-format
  1917. msgid "IPv%d BitTorrent: listening to port %u"
  1918. msgstr ""
  1919. #: src/RequestGroup.cc:375
  1920. msgid ""
  1921. "For BitTorrent Magnet URI, enabling DHT is strongly recommended. See --"
  1922. "enable-dht option."
  1923. msgstr ""
  1924. #: src/RequestGroup.cc:680
  1925. #, c-format
  1926. msgid "Removed control file for %s because it is requested by user."
  1927. msgstr ""
  1928. #: src/SingleFileAllocationIterator.cc:75
  1929. msgid ""
  1930. "Allocating disk space. Use --file-allocation=none to disable it. See --file-"
  1931. "allocation option in man page for more details."
  1932. msgstr ""
  1933. #: src/message.h:57
  1934. #, c-format
  1935. msgid "GID#%<PRId64> - Download has already completed: %s"
  1936. msgstr ""
  1937. #: src/message.h:106
  1938. #, c-format
  1939. msgid "Unrecognized URI or unsupported protocol: %s"
  1940. msgstr ""
  1941. #: src/message.h:107
  1942. #, c-format
  1943. msgid "Tracker returned warning message: %s"
  1944. msgstr ""
  1945. #: src/message.h:108
  1946. #, c-format
  1947. msgid "The segment file %s exists."
  1948. msgstr ""
  1949. #: src/message.h:109
  1950. #, c-format
  1951. msgid "The segment file %s does not exist."
  1952. msgstr ""
  1953. #: src/message.h:110
  1954. #, c-format
  1955. msgid "Saving the segment file %s"
  1956. msgstr ""
  1957. #: src/message.h:111
  1958. msgid "The segment file was saved successfully."
  1959. msgstr ""
  1960. #: src/message.h:112
  1961. #, c-format
  1962. msgid "Loading the segment file %s."
  1963. msgstr ""
  1964. #: src/message.h:113
  1965. msgid "The segment file was loaded successfully."
  1966. msgstr ""
  1967. #: src/message.h:114
  1968. msgid "No URI to download. Download aborted."
  1969. msgstr ""
  1970. #: src/message.h:115
  1971. #, c-format
  1972. msgid ""
  1973. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1974. "canceled in order to prevent your file from being truncated to 0. If you are "
  1975. "sure to download the file all over again, then delete it or add --allow-"
  1976. "overwrite=true option and restart aria2."
  1977. msgstr ""
  1978. #: src/message.h:116
  1979. #, c-format
  1980. msgid "Allocating file %s, %s bytes"
  1981. msgstr ""
  1982. #: src/message.h:117
  1983. msgid "File not found"
  1984. msgstr ""
  1985. #: src/message.h:118
  1986. msgid "Not a directory"
  1987. msgstr ""
  1988. #: src/message.h:119
  1989. #, c-format
  1990. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1991. msgstr ""
  1992. #: src/message.h:120
  1993. #, c-format
  1994. msgid "Writing file %s"
  1995. msgstr ""
  1996. #: src/message.h:121
  1997. msgid "No peer list received."
  1998. msgstr ""
  1999. #: src/message.h:122
  2000. #, c-format
  2001. msgid "Adding peer %s:%d"
  2002. msgstr ""
  2003. #: src/message.h:123
  2004. #, c-format
  2005. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  2006. msgstr ""
  2007. #: src/message.h:124
  2008. msgid "Download of selected files was complete."
  2009. msgstr ""
  2010. #: src/message.h:125
  2011. msgid "The download was complete."
  2012. msgstr ""
  2013. #: src/message.h:126
  2014. #, c-format
  2015. msgid "Removed %lu have entries."
  2016. msgstr ""
  2017. #: src/message.h:127
  2018. #, c-format
  2019. msgid "Validating file %s"
  2020. msgstr ""
  2021. #: src/message.h:131
  2022. #, c-format
  2023. msgid "Metalink: Queueing %s for download."
  2024. msgstr ""
  2025. #: src/message.h:132
  2026. #, c-format
  2027. msgid "Download complete: %s"
  2028. msgstr ""
  2029. #: src/message.h:133
  2030. msgid "Seeding is over."
  2031. msgstr ""
  2032. #: src/message.h:134
  2033. msgid "No chunk to verify."
  2034. msgstr ""
  2035. #: src/message.h:135
  2036. #, c-format
  2037. msgid "Good chunk checksum. hash=%s"
  2038. msgstr ""
  2039. #: src/message.h:136
  2040. #, c-format
  2041. msgid "Failed to load cookies from %s"
  2042. msgstr ""
  2043. #: src/message.h:137
  2044. #, c-format
  2045. msgid ""
  2046. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2047. "support disabled."
  2048. msgstr ""
  2049. #: src/message.h:138
  2050. msgid "Logging started."
  2051. msgstr ""
  2052. #: src/message.h:139
  2053. msgid "Specify at least one URL."
  2054. msgstr ""
  2055. #: src/message.h:140
  2056. msgid "daemon failed."
  2057. msgstr ""
  2058. #: src/message.h:141
  2059. #, c-format
  2060. msgid "Verification finished successfully. file=%s"
  2061. msgstr ""
  2062. #: src/message.h:142
  2063. #, c-format
  2064. msgid "Checksum error detected. file=%s"
  2065. msgstr ""
  2066. #: src/message.h:143
  2067. #, c-format
  2068. msgid "Incomplete range specified. %s"
  2069. msgstr ""
  2070. #: src/message.h:144
  2071. #, c-format
  2072. msgid "Failed to convert string into value: %s"
  2073. msgstr ""
  2074. #: src/message.h:145
  2075. msgid "Resource not found"
  2076. msgstr ""
  2077. #: src/message.h:146
  2078. #, c-format
  2079. msgid "File already exists. Renamed to %s."
  2080. msgstr ""
  2081. #: src/message.h:147
  2082. msgid "Cannot parse metalink XML file. XML may be malformed."
  2083. msgstr ""
  2084. #: src/message.h:148
  2085. #, c-format
  2086. msgid "Too small payload size for %s, size=%lu."
  2087. msgstr ""
  2088. #: src/message.h:149
  2089. #, c-format
  2090. msgid ""
  2091. "Removed the defunct control file %s because the download file %s doesn't "
  2092. "exist."
  2093. msgstr ""
  2094. #: src/message.h:150
  2095. #, c-format
  2096. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2097. msgstr ""
  2098. #: src/message.h:151
  2099. #, c-format
  2100. msgid "Missing %s in torrent metainfo."
  2101. msgstr ""
  2102. #: src/message.h:152
  2103. msgid "Tracker returned null data."
  2104. msgstr ""
  2105. #: src/message.h:153
  2106. msgid "Windows socket library initialization failed"
  2107. msgstr ""
  2108. #: src/message.h:154
  2109. #, c-format
  2110. msgid "%ld second(s) has passed. Stopping application."
  2111. msgstr ""
  2112. #: src/message.h:155
  2113. #, c-format
  2114. msgid ""
  2115. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2116. msgstr ""
  2117. #: src/message.h:157
  2118. #, c-format
  2119. msgid "Saving signature as %s failed. Maybe file already exists."
  2120. msgstr ""
  2121. #: src/message.h:160
  2122. #, c-format
  2123. msgid "Failed to open ServerStat file %s for read."
  2124. msgstr ""
  2125. #: src/message.h:161
  2126. #, c-format
  2127. msgid "ServerStat file %s loaded successfully."
  2128. msgstr ""
  2129. #: src/message.h:162
  2130. #, c-format
  2131. msgid "Failed to read ServerStat from %s."
  2132. msgstr ""
  2133. #: src/message.h:165
  2134. #, c-format
  2135. msgid "Failed to open ServerStat file %s for write."
  2136. msgstr ""
  2137. #: src/message.h:166
  2138. #, c-format
  2139. msgid "ServerStat file %s saved successfully."
  2140. msgstr ""
  2141. #: src/message.h:167
  2142. #, c-format
  2143. msgid "Failed to write ServerStat to %s."
  2144. msgstr ""
  2145. #: src/message.h:170
  2146. #, c-format
  2147. msgid "Failed to establish connection, cause: %s"
  2148. msgstr ""
  2149. #: src/message.h:171
  2150. #, c-format
  2151. msgid "Network problem has occurred. cause:%s"
  2152. msgstr ""
  2153. #: src/message.h:173
  2154. #, c-format
  2155. msgid "Failed to load trusted CA certificates from system. Cause: %s"
  2156. msgstr ""
  2157. #: src/message.h:175
  2158. #, c-format
  2159. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2160. msgstr ""
  2161. #: src/message.h:177
  2162. #, c-format
  2163. msgid ""
  2164. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  2165. "certificate option."
  2166. msgstr ""
  2167. #: src/message.h:179
  2168. msgid "No certificate found."
  2169. msgstr ""
  2170. #: src/message.h:180
  2171. msgid "Hostname not match."
  2172. msgstr ""
  2173. #: src/message.h:181
  2174. msgid "No files to download."
  2175. msgstr ""
  2176. #: src/message.h:183
  2177. msgid ""
  2178. "You may encounter the certificate verification error with HTTPS server. See "
  2179. "--ca-certificate and --check-certificate option."
  2180. msgstr ""
  2181. #: src/message.h:185
  2182. #, c-format
  2183. msgid "Printing the contents of file '%s'..."
  2184. msgstr ""
  2185. #: src/message.h:186
  2186. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2187. msgstr ""
  2188. #: src/message.h:191
  2189. #, c-format
  2190. msgid "Is '%s' a file?"
  2191. msgstr ""
  2192. #: src/message.h:192
  2193. #, c-format
  2194. msgid "Failed to find given interface %s, cause: %s"
  2195. msgstr ""
  2196. #: src/message.h:194
  2197. #, c-format
  2198. msgid "Saved metadata as %s."
  2199. msgstr ""
  2200. #: src/message.h:195
  2201. #, c-format
  2202. msgid "Saving metadata as %s failed. Maybe file already exists."
  2203. msgstr ""
  2204. #: src/message.h:197
  2205. #, c-format
  2206. msgid "Detected directory traversal directive in %s"
  2207. msgstr ""
  2208. #: src/message.h:200
  2209. #, c-format
  2210. msgid "GID#%<PRId64> - Removing unselected file."
  2211. msgstr ""
  2212. #: src/message.h:201
  2213. #, c-format
  2214. msgid "File %s removed."
  2215. msgstr ""
  2216. #: src/message.h:202
  2217. #, c-format
  2218. msgid "File %s could not be removed."
  2219. msgstr ""
  2220. #: src/message.h:204
  2221. msgid "Timeout."
  2222. msgstr ""
  2223. #: src/message.h:205
  2224. msgid "Invalid chunk size."
  2225. msgstr ""
  2226. #: src/message.h:206
  2227. #, c-format
  2228. msgid "Too large chunk. size=%d"
  2229. msgstr ""
  2230. #: src/message.h:207
  2231. msgid "Invalid header."
  2232. msgstr ""
  2233. #: src/message.h:208
  2234. msgid "Invalid response."
  2235. msgstr ""
  2236. #: src/message.h:209
  2237. msgid "No header found."
  2238. msgstr ""
  2239. #: src/message.h:210
  2240. msgid "No status header."
  2241. msgstr ""
  2242. #: src/message.h:211
  2243. msgid "Proxy connection failed."
  2244. msgstr ""
  2245. #: src/message.h:212
  2246. msgid "Connection failed."
  2247. msgstr ""
  2248. #: src/message.h:213
  2249. #, c-format
  2250. msgid ""
  2251. "The requested filename and the previously registered one are not same. "
  2252. "Expected:%s Actual:%s"
  2253. msgstr ""
  2254. #: src/message.h:214
  2255. #, c-format
  2256. msgid "The response status is not successful. status=%d"
  2257. msgstr ""
  2258. #: src/message.h:216
  2259. #, c-format
  2260. msgid "Transfer encoding %s is not supported."
  2261. msgstr ""
  2262. #: src/message.h:217
  2263. #, c-format
  2264. msgid "SSL initialization failed: %s"
  2265. msgstr ""
  2266. #: src/message.h:218
  2267. msgid "SSL I/O error"
  2268. msgstr ""
  2269. #: src/message.h:219
  2270. msgid "SSL protocol error"
  2271. msgstr ""
  2272. #: src/message.h:220
  2273. #, c-format
  2274. msgid "SSL unknown error %d"
  2275. msgstr ""
  2276. #: src/message.h:221
  2277. #, c-format
  2278. msgid "SSL initialization failed: OpenSSL connect error %d"
  2279. msgstr ""
  2280. #: src/message.h:223
  2281. msgid "Authorization failed."
  2282. msgstr ""
  2283. #: src/message.h:224
  2284. msgid "Got EOF from the server."
  2285. msgstr ""
  2286. #: src/message.h:225
  2287. msgid "Got EOF from peer."
  2288. msgstr ""
  2289. #: src/message.h:226
  2290. msgid "Malformed meta info."
  2291. msgstr ""
  2292. #: src/message.h:228
  2293. #, c-format
  2294. msgid "Failed to open the file %s, cause: %s"
  2295. msgstr ""
  2296. #: src/message.h:229
  2297. #, c-format
  2298. msgid "Failed to write into the file %s, cause: %s"
  2299. msgstr ""
  2300. #: src/message.h:230
  2301. #, c-format
  2302. msgid "Failed to read from the file %s, cause: %s"
  2303. msgstr ""
  2304. #: src/message.h:231
  2305. msgid "Failed to read data from disk."
  2306. msgstr ""
  2307. #: src/message.h:232
  2308. #, c-format
  2309. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2310. msgstr ""
  2311. #: src/message.h:233
  2312. #, c-format
  2313. msgid "Failed to seek the file %s, cause: %s"
  2314. msgstr ""
  2315. #: src/message.h:235
  2316. #, c-format
  2317. msgid "%s is not a directory."
  2318. msgstr ""
  2319. #: src/message.h:236
  2320. #, c-format
  2321. msgid "Failed to make the directory %s, cause: %s"
  2322. msgstr ""
  2323. #: src/message.h:240
  2324. #, c-format
  2325. msgid "Failed to open a socket, cause: %s"
  2326. msgstr ""
  2327. #: src/message.h:241
  2328. #, c-format
  2329. msgid "Failed to set a socket option, cause: %s"
  2330. msgstr ""
  2331. #: src/message.h:242
  2332. #, c-format
  2333. msgid "Failed to set a socket as blocking, cause: %s"
  2334. msgstr ""
  2335. #: src/message.h:243
  2336. #, c-format
  2337. msgid "Failed to set a socket as non-blocking, cause: %s"
  2338. msgstr ""
  2339. #: src/message.h:244
  2340. #, c-format
  2341. msgid "Failed to bind a socket, cause: %s"
  2342. msgstr ""
  2343. #: src/message.h:245
  2344. #, c-format
  2345. msgid "Failed to listen to a socket, cause: %s"
  2346. msgstr ""
  2347. #: src/message.h:246
  2348. #, c-format
  2349. msgid "Failed to accept a peer connection, cause: %s"
  2350. msgstr ""
  2351. #: src/message.h:247
  2352. #, c-format
  2353. msgid "Failed to get the name of socket, cause: %s"
  2354. msgstr ""
  2355. #: src/message.h:248
  2356. #, c-format
  2357. msgid "Failed to get the name of connected peer, cause: %s"
  2358. msgstr ""
  2359. #: src/message.h:249
  2360. #, c-format
  2361. msgid "Failed to resolve the hostname %s, cause: %s"
  2362. msgstr ""
  2363. #: src/message.h:250
  2364. #, c-format
  2365. msgid "Failed to connect to the host %s, cause: %s"
  2366. msgstr ""
  2367. #: src/message.h:251
  2368. #, c-format
  2369. msgid "Failed to check whether the socket is writable, cause: %s"
  2370. msgstr ""
  2371. #: src/message.h:252
  2372. #, c-format
  2373. msgid "Failed to check whether the socket is readable, cause: %s"
  2374. msgstr ""
  2375. #: src/message.h:253
  2376. #, c-format
  2377. msgid "Failed to send data, cause: %s"
  2378. msgstr ""
  2379. #: src/message.h:254
  2380. #, c-format
  2381. msgid "Failed to receive data, cause: %s"
  2382. msgstr ""
  2383. #: src/message.h:255
  2384. #, c-format
  2385. msgid "Failed to peek data, cause: %s"
  2386. msgstr ""
  2387. #: src/message.h:256
  2388. #, c-format
  2389. msgid "Unknown socket error %d (0x%x)"
  2390. msgstr ""
  2391. #: src/message.h:257
  2392. #, c-format
  2393. msgid "File %s exists, but %s does not exist."
  2394. msgstr ""
  2395. #: src/message.h:259
  2396. #, c-format
  2397. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2398. msgstr ""
  2399. #: src/message.h:260
  2400. #, c-format
  2401. msgid "Invalid ID=%d for %s. It should be %d."
  2402. msgstr ""
  2403. #: src/message.h:262
  2404. msgid "Download aborted."
  2405. msgstr ""
  2406. #: src/message.h:263
  2407. #, c-format
  2408. msgid "File %s is being downloaded by other command."
  2409. msgstr ""
  2410. #: src/message.h:264
  2411. msgid "Insufficient checksums."
  2412. msgstr ""
  2413. #: src/message.h:265
  2414. #, c-format
  2415. msgid "Tracker returned failure reason: %s"
  2416. msgstr ""
  2417. #: src/message.h:266
  2418. msgid "Flooding detected."
  2419. msgstr ""
  2420. #: src/message.h:268
  2421. #, c-format
  2422. msgid ""
  2423. "Drop connection because no request/piece messages were exchanged in a "
  2424. "certain period(%ld seconds)."
  2425. msgstr ""
  2426. #: src/message.h:270
  2427. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2428. msgstr ""
  2429. #: src/message.h:271
  2430. #, c-format
  2431. msgid "No such file entry %s"
  2432. msgstr ""
  2433. #: src/message.h:272
  2434. #, c-format
  2435. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2436. msgstr ""
  2437. #: src/message.h:273
  2438. msgid "No HttpRequestEntry found."
  2439. msgstr ""
  2440. #: src/message.h:274
  2441. #, c-format
  2442. msgid "Got %d status, but no location header provided."
  2443. msgstr ""
  2444. #: src/message.h:276
  2445. msgid "No file matched with your preference."
  2446. msgstr ""
  2447. #: src/message.h:277
  2448. msgid "Exception caught"
  2449. msgstr ""
  2450. #: src/message.h:278
  2451. #, c-format
  2452. msgid "Max payload length exceeded or invalid. length = %u"
  2453. msgstr ""
  2454. #: src/message.h:279
  2455. #, c-format
  2456. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2457. msgstr ""
  2458. #~ msgid "must be either 'true' or 'false'."
  2459. #~ msgstr "skal enten være 'true' (sand) eller 'false' (falsk)"
  2460. #~ msgid "must be between %s and %s."
  2461. #~ msgstr "skal være i mellem %s og %s."
  2462. #~ msgid "must be smaller than or equal to %s."
  2463. #~ msgstr "skal være mindre end eller lig med %s."
  2464. #~ msgid "must be greater than or equal to %s."
  2465. #~ msgstr "skal være større end eller lig med %s."
  2466. #~ msgid "must be a number."
  2467. #~ msgstr "skal være et tal."
  2468. #~ msgid "must be smaller than or equal to %.1f."
  2469. #~ msgstr "skal være mindre end eller lig med %.1f."
  2470. #~ msgid "must be between %.1f and %.1f."
  2471. #~ msgstr "skal være imellem %.1f og %.1f."
  2472. #~ msgid "must be greater than or equal to %.1f."
  2473. #~ msgstr "skal være større end eller lig med %.1f."
  2474. #~ msgid "must be one of the following:"
  2475. #~ msgstr "skal være en af de følgende:"
  2476. #~ msgid "unrecognized proxy format"
  2477. #~ msgstr "ukendt proxy format"
  2478. #~ msgid "Unrecognized format"
  2479. #~ msgstr "Ukendt format"