da.po 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597
  1. # Danish translation apt.
  2. # Copyright (C) 2013 apt & nedenstående oversættere.
  3. # This file is distributed under the same license as the apt package.
  4. # Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2002, 2003, 2004, 2005, 2006, 2007.
  5. # Joe Hansen <joedalton2@yahoo.dk>, 2010, 2012, 2013.
  6. #
  7. # solver -> problemløser
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: apt\n"
  12. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  13. "POT-Creation-Date: 2014-04-10 10:18+0200\n"
  14. "PO-Revision-Date: 2013-12-14 23:51+0200\n"
  15. "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
  16. "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
  17. "Language: \n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  22. #: cmdline/apt-cache.cc:149
  23. #, c-format
  24. msgid "Package %s version %s has an unmet dep:\n"
  25. msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n"
  26. #: cmdline/apt-cache.cc:277
  27. msgid "Total package names: "
  28. msgstr "Samlet antal pakkenavne: "
  29. #: cmdline/apt-cache.cc:279
  30. msgid "Total package structures: "
  31. msgstr "Samlet antal pakkestrukturer: "
  32. #: cmdline/apt-cache.cc:319
  33. msgid " Normal packages: "
  34. msgstr " Normale pakker: "
  35. #: cmdline/apt-cache.cc:320
  36. msgid " Pure virtual packages: "
  37. msgstr " Rene virtuelle pakker: "
  38. #: cmdline/apt-cache.cc:321
  39. msgid " Single virtual packages: "
  40. msgstr " Enkelte virtuelle pakker: "
  41. #: cmdline/apt-cache.cc:322
  42. msgid " Mixed virtual packages: "
  43. msgstr " Blandede virtuelle pakker: "
  44. #: cmdline/apt-cache.cc:323
  45. msgid " Missing: "
  46. msgstr " Manglende: "
  47. #: cmdline/apt-cache.cc:325
  48. msgid "Total distinct versions: "
  49. msgstr "Totale forskellige versioner: "
  50. #: cmdline/apt-cache.cc:327
  51. msgid "Total distinct descriptions: "
  52. msgstr "Sammenlagt forskellige beskrivelser: "
  53. #: cmdline/apt-cache.cc:329
  54. msgid "Total dependencies: "
  55. msgstr "Sammenlagt afhængigheder: "
  56. #: cmdline/apt-cache.cc:332
  57. msgid "Total ver/file relations: "
  58. msgstr "Sammenlagt version/fil-relationer: "
  59. #: cmdline/apt-cache.cc:334
  60. msgid "Total Desc/File relations: "
  61. msgstr "Sammenlagt version/fil-relationer: "
  62. #: cmdline/apt-cache.cc:336
  63. msgid "Total Provides mappings: "
  64. msgstr "Sammenlagt »Tilbyder«-markeringer: "
  65. #: cmdline/apt-cache.cc:348
  66. msgid "Total globbed strings: "
  67. msgstr "Totalle søgemønsterstrenge: "
  68. #: cmdline/apt-cache.cc:362
  69. msgid "Total dependency version space: "
  70. msgstr "Total afhængighedsversions-plads: "
  71. #: cmdline/apt-cache.cc:367
  72. msgid "Total slack space: "
  73. msgstr "Total »Slack«-plads: "
  74. #: cmdline/apt-cache.cc:375
  75. msgid "Total space accounted for: "
  76. msgstr "Total plads, der kan gøres rede for: "
  77. #: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155
  78. #: apt-private/private-show.cc:58
  79. #, c-format
  80. msgid "Package file %s is out of sync."
  81. msgstr "Pakkefilen %s er ude af trit."
  82. #: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441
  83. #: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59
  84. #: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232
  85. #: apt-private/private-show.cc:171 apt-private/private-show.cc:173
  86. msgid "No packages found"
  87. msgstr "Fandt ingen pakker"
  88. #: cmdline/apt-cache.cc:1254
  89. msgid "You must give at least one search pattern"
  90. msgstr "Du skal angive mindst ét søgemønster"
  91. #: cmdline/apt-cache.cc:1420
  92. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  93. msgstr ""
  94. "Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for."
  95. #: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594
  96. #, c-format
  97. msgid "Unable to locate package %s"
  98. msgstr "Kunne ikke lokalisere pakken %s"
  99. # Overskriften til apt-cache policy,
  100. # forkorter "Package" væk. CH
  101. #: cmdline/apt-cache.cc:1545
  102. msgid "Package files:"
  103. msgstr "Pakkefiler:"
  104. #: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643
  105. msgid "Cache is out of sync, can't x-ref a package file"
  106. msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil"
  107. #. Show any packages have explicit pins
  108. #: cmdline/apt-cache.cc:1566
  109. msgid "Pinned packages:"
  110. msgstr "»Pinned« pakker:"
  111. #: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623
  112. msgid "(not found)"
  113. msgstr "(ikke fundet)"
  114. #: cmdline/apt-cache.cc:1586
  115. msgid " Installed: "
  116. msgstr " Installeret: "
  117. #: cmdline/apt-cache.cc:1587
  118. msgid " Candidate: "
  119. msgstr " Kandidat: "
  120. #: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613
  121. msgid "(none)"
  122. msgstr "(ingen)"
  123. #: cmdline/apt-cache.cc:1620
  124. msgid " Package pin: "
  125. msgstr " Pakke-pin: "
  126. #. Show the priority tables
  127. #: cmdline/apt-cache.cc:1629
  128. msgid " Version table:"
  129. msgstr " Versionstabel:"
  130. #: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83
  131. #: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388
  132. #: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217
  133. #: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42
  134. #: cmdline/apt-sortpkgs.cc:147
  135. #, c-format
  136. msgid "%s %s for %s compiled on %s %s\n"
  137. msgstr "%s %s for %s kompileret på %s %s\n"
  138. #: cmdline/apt-cache.cc:1749
  139. msgid ""
  140. "Usage: apt-cache [options] command\n"
  141. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  142. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  143. "\n"
  144. "apt-cache is a low-level tool used to query information\n"
  145. "from APT's binary cache files\n"
  146. "\n"
  147. "Commands:\n"
  148. " gencaches - Build both the package and source cache\n"
  149. " showpkg - Show some general information for a single package\n"
  150. " showsrc - Show source records\n"
  151. " stats - Show some basic statistics\n"
  152. " dump - Show the entire file in a terse form\n"
  153. " dumpavail - Print an available file to stdout\n"
  154. " unmet - Show unmet dependencies\n"
  155. " search - Search the package list for a regex pattern\n"
  156. " show - Show a readable record for the package\n"
  157. " depends - Show raw dependency information for a package\n"
  158. " rdepends - Show reverse dependency information for a package\n"
  159. " pkgnames - List the names of all packages in the system\n"
  160. " dotty - Generate package graphs for GraphViz\n"
  161. " xvcg - Generate package graphs for xvcg\n"
  162. " policy - Show policy settings\n"
  163. "\n"
  164. "Options:\n"
  165. " -h This help text.\n"
  166. " -p=? The package cache.\n"
  167. " -s=? The source cache.\n"
  168. " -q Disable progress indicator.\n"
  169. " -i Show only important deps for the unmet command.\n"
  170. " -c=? Read this configuration file\n"
  171. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  172. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  173. msgstr ""
  174. "Brug: apt-cache [tilvalg] kommando\n"
  175. " apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n"
  176. " apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n"
  177. "\n"
  178. "apt-cache er et lavniveauværktøj, brugt til at manipulere APTs\n"
  179. "binære mellemlagerfiler og hente oplysninger fra dem.\n"
  180. "\n"
  181. "Kommandoer:\n"
  182. " gencaches - Opbyg både pakke- og kildemellemlageret\n"
  183. " showpkg - Vis generelle oplysninger om en enkelt pakke\n"
  184. " showsrc - Vis kildetekstposter\n"
  185. " stats - Vis nogle grundlæggende statistikker\n"
  186. " dump - Vis hele filen i kort form\n"
  187. " dumpavail - Udlæs en »available«-fil til standard-ud\n"
  188. " unmet - Vis uopfyldte afhængigheder\n"
  189. " search - Gennemsøg pakkelisten med et regulært udtryk\n"
  190. " show - Vis en læsbar post for pakken\n"
  191. " depends - Vis de rå afhængighedsoplysninger for en pakke\n"
  192. " rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n"
  193. " pkgnames - Vis navnene på alle pakker\n"
  194. " dotty - Generér pakkegrafer til GraphViz\n"
  195. " xvcg - Generér pakkegrafer til xvcg\n"
  196. " policy - Vis policy-indstillinger\n"
  197. "\n"
  198. "Tilvalg:\n"
  199. " -h Denne hjælpetekst.\n"
  200. " -p=? Pakkemellemlageret.\n"
  201. " -s=? Kildemellemlageret.\n"
  202. " -q Deaktiver fremgangsindikatoren.\n"
  203. " -i Vis kun vigtige afhængigheder for kommandoen »unmet«.\n"
  204. " -c=? Læs denne opsætningsfil\n"
  205. " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
  206. "Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n"
  207. #: cmdline/apt-cdrom.cc:76
  208. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  209. msgstr ""
  210. "Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«"
  211. #: cmdline/apt-cdrom.cc:91
  212. msgid "Please insert a Disc in the drive and press enter"
  213. msgstr "Indsæt en disk i drevet og tryk retur"
  214. #: cmdline/apt-cdrom.cc:139
  215. #, c-format
  216. msgid "Failed to mount '%s' to '%s'"
  217. msgstr "Kunne ikke montere %s til %s"
  218. #: cmdline/apt-cdrom.cc:178
  219. #, fuzzy
  220. msgid ""
  221. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  222. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  223. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  224. "mount point."
  225. msgstr ""
  226. "Der kunne ikke detekteres et cd-rom-drev eller findes et monteringspunkt.\n"
  227. "Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet. Se "
  228. "»man apt-cdrom« for yderligere information om automatisk detektering af cd-"
  229. "rom og monteringspunkt."
  230. #: cmdline/apt-cdrom.cc:182
  231. msgid "Repeat this process for the rest of the CDs in your set."
  232. msgstr "Gentag processen for resten af cd'erne i dit sæt."
  233. #: cmdline/apt-config.cc:48
  234. msgid "Arguments not in pairs"
  235. msgstr "Parametre ikke angivet i par"
  236. #: cmdline/apt-config.cc:89
  237. msgid ""
  238. "Usage: apt-config [options] command\n"
  239. "\n"
  240. "apt-config is a simple tool to read the APT config file\n"
  241. "\n"
  242. "Commands:\n"
  243. " shell - Shell mode\n"
  244. " dump - Show the configuration\n"
  245. "\n"
  246. "Options:\n"
  247. " -h This help text.\n"
  248. " -c=? Read this configuration file\n"
  249. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  250. msgstr ""
  251. "Brug: apt-config [tilvalg] kommando\n"
  252. "\n"
  253. "apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n"
  254. "\n"
  255. "Kommandoer:\n"
  256. " shell - Skal-tilstand\n"
  257. " dump - Vis opsætningen\n"
  258. "\n"
  259. "Tilvalg:\n"
  260. " -h Denne hjælpetekst.\n"
  261. " -c=? Læs denne opsætningsfil\n"
  262. " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
  263. #: cmdline/apt-get.cc:245
  264. #, c-format
  265. msgid "Can not find a package for architecture '%s'"
  266. msgstr "Kan ikke finde en pakke for arkitektur »%s«"
  267. #: cmdline/apt-get.cc:327
  268. #, c-format
  269. msgid "Can not find a package '%s' with version '%s'"
  270. msgstr "Kan ikke finde en pakke »%s« med version »%s«"
  271. #: cmdline/apt-get.cc:330
  272. #, c-format
  273. msgid "Can not find a package '%s' with release '%s'"
  274. msgstr "Kan ikke finde en pakke »%s« med udgivelse »%s«"
  275. #: cmdline/apt-get.cc:367
  276. #, c-format
  277. msgid "Picking '%s' as source package instead of '%s'\n"
  278. msgstr "Vælger »%s« som kildepakke fremfor »%s«\n"
  279. #: cmdline/apt-get.cc:423
  280. #, c-format
  281. msgid "Can not find version '%s' of package '%s'"
  282. msgstr "Kan ikke finde version »%s« for pakke »%s«"
  283. #: cmdline/apt-get.cc:454
  284. #, c-format
  285. msgid "Couldn't find package %s"
  286. msgstr "Kunne ikke finde pakken %s"
  287. #: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81
  288. #, c-format
  289. msgid "%s set to manually installed.\n"
  290. msgstr "%s sat til manuelt installeret.\n"
  291. #: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83
  292. #, c-format
  293. msgid "%s set to automatically installed.\n"
  294. msgstr "%s sat til automatisk installation.\n"
  295. #: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127
  296. msgid ""
  297. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  298. "instead."
  299. msgstr ""
  300. "Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark "
  301. "manual« i stedet for."
  302. #: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546
  303. msgid "Internal error, problem resolver broke stuff"
  304. msgstr "Intern fejl. Problemløseren ødelagde noget"
  305. #: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611
  306. msgid "Unable to lock the download directory"
  307. msgstr "Kunne ikke låse nedhentningsmappen"
  308. #: cmdline/apt-get.cc:726
  309. msgid "Must specify at least one package to fetch source for"
  310. msgstr "Du skal angive mindst én pakke at hente kildeteksten til"
  311. #: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058
  312. #, c-format
  313. msgid "Unable to find a source package for %s"
  314. msgstr "Kunne ikke finde kildetekstpakken for %s"
  315. #: cmdline/apt-get.cc:782
  316. #, c-format
  317. msgid ""
  318. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  319. "%s\n"
  320. msgstr ""
  321. "BEMÆRK: Pakning af »%s« vedligeholdes i versionskontrolsystemet »%s« på:\n"
  322. "%s\n"
  323. #: cmdline/apt-get.cc:787
  324. #, c-format
  325. msgid ""
  326. "Please use:\n"
  327. "bzr branch %s\n"
  328. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  329. msgstr ""
  330. "Brug venligst:\n"
  331. "bzr branch %s\n"
  332. "for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n"
  333. #: cmdline/apt-get.cc:839
  334. #, c-format
  335. msgid "Skipping already downloaded file '%s'\n"
  336. msgstr "Overspringer allerede hentet fil »%s«\n"
  337. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864
  338. #: apt-private/private-install.cc:186 apt-private/private-install.cc:189
  339. #, c-format
  340. msgid "Couldn't determine free space in %s"
  341. msgstr "Kunne ikke bestemme ledig plads i %s"
  342. #: cmdline/apt-get.cc:874
  343. #, c-format
  344. msgid "You don't have enough free space in %s"
  345. msgstr "Du har ikke nok ledig plads i %s"
  346. #. TRANSLATOR: The required space between number and unit is already included
  347. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  348. #: cmdline/apt-get.cc:883
  349. #, c-format
  350. msgid "Need to get %sB/%sB of source archives.\n"
  351. msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n"
  352. #. TRANSLATOR: The required space between number and unit is already included
  353. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  354. #: cmdline/apt-get.cc:888
  355. #, c-format
  356. msgid "Need to get %sB of source archives.\n"
  357. msgstr "%sB skal hentes fra kildetekst-arkiverne.\n"
  358. #: cmdline/apt-get.cc:894
  359. #, c-format
  360. msgid "Fetch source %s\n"
  361. msgstr "Henter kildetekst %s\n"
  362. #: cmdline/apt-get.cc:912
  363. msgid "Failed to fetch some archives."
  364. msgstr "Nogle arkiver kunne ikke hentes."
  365. #: cmdline/apt-get.cc:917 apt-private/private-install.cc:313
  366. msgid "Download complete and in download only mode"
  367. msgstr "Nedhentning afsluttet i »hent-kun«-tilstand"
  368. #: cmdline/apt-get.cc:942
  369. #, c-format
  370. msgid "Skipping unpack of already unpacked source in %s\n"
  371. msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n"
  372. #: cmdline/apt-get.cc:954
  373. #, c-format
  374. msgid "Unpack command '%s' failed.\n"
  375. msgstr "Udpakningskommandoen »%s« fejlede.\n"
  376. #: cmdline/apt-get.cc:955
  377. #, c-format
  378. msgid "Check if the 'dpkg-dev' package is installed.\n"
  379. msgstr "Tjek om pakken »dpkg-dev« er installeret.\n"
  380. #: cmdline/apt-get.cc:983
  381. #, c-format
  382. msgid "Build command '%s' failed.\n"
  383. msgstr "Opbygningskommandoen »%s« fejlede.\n"
  384. #: cmdline/apt-get.cc:1002
  385. msgid "Child process failed"
  386. msgstr "Barneprocessen fejlede"
  387. #: cmdline/apt-get.cc:1021
  388. msgid "Must specify at least one package to check builddeps for"
  389. msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for"
  390. #: cmdline/apt-get.cc:1046
  391. #, c-format
  392. msgid ""
  393. "No architecture information available for %s. See apt.conf(5) APT::"
  394. "Architectures for setup"
  395. msgstr ""
  396. "Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::"
  397. "Architectures for opsætning"
  398. #: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073
  399. #, c-format
  400. msgid "Unable to get build-dependency information for %s"
  401. msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s"
  402. #: cmdline/apt-get.cc:1093
  403. #, c-format
  404. msgid "%s has no build depends.\n"
  405. msgstr "%s har ingen opbygningsafhængigheder.\n"
  406. #: cmdline/apt-get.cc:1263
  407. #, c-format
  408. msgid ""
  409. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  410. "packages"
  411. msgstr ""
  412. "Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på »%s«"
  413. #: cmdline/apt-get.cc:1281
  414. #, c-format
  415. msgid ""
  416. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  417. "found"
  418. msgstr ""
  419. "Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet"
  420. #: cmdline/apt-get.cc:1304
  421. #, c-format
  422. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  423. msgstr ""
  424. "Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for "
  425. "ny"
  426. #: cmdline/apt-get.cc:1343
  427. #, c-format
  428. msgid ""
  429. "%s dependency for %s cannot be satisfied because candidate version of "
  430. "package %s can't satisfy version requirements"
  431. msgstr ""
  432. "Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige "
  433. "kandidater for pakken %s kan tilfredsstille versionskravene"
  434. #: cmdline/apt-get.cc:1349
  435. #, c-format
  436. msgid ""
  437. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  438. "version"
  439. msgstr ""
  440. "%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en "
  441. "kandidatversion"
  442. #: cmdline/apt-get.cc:1372
  443. #, c-format
  444. msgid "Failed to satisfy %s dependency for %s: %s"
  445. msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s"
  446. #: cmdline/apt-get.cc:1387
  447. #, c-format
  448. msgid "Build-dependencies for %s could not be satisfied."
  449. msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes."
  450. #: cmdline/apt-get.cc:1392
  451. msgid "Failed to process build dependencies"
  452. msgstr "Kunne ikke behandler opbygningsafhængighederne"
  453. #: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497
  454. #, c-format
  455. msgid "Changelog for %s (%s)"
  456. msgstr "Ændringslog for %s (%s)"
  457. #: cmdline/apt-get.cc:1583
  458. msgid "Supported modules:"
  459. msgstr "Understøttede moduler:"
  460. #: cmdline/apt-get.cc:1624
  461. msgid ""
  462. "Usage: apt-get [options] command\n"
  463. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  464. " apt-get [options] source pkg1 [pkg2 ...]\n"
  465. "\n"
  466. "apt-get is a simple command line interface for downloading and\n"
  467. "installing packages. The most frequently used commands are update\n"
  468. "and install.\n"
  469. "\n"
  470. "Commands:\n"
  471. " update - Retrieve new lists of packages\n"
  472. " upgrade - Perform an upgrade\n"
  473. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  474. " remove - Remove packages\n"
  475. " autoremove - Remove automatically all unused packages\n"
  476. " purge - Remove packages and config files\n"
  477. " source - Download source archives\n"
  478. " build-dep - Configure build-dependencies for source packages\n"
  479. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  480. " dselect-upgrade - Follow dselect selections\n"
  481. " clean - Erase downloaded archive files\n"
  482. " autoclean - Erase old downloaded archive files\n"
  483. " check - Verify that there are no broken dependencies\n"
  484. " changelog - Download and display the changelog for the given package\n"
  485. " download - Download the binary package into the current directory\n"
  486. "\n"
  487. "Options:\n"
  488. " -h This help text.\n"
  489. " -q Loggable output - no progress indicator\n"
  490. " -qq No output except for errors\n"
  491. " -d Download only - do NOT install or unpack archives\n"
  492. " -s No-act. Perform ordering simulation\n"
  493. " -y Assume Yes to all queries and do not prompt\n"
  494. " -f Attempt to correct a system with broken dependencies in place\n"
  495. " -m Attempt to continue if archives are unlocatable\n"
  496. " -u Show a list of upgraded packages as well\n"
  497. " -b Build the source package after fetching it\n"
  498. " -V Show verbose version numbers\n"
  499. " -c=? Read this configuration file\n"
  500. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  501. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  502. "pages for more information and options.\n"
  503. " This APT has Super Cow Powers.\n"
  504. msgstr ""
  505. "Brug: apt-get [tilvalg] kommando\n"
  506. " apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n"
  507. " apt-get [tilvalg] source pakke1 [pakke2 ...]\n"
  508. "\n"
  509. "apt-get er en simpel kommandolinjegrænseflade til at hente og\n"
  510. "installere pakker. De hyppigst brugte kommandoer er update og\n"
  511. "install.\n"
  512. "\n"
  513. "Kommandoer:\n"
  514. " update - Hent nye lister over pakker\n"
  515. " upgrade - Udfør en opgradering\n"
  516. " install - Installer nye pakker (pakke er libc6, ikke libc6.deb)\n"
  517. " remove - Afinstaller pakker\n"
  518. " autoremove - Afinstaller automatisk alle ubrugte pakker\n"
  519. " purge - Fjern pakker og konfigurationsfiler\n"
  520. " source - Hent kildetekstarkiver\n"
  521. " build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n"
  522. " dist-upgrade - Distributionsopgradering, se apt-get(8)\n"
  523. " dselect-upgrade - Følg valgene fra dselect\n"
  524. " clean - Slet hentede arkivfiler\n"
  525. " autoclean - Slet gamle hentede arkivfiler\n"
  526. " check - Tjek at der ikke er uopfyldte afhængigheder\n"
  527. " changelog - Hent og vis ændringsloggen for den angivne pakke\n"
  528. " download - Hent den binære pakke til den aktuelle mappe\n"
  529. "\n"
  530. "Tilvalg:\n"
  531. " -h Denne hjælpetekst.\n"
  532. " -q Uddata, der kan logges - ingen fremgangsindikator\n"
  533. " -qq Ingen uddata, kun fejl\n"
  534. " -d Hent kun - installér eller udpak IKKE arkiverne\n"
  535. " -s Gør intet. Simulér handlingen\n"
  536. " -y Antag »ja«-svar til alle spørgsmål uden at spørge\n"
  537. " -f Forsøg at fortsætte selvom integritetstjek fejler\n"
  538. " -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n"
  539. " -u Vis også en liste over opgraderede pakker\n"
  540. " -b Byg kildetekstpakken efter at have hentet den\n"
  541. " -V Vis detaljerede versionsnumre\n"
  542. " -c=? Læs denne opsætningsfil\n"
  543. " -o=? Angiv et arbitrært opsætningsvalg. F.eks. -o dir::cache=/tmp\n"
  544. "Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n"
  545. "for flere oplysninger og tilvalg.\n"
  546. " Denne APT har »Super Cow Powers«.\n"
  547. #: cmdline/apt-helper.cc:35
  548. #, fuzzy
  549. msgid "Must specify at least one pair url/filename"
  550. msgstr "Du skal angive mindst én pakke at hente kildeteksten til"
  551. #: cmdline/apt-helper.cc:52
  552. msgid "Download Failed"
  553. msgstr ""
  554. #: cmdline/apt-helper.cc:65
  555. msgid ""
  556. "Usage: apt-helper [options] command\n"
  557. " apt-helper [options] download-file uri target-path\n"
  558. "\n"
  559. "apt-helper is a internal helper for apt\n"
  560. "\n"
  561. "Commands:\n"
  562. " download-file - download the given uri to the target-path\n"
  563. "\n"
  564. " This APT helper has Super Meep Powers.\n"
  565. msgstr ""
  566. #: cmdline/apt-mark.cc:68
  567. #, c-format
  568. msgid "%s can not be marked as it is not installed.\n"
  569. msgstr "%s kan ikke markeres, da den ikke er installeret.\n"
  570. #: cmdline/apt-mark.cc:74
  571. #, c-format
  572. msgid "%s was already set to manually installed.\n"
  573. msgstr "%s var allerede sat til manuelt installeret.\n"
  574. #: cmdline/apt-mark.cc:76
  575. #, c-format
  576. msgid "%s was already set to automatically installed.\n"
  577. msgstr "%s var allerede sat til automatisk installeret.\n"
  578. #: cmdline/apt-mark.cc:241
  579. #, c-format
  580. msgid "%s was already set on hold.\n"
  581. msgstr "%s var allerede sat i bero.\n"
  582. #: cmdline/apt-mark.cc:243
  583. #, c-format
  584. msgid "%s was already not hold.\n"
  585. msgstr "%s var allerede ikke i bero.\n"
  586. #: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339
  587. #: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219
  588. #: apt-pkg/deb/dpkgpm.cc:1201
  589. #, c-format
  590. msgid "Waited for %s but it wasn't there"
  591. msgstr "Ventede på %s, men den var der ikke"
  592. #: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322
  593. #, c-format
  594. msgid "%s set on hold.\n"
  595. msgstr "%s sat i bero.\n"
  596. #: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327
  597. #, c-format
  598. msgid "Canceled hold on %s.\n"
  599. msgstr "Afbrød i bero for %s.\n"
  600. #: cmdline/apt-mark.cc:345
  601. msgid "Executing dpkg failed. Are you root?"
  602. msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?"
  603. #: cmdline/apt-mark.cc:392
  604. #, fuzzy
  605. msgid ""
  606. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  607. "\n"
  608. "apt-mark is a simple command line interface for marking packages\n"
  609. "as manually or automatically installed. It can also list marks.\n"
  610. "\n"
  611. "Commands:\n"
  612. " auto - Mark the given packages as automatically installed\n"
  613. " manual - Mark the given packages as manually installed\n"
  614. " hold - Mark a package as held back\n"
  615. " unhold - Unset a package set as held back\n"
  616. " showauto - Print the list of automatically installed packages\n"
  617. " showmanual - Print the list of manually installed packages\n"
  618. " showhold - Print the list of package on hold\n"
  619. "\n"
  620. "Options:\n"
  621. " -h This help text.\n"
  622. " -q Loggable output - no progress indicator\n"
  623. " -qq No output except for errors\n"
  624. " -s No-act. Just prints what would be done.\n"
  625. " -f read/write auto/manual marking in the given file\n"
  626. " -c=? Read this configuration file\n"
  627. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  628. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  629. msgstr ""
  630. "Brug: apt-mark [tilvalg] {auto|manual} pakke1 [pakke2 ...]\n"
  631. "\n"
  632. "apt-mark er en simpel kommandolinjegrænseflade for markering af pakker\n"
  633. "som manuelt eller automatisk installeret. Programmet kan også vise\n"
  634. "markeringerne.\n"
  635. "\n"
  636. "Kommandoer:\n"
  637. " auto - Marker de givne pakker som automatisk installeret\n"
  638. " manual - Marker de givne pakker som manuelt installeret\n"
  639. "\n"
  640. "Tilvalg:\n"
  641. " -h Denne hjælpetekst.\n"
  642. " -q Logbar uddata - ingen statusindikator\n"
  643. " -qq Ingen uddata undtagen for fejl\n"
  644. " -s Ingen handling. Viser kun hvad der ville blive udført.\n"
  645. " -f læs/skriv auto/manuel markering i den givne fil\n"
  646. " -c=? Læs denne konfigurationsfil\n"
  647. " -o=? Angiv en arbitrær konfigurationsindstilling, f.eks. -o dir::cache=/"
  648. "tmp\n"
  649. "Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information."
  650. #: cmdline/apt.cc:47
  651. #, fuzzy
  652. msgid ""
  653. "Usage: apt [options] command\n"
  654. "\n"
  655. "CLI for apt.\n"
  656. "Basic commands: \n"
  657. " list - list packages based on package names\n"
  658. " search - search in package descriptions\n"
  659. " show - show package details\n"
  660. "\n"
  661. " update - update list of available packages\n"
  662. "\n"
  663. " install - install packages\n"
  664. " remove - remove packages\n"
  665. "\n"
  666. " upgrade - upgrade the system by installing/upgrading packages\n"
  667. " full-upgrade - upgrade the system by removing/installing/upgrading "
  668. "packages\n"
  669. "\n"
  670. " edit-sources - edit the source information file\n"
  671. msgstr ""
  672. "Brug: apt [tilvalg] kommando\n"
  673. "\n"
  674. "CLI for apt.\n"
  675. "Kommandoer: \n"
  676. " list - vis pakker baseret på pakkenavn\n"
  677. " search - søg i pakkebeskrivelser\n"
  678. " show - vis pakkedetaljer\n"
  679. "\n"
  680. " update - opdater listen over tilgængelige pakker\n"
  681. " install - installer pakker\n"
  682. " upgrade - opgrader systemets pakker\n"
  683. "\n"
  684. " edit-sources - rediger source-informationsfilen (kildefilen)\n"
  685. #: methods/cdrom.cc:203
  686. #, c-format
  687. msgid "Unable to read the cdrom database %s"
  688. msgstr "Kunne ikke læse cdrom-databasen %s"
  689. #: methods/cdrom.cc:212
  690. msgid ""
  691. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  692. "cannot be used to add new CD-ROMs"
  693. msgstr ""
  694. "Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke "
  695. "bruges til at tilføje nye cd'er"
  696. #: methods/cdrom.cc:222
  697. msgid "Wrong CD-ROM"
  698. msgstr "Forkert cd"
  699. #: methods/cdrom.cc:249
  700. #, c-format
  701. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  702. msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug."
  703. #: methods/cdrom.cc:254
  704. msgid "Disk not found."
  705. msgstr "Disk blev ikke fundet."
  706. #: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278
  707. msgid "File not found"
  708. msgstr "Fil blev ikke fundet"
  709. #: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598
  710. #: methods/rred.cc:608
  711. msgid "Failed to stat"
  712. msgstr "Kunne ikke finde"
  713. #: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605
  714. msgid "Failed to set modification time"
  715. msgstr "Kunne ikke angive ændringstidspunkt"
  716. #: methods/file.cc:48
  717. msgid "Invalid URI, local URIS must not start with //"
  718. msgstr "Ugyldig URI, lokale URI'er må ikke starte med //"
  719. #. Login must be before getpeername otherwise dante won't work.
  720. #: methods/ftp.cc:177
  721. msgid "Logging in"
  722. msgstr "Logget på"
  723. #: methods/ftp.cc:183
  724. msgid "Unable to determine the peer name"
  725. msgstr "Kunne ikke bestemme serverens navn"
  726. #: methods/ftp.cc:188
  727. msgid "Unable to determine the local name"
  728. msgstr "Kunne ikke bestemme det lokale navn"
  729. #: methods/ftp.cc:219 methods/ftp.cc:247
  730. #, c-format
  731. msgid "The server refused the connection and said: %s"
  732. msgstr "Serveren nægtede os forbindelse og sagde: %s"
  733. #: methods/ftp.cc:225
  734. #, c-format
  735. msgid "USER failed, server said: %s"
  736. msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s"
  737. #: methods/ftp.cc:232
  738. #, c-format
  739. msgid "PASS failed, server said: %s"
  740. msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s"
  741. #: methods/ftp.cc:252
  742. msgid ""
  743. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  744. "is empty."
  745. msgstr ""
  746. "Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::"
  747. "ProxyLogin er tom."
  748. #: methods/ftp.cc:280
  749. #, c-format
  750. msgid "Login script command '%s' failed, server said: %s"
  751. msgstr "Logpå-skriptets kommando »%s« mislykkedes. Serveren sagde: %s"
  752. #: methods/ftp.cc:306
  753. #, c-format
  754. msgid "TYPE failed, server said: %s"
  755. msgstr "TYPE mislykkedes. Serveren sagde: %s"
  756. #: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240
  757. msgid "Connection timeout"
  758. msgstr "Tidsudløb på forbindelsen"
  759. #: methods/ftp.cc:350
  760. msgid "Server closed the connection"
  761. msgstr "Serveren lukkede forbindelsen"
  762. #: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475
  763. #: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489
  764. #: apt-pkg/contrib/fileutl.cc:1491
  765. msgid "Read error"
  766. msgstr "Læsefejl"
  767. #: methods/ftp.cc:360 methods/rsh.cc:209
  768. msgid "A response overflowed the buffer."
  769. msgstr "Mellemlageret blev overfyldt af et svar."
  770. #: methods/ftp.cc:377 methods/ftp.cc:389
  771. msgid "Protocol corruption"
  772. msgstr "Protokolfejl"
  773. #: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875
  774. #: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606
  775. #: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613
  776. #: apt-pkg/contrib/fileutl.cc:1638
  777. msgid "Write error"
  778. msgstr "Skrivefejl"
  779. #: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742
  780. msgid "Could not create a socket"
  781. msgstr "Kunne ikke oprette sokkel"
  782. #: methods/ftp.cc:712
  783. msgid "Could not connect data socket, connection timed out"
  784. msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen"
  785. #: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28
  786. msgid "Failed"
  787. msgstr "Mislykkedes"
  788. #: methods/ftp.cc:718
  789. msgid "Could not connect passive socket."
  790. msgstr "Kunne ikke forbinde passiv sokkel."
  791. #: methods/ftp.cc:735
  792. msgid "getaddrinfo was unable to get a listening socket"
  793. msgstr "getaddrinfo kunne ikke få en lyttesokkel"
  794. #: methods/ftp.cc:749
  795. msgid "Could not bind a socket"
  796. msgstr "Kunne ikke tilknytte en sokkel"
  797. #: methods/ftp.cc:753
  798. msgid "Could not listen on the socket"
  799. msgstr "Kunne ikke lytte på soklen"
  800. #: methods/ftp.cc:760
  801. msgid "Could not determine the socket's name"
  802. msgstr "Kunne ikke finde soklens navn"
  803. #: methods/ftp.cc:792
  804. msgid "Unable to send PORT command"
  805. msgstr "Kunne ikke sende PORT-kommando"
  806. #: methods/ftp.cc:802
  807. #, c-format
  808. msgid "Unknown address family %u (AF_*)"
  809. msgstr "Ukendt adressefamilie %u (AF_*)"
  810. #: methods/ftp.cc:811
  811. #, c-format
  812. msgid "EPRT failed, server said: %s"
  813. msgstr "EPRT mislykkedes. Serveren sagde: %s"
  814. #: methods/ftp.cc:831
  815. msgid "Data socket connect timed out"
  816. msgstr "Tidsudløb på datasokkel-forbindelse"
  817. #: methods/ftp.cc:838
  818. msgid "Unable to accept connection"
  819. msgstr "Kunne ikke acceptere forbindelse"
  820. #: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316
  821. msgid "Problem hashing file"
  822. msgstr "Problem ved \"hashing\" af fil"
  823. #: methods/ftp.cc:890
  824. #, c-format
  825. msgid "Unable to fetch file, server said '%s'"
  826. msgstr "Kunne ikke hente fil. Serveren sagde »%s«"
  827. #: methods/ftp.cc:905 methods/rsh.cc:335
  828. msgid "Data socket timed out"
  829. msgstr "Tidsudløb ved datasokkel"
  830. #: methods/ftp.cc:935
  831. #, c-format
  832. msgid "Data transfer failed, server said '%s'"
  833. msgstr "Dataoverførsel mislykkedes, serveren sagde »%s«"
  834. #. Get the files information
  835. #: methods/ftp.cc:1014
  836. msgid "Query"
  837. msgstr "Forespørgsel"
  838. #: methods/ftp.cc:1128
  839. msgid "Unable to invoke "
  840. msgstr "Kunne ikke udføre "
  841. #: methods/connect.cc:76
  842. #, c-format
  843. msgid "Connecting to %s (%s)"
  844. msgstr "Forbinder til %s (%s)"
  845. #: methods/connect.cc:87
  846. #, c-format
  847. msgid "[IP: %s %s]"
  848. msgstr "[IP: %s %s]"
  849. #: methods/connect.cc:94
  850. #, c-format
  851. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  852. msgstr "Kunne ikke oprette sokkel til %s (f=%u t=%u p=%u)"
  853. #: methods/connect.cc:100
  854. #, c-format
  855. msgid "Cannot initiate the connection to %s:%s (%s)."
  856. msgstr "Kan ikke oprette forbindelse til %s:%s (%s)."
  857. #: methods/connect.cc:108
  858. #, c-format
  859. msgid "Could not connect to %s:%s (%s), connection timed out"
  860. msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb"
  861. #: methods/connect.cc:126
  862. #, c-format
  863. msgid "Could not connect to %s:%s (%s)."
  864. msgstr "Kunne ikke forbinde til %s:%s (%s)."
  865. #. We say this mainly because the pause here is for the
  866. #. ssh connection that is still going
  867. #: methods/connect.cc:154 methods/rsh.cc:439
  868. #, c-format
  869. msgid "Connecting to %s"
  870. msgstr "Forbinder til %s"
  871. #: methods/connect.cc:180 methods/connect.cc:199
  872. #, c-format
  873. msgid "Could not resolve '%s'"
  874. msgstr "Kunne ikke omsætte navnet »%s«"
  875. #: methods/connect.cc:205
  876. #, c-format
  877. msgid "Temporary failure resolving '%s'"
  878. msgstr "Midlertidig fejl ved omsætning af navnet »%s«"
  879. #: methods/connect.cc:209
  880. #, c-format
  881. msgid "System error resolving '%s:%s'"
  882. msgstr "Systemfejl under opløsning af »%s:%s«"
  883. #: methods/connect.cc:211
  884. #, c-format
  885. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  886. msgstr "Der skete noget underligt under opløsning af »%s:%s« (%i - %s)"
  887. #: methods/connect.cc:258
  888. #, c-format
  889. msgid "Unable to connect to %s:%s:"
  890. msgstr "Kunne ikke forbinde til %s:%s:"
  891. #: methods/gpgv.cc:168
  892. msgid ""
  893. "Internal error: Good signature, but could not determine key fingerprint?!"
  894. msgstr ""
  895. "Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!"
  896. #: methods/gpgv.cc:172
  897. msgid "At least one invalid signature was encountered."
  898. msgstr "Stødte på mindst én ugyldig signatur."
  899. #: methods/gpgv.cc:174
  900. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  901. msgstr ""
  902. "Kunne ikke køre »gpgv« for at verificere signaturen (er gpgv installeret?)"
  903. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  904. #: methods/gpgv.cc:180
  905. #, c-format
  906. msgid ""
  907. "Clearsigned file isn't valid, got '%s' (does the network require "
  908. "authentication?)"
  909. msgstr ""
  910. "Clearsigned-fil er ikke gyldig, fik »%s« (kræver netværket ikke "
  911. "autentificering?)"
  912. #: methods/gpgv.cc:184
  913. msgid "Unknown error executing gpgv"
  914. msgstr "Ukendt fejl ved kørsel af gpgv"
  915. #: methods/gpgv.cc:217 methods/gpgv.cc:224
  916. msgid "The following signatures were invalid:\n"
  917. msgstr "Følgende signaturer var ugyldige:\n"
  918. #: methods/gpgv.cc:231
  919. msgid ""
  920. "The following signatures couldn't be verified because the public key is not "
  921. "available:\n"
  922. msgstr ""
  923. "Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er "
  924. "tilgængelig:\n"
  925. #: methods/gzip.cc:69
  926. msgid "Empty files can't be valid archives"
  927. msgstr "Tomme filer kan ikke være gyldige arkiver"
  928. #: methods/http.cc:508
  929. msgid "Error writing to the file"
  930. msgstr "Fejl ved skrivning til filen"
  931. #: methods/http.cc:522
  932. msgid "Error reading from server. Remote end closed connection"
  933. msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
  934. #: methods/http.cc:524
  935. msgid "Error reading from server"
  936. msgstr "Fejl ved læsning fra server"
  937. #: methods/http.cc:560
  938. msgid "Error writing to file"
  939. msgstr "Fejl ved skrivning til fil"
  940. #: methods/http.cc:620
  941. msgid "Select failed"
  942. msgstr "Valg mislykkedes"
  943. #: methods/http.cc:625
  944. msgid "Connection timed out"
  945. msgstr "Tidsudløb på forbindelsen"
  946. #: methods/http.cc:648
  947. msgid "Error writing to output file"
  948. msgstr "Fejl ved skrivning af uddatafil"
  949. #: methods/server.cc:51
  950. msgid "Waiting for headers"
  951. msgstr "Afventer hoveder"
  952. #: methods/server.cc:109
  953. msgid "Bad header line"
  954. msgstr "Ugyldig linje i hovedet"
  955. #: methods/server.cc:134 methods/server.cc:141
  956. msgid "The HTTP server sent an invalid reply header"
  957. msgstr "Http-serveren sendte et ugyldigt svarhovede"
  958. #: methods/server.cc:171
  959. msgid "The HTTP server sent an invalid Content-Length header"
  960. msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede"
  961. #: methods/server.cc:194
  962. msgid "The HTTP server sent an invalid Content-Range header"
  963. msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede"
  964. #: methods/server.cc:196
  965. msgid "This HTTP server has broken range support"
  966. msgstr ""
  967. "Denne http-servere har fejlagtig understøttelse af intervaller (»ranges«)"
  968. #: methods/server.cc:220
  969. msgid "Unknown date format"
  970. msgstr "Ukendt datoformat"
  971. #: methods/server.cc:489
  972. msgid "Bad header data"
  973. msgstr "Ugyldige hoved-data"
  974. #: methods/server.cc:506 methods/server.cc:562
  975. msgid "Connection failed"
  976. msgstr "Forbindelsen mislykkedes"
  977. #: methods/server.cc:654
  978. msgid "Internal error"
  979. msgstr "Intern fejl"
  980. # måske visning, kategorisering
  981. #: apt-private/private-list.cc:131
  982. msgid "Listing"
  983. msgstr "Listing"
  984. #: apt-private/private-install.cc:81
  985. msgid "Internal error, InstallPackages was called with broken packages!"
  986. msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!"
  987. #: apt-private/private-install.cc:90
  988. msgid "Packages need to be removed but remove is disabled."
  989. msgstr "Pakker skal afinstalleres, men Remove er deaktiveret."
  990. #: apt-private/private-install.cc:109
  991. msgid "Internal error, Ordering didn't finish"
  992. msgstr "Intern fejl. Sortering blev ikke fuldført"
  993. #: apt-private/private-install.cc:147
  994. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  995. msgstr ""
  996. "Mystisk... Størrelserne passede ikke, skriv til apt@packages.debian.org"
  997. #. TRANSLATOR: The required space between number and unit is already included
  998. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  999. #: apt-private/private-install.cc:154
  1000. #, c-format
  1001. msgid "Need to get %sB/%sB of archives.\n"
  1002. msgstr "%sB/%sB skal hentes fra arkiverne.\n"
  1003. #. TRANSLATOR: The required space between number and unit is already included
  1004. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1005. #: apt-private/private-install.cc:159
  1006. #, c-format
  1007. msgid "Need to get %sB of archives.\n"
  1008. msgstr "%sB skal hentes fra arkiverne.\n"
  1009. #. TRANSLATOR: The required space between number and unit is already included
  1010. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1011. #: apt-private/private-install.cc:166
  1012. #, c-format
  1013. msgid "After this operation, %sB of additional disk space will be used.\n"
  1014. msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n"
  1015. #. TRANSLATOR: The required space between number and unit is already included
  1016. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1017. #: apt-private/private-install.cc:171
  1018. #, c-format
  1019. msgid "After this operation, %sB disk space will be freed.\n"
  1020. msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n"
  1021. #: apt-private/private-install.cc:199
  1022. #, c-format
  1023. msgid "You don't have enough free space in %s."
  1024. msgstr "Du har ikke nok ledig plads i %s."
  1025. #: apt-private/private-install.cc:209 apt-private/private-download.cc:54
  1026. msgid "There are problems and -y was used without --force-yes"
  1027. msgstr "Der er problemer og -y blev brugt uden --force-yes"
  1028. #: apt-private/private-install.cc:215 apt-private/private-install.cc:237
  1029. msgid "Trivial Only specified but this is not a trivial operation."
  1030. msgstr "»Trivial Only« angivet, men dette er ikke en triviel handling."
  1031. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1032. #. careful with hard to type or special characters (like non-breaking spaces)
  1033. #: apt-private/private-install.cc:219
  1034. msgid "Yes, do as I say!"
  1035. msgstr "Ja, gør som jeg siger!"
  1036. #: apt-private/private-install.cc:221
  1037. #, c-format
  1038. msgid ""
  1039. "You are about to do something potentially harmful.\n"
  1040. "To continue type in the phrase '%s'\n"
  1041. " ?] "
  1042. msgstr ""
  1043. "Du er ved at gøre noget, der kan være skadeligt\n"
  1044. "For at fortsætte, skal du skrive »%s«\n"
  1045. " ?] "
  1046. #: apt-private/private-install.cc:227 apt-private/private-install.cc:245
  1047. msgid "Abort."
  1048. msgstr "Afbryder."
  1049. #: apt-private/private-install.cc:242
  1050. msgid "Do you want to continue?"
  1051. msgstr "Vil du fortsætte?"
  1052. #: apt-private/private-install.cc:312
  1053. msgid "Some files failed to download"
  1054. msgstr "Nedhentningen af filer mislykkedes"
  1055. #: apt-private/private-install.cc:319
  1056. msgid ""
  1057. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1058. "missing?"
  1059. msgstr ""
  1060. "Kunne ikke hente nogle af arkiverne. Prøv evt. at køre »apt-get update« "
  1061. "eller prøv med --fix-missing."
  1062. #: apt-private/private-install.cc:323
  1063. msgid "--fix-missing and media swapping is not currently supported"
  1064. msgstr "--fix-missing og medieskift understøttes endnu ikke"
  1065. #: apt-private/private-install.cc:328
  1066. msgid "Unable to correct missing packages."
  1067. msgstr "Kunne ikke rette manglende pakker."
  1068. #: apt-private/private-install.cc:329
  1069. msgid "Aborting install."
  1070. msgstr "Afbryder installationen."
  1071. #: apt-private/private-install.cc:365
  1072. msgid ""
  1073. "The following package disappeared from your system as\n"
  1074. "all files have been overwritten by other packages:"
  1075. msgid_plural ""
  1076. "The following packages disappeared from your system as\n"
  1077. "all files have been overwritten by other packages:"
  1078. msgstr[0] ""
  1079. "Den følgende pakke forsvandt fra dit system, da\n"
  1080. "alle filer er blevet overskrevet af andre pakker:"
  1081. msgstr[1] ""
  1082. "De følgende pakker forsvandt fra dit system, da\n"
  1083. "alle filer er blevet overskrevet af andre pakker:"
  1084. #: apt-private/private-install.cc:369
  1085. msgid "Note: This is done automatically and on purpose by dpkg."
  1086. msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg."
  1087. #: apt-private/private-install.cc:390
  1088. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1089. msgstr ""
  1090. "Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte "
  1091. "AutoRemover"
  1092. #: apt-private/private-install.cc:498
  1093. msgid ""
  1094. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1095. "shouldn't happen. Please file a bug report against apt."
  1096. msgstr ""
  1097. "Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n"
  1098. "burde kunne ske. Indsend venligst en fejlrapport om apt."
  1099. #.
  1100. #. if (Packages == 1)
  1101. #. {
  1102. #. c1out << std::endl;
  1103. #. c1out <<
  1104. #. _("Since you only requested a single operation it is extremely likely that\n"
  1105. #. "the package is simply not installable and a bug report against\n"
  1106. #. "that package should be filed.") << std::endl;
  1107. #. }
  1108. #.
  1109. #: apt-private/private-install.cc:501 apt-private/private-install.cc:642
  1110. msgid "The following information may help to resolve the situation:"
  1111. msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:"
  1112. #: apt-private/private-install.cc:505
  1113. msgid "Internal Error, AutoRemover broke stuff"
  1114. msgstr "Intern fejl. AutoRemover ødelagde noget"
  1115. #: apt-private/private-install.cc:512
  1116. msgid ""
  1117. "The following package was automatically installed and is no longer required:"
  1118. msgid_plural ""
  1119. "The following packages were automatically installed and are no longer "
  1120. "required:"
  1121. msgstr[0] ""
  1122. "Følgende pakke blev installeret automatisk, og behøves ikke længere:"
  1123. msgstr[1] ""
  1124. "Følgende pakker blev installeret automatisk, og behøves ikke længere:"
  1125. #: apt-private/private-install.cc:516
  1126. #, c-format
  1127. msgid "%lu package was automatically installed and is no longer required.\n"
  1128. msgid_plural ""
  1129. "%lu packages were automatically installed and are no longer required.\n"
  1130. msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n"
  1131. msgstr[1] ""
  1132. "Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n"
  1133. #: apt-private/private-install.cc:518
  1134. msgid "Use 'apt-get autoremove' to remove it."
  1135. msgid_plural "Use 'apt-get autoremove' to remove them."
  1136. msgstr[0] "Brug »apt-get autoremove« til at fjerne den."
  1137. msgstr[1] "Brug »apt-get autoremove« til at fjerne dem."
  1138. #: apt-private/private-install.cc:612
  1139. msgid "You might want to run 'apt-get -f install' to correct these:"
  1140. msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:"
  1141. #: apt-private/private-install.cc:614
  1142. msgid ""
  1143. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1144. "solution)."
  1145. msgstr ""
  1146. "Uopfyldte afhængigheder. Prøv »apt-get -f install« uden pakker (eller angiv "
  1147. "en løsning)."
  1148. #: apt-private/private-install.cc:627
  1149. msgid ""
  1150. "Some packages could not be installed. This may mean that you have\n"
  1151. "requested an impossible situation or if you are using the unstable\n"
  1152. "distribution that some required packages have not yet been created\n"
  1153. "or been moved out of Incoming."
  1154. msgstr ""
  1155. "Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n"
  1156. "en umulig situation eller bruger den ustabile distribution, hvor enkelte\n"
  1157. "pakker endnu ikke er lavet eller gjort tilgængelige."
  1158. #: apt-private/private-install.cc:648
  1159. msgid "Broken packages"
  1160. msgstr "Ødelagte pakker"
  1161. #: apt-private/private-install.cc:701
  1162. msgid "The following extra packages will be installed:"
  1163. msgstr "Følgende yderligere pakker vil blive installeret:"
  1164. #: apt-private/private-install.cc:791
  1165. msgid "Suggested packages:"
  1166. msgstr "Foreslåede pakker:"
  1167. #: apt-private/private-install.cc:792
  1168. msgid "Recommended packages:"
  1169. msgstr "Anbefalede pakker:"
  1170. #: apt-private/private-download.cc:31
  1171. msgid "WARNING: The following packages cannot be authenticated!"
  1172. msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!"
  1173. #: apt-private/private-download.cc:35
  1174. msgid "Authentication warning overridden.\n"
  1175. msgstr "Autentifikationsadvarsel tilsidesat.\n"
  1176. #: apt-private/private-download.cc:40 apt-private/private-download.cc:47
  1177. msgid "Some packages could not be authenticated"
  1178. msgstr "Nogle pakker kunne ikke autentificeres"
  1179. #: apt-private/private-download.cc:45
  1180. msgid "Install these packages without verification?"
  1181. msgstr "Installér disse pakker uden verifikation?"
  1182. #: apt-private/private-download.cc:86 apt-pkg/update.cc:77
  1183. #, c-format
  1184. msgid "Failed to fetch %s %s\n"
  1185. msgstr "Kunne ikke hente %s %s\n"
  1186. #: apt-private/private-output.cc:81 apt-private/private-show.cc:84
  1187. #: apt-private/private-show.cc:89
  1188. msgid "unknown"
  1189. msgstr ""
  1190. #: apt-private/private-output.cc:207
  1191. #, fuzzy, c-format
  1192. msgid "[installed,upgradable to: %s]"
  1193. msgstr "installeret,kan opgraderes til: "
  1194. #: apt-private/private-output.cc:211
  1195. msgid "[installed,local]"
  1196. msgstr "[Installeret,lokalt]"
  1197. #: apt-private/private-output.cc:214
  1198. msgid "[installed,auto-removable]"
  1199. msgstr "[installeret,kan auto-fjernes]"
  1200. #: apt-private/private-output.cc:216
  1201. msgid "[installed,automatic]"
  1202. msgstr "[Installeret,automatisk]"
  1203. #: apt-private/private-output.cc:218
  1204. msgid "[installed]"
  1205. msgstr "[Installeret]"
  1206. #: apt-private/private-output.cc:222
  1207. #, fuzzy, c-format
  1208. msgid "[upgradable from: %s]"
  1209. msgstr "[kan opgraderes fra: "
  1210. #: apt-private/private-output.cc:226
  1211. msgid "[residual-config]"
  1212. msgstr "[residual-konfig]"
  1213. #: apt-private/private-output.cc:326
  1214. msgid "The following packages have unmet dependencies:"
  1215. msgstr "Følgende pakker har uopfyldte afhængigheder:"
  1216. #: apt-private/private-output.cc:416
  1217. #, c-format
  1218. msgid "but %s is installed"
  1219. msgstr "men %s er installeret"
  1220. #: apt-private/private-output.cc:418
  1221. #, c-format
  1222. msgid "but %s is to be installed"
  1223. msgstr "men %s forventes installeret"
  1224. #: apt-private/private-output.cc:425
  1225. msgid "but it is not installable"
  1226. msgstr "men den kan ikke installeres"
  1227. #: apt-private/private-output.cc:427
  1228. msgid "but it is a virtual package"
  1229. msgstr "men det er en virtuel pakke"
  1230. #: apt-private/private-output.cc:430
  1231. msgid "but it is not installed"
  1232. msgstr "men den er ikke installeret"
  1233. #: apt-private/private-output.cc:430
  1234. msgid "but it is not going to be installed"
  1235. msgstr "men den bliver ikke installeret"
  1236. #: apt-private/private-output.cc:435
  1237. msgid " or"
  1238. msgstr " eller"
  1239. #: apt-private/private-output.cc:464
  1240. msgid "The following NEW packages will be installed:"
  1241. msgstr "Følgende NYE pakker vil blive installeret:"
  1242. #: apt-private/private-output.cc:490
  1243. msgid "The following packages will be REMOVED:"
  1244. msgstr "Følgende pakker vil blive AFINSTALLERET:"
  1245. #: apt-private/private-output.cc:512
  1246. msgid "The following packages have been kept back:"
  1247. msgstr "Følgende pakker er blevet holdt tilbage:"
  1248. #: apt-private/private-output.cc:533
  1249. msgid "The following packages will be upgraded:"
  1250. msgstr "Følgende pakker vil blive opgraderet:"
  1251. #: apt-private/private-output.cc:554
  1252. msgid "The following packages will be DOWNGRADED:"
  1253. msgstr "Følgende pakker vil blive NEDGRADERET:"
  1254. #: apt-private/private-output.cc:574
  1255. msgid "The following held packages will be changed:"
  1256. msgstr "Følgende tilbageholdte pakker vil blive ændret:"
  1257. #: apt-private/private-output.cc:629
  1258. #, c-format
  1259. msgid "%s (due to %s) "
  1260. msgstr "%s (grundet %s) "
  1261. #: apt-private/private-output.cc:637
  1262. msgid ""
  1263. "WARNING: The following essential packages will be removed.\n"
  1264. "This should NOT be done unless you know exactly what you are doing!"
  1265. msgstr ""
  1266. "ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n"
  1267. "Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!"
  1268. #: apt-private/private-output.cc:668
  1269. #, c-format
  1270. msgid "%lu upgraded, %lu newly installed, "
  1271. msgstr "%lu opgraderes, %lu nyinstalleres, "
  1272. #: apt-private/private-output.cc:672
  1273. #, c-format
  1274. msgid "%lu reinstalled, "
  1275. msgstr "%lu geninstalleres, "
  1276. #: apt-private/private-output.cc:674
  1277. #, c-format
  1278. msgid "%lu downgraded, "
  1279. msgstr "%lu nedgraderes, "
  1280. #: apt-private/private-output.cc:676
  1281. #, c-format
  1282. msgid "%lu to remove and %lu not upgraded.\n"
  1283. msgstr "%lu afinstalleres og %lu opgraderes ikke.\n"
  1284. #: apt-private/private-output.cc:680
  1285. #, c-format
  1286. msgid "%lu not fully installed or removed.\n"
  1287. msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n"
  1288. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1289. #. e.g. "Do you want to continue? [Y/n] "
  1290. #. The user has to answer with an input matching the
  1291. #. YESEXPR/NOEXPR defined in your l10n.
  1292. #: apt-private/private-output.cc:702
  1293. msgid "[Y/n]"
  1294. msgstr "[J/n]"
  1295. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1296. #. e.g. "Should this file be removed? [y/N] "
  1297. #. The user has to answer with an input matching the
  1298. #. YESEXPR/NOEXPR defined in your l10n.
  1299. #: apt-private/private-output.cc:708
  1300. msgid "[y/N]"
  1301. msgstr "[j/N]"
  1302. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1303. #: apt-private/private-output.cc:719
  1304. msgid "Y"
  1305. msgstr "J"
  1306. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1307. #: apt-private/private-output.cc:725
  1308. msgid "N"
  1309. msgstr "N"
  1310. #: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35
  1311. #, c-format
  1312. msgid "Regex compilation error - %s"
  1313. msgstr "Fejl ved tolkning af regulært udtryk - %s"
  1314. #: apt-private/private-cachefile.cc:93
  1315. msgid "Correcting dependencies..."
  1316. msgstr "Retter afhængigheder ..."
  1317. #: apt-private/private-cachefile.cc:96
  1318. msgid " failed."
  1319. msgstr " mislykkedes."
  1320. #: apt-private/private-cachefile.cc:99
  1321. msgid "Unable to correct dependencies"
  1322. msgstr "Kunne ikke rette afhængigheder"
  1323. #: apt-private/private-cachefile.cc:102
  1324. msgid "Unable to minimize the upgrade set"
  1325. msgstr "Kunne ikke minimere opgraderingssættet"
  1326. #: apt-private/private-cachefile.cc:104
  1327. msgid " Done"
  1328. msgstr " Færdig"
  1329. #: apt-private/private-cachefile.cc:108
  1330. msgid "You might want to run 'apt-get -f install' to correct these."
  1331. msgstr "Du kan muligvis rette dette ved at køre »apt-get -f install«."
  1332. #: apt-private/private-cachefile.cc:111
  1333. msgid "Unmet dependencies. Try using -f."
  1334. msgstr "Uopfyldte afhængigheder. Prøv med -f."
  1335. #: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47
  1336. msgid "Sorting"
  1337. msgstr "Sortering"
  1338. #: apt-private/private-update.cc:31
  1339. msgid "The update command takes no arguments"
  1340. msgstr "»update«-kommandoen benytter ingen parametre"
  1341. #: apt-private/private-upgrade.cc:25
  1342. msgid "Calculating upgrade... "
  1343. msgstr "Beregner opgraderingen ... "
  1344. #: apt-private/private-upgrade.cc:30
  1345. msgid "Internal error, Upgrade broke stuff"
  1346. msgstr "Intern fejl, opgradering blev afbrudt"
  1347. #: apt-private/private-upgrade.cc:32
  1348. msgid "Done"
  1349. msgstr "Færdig"
  1350. #: apt-private/private-search.cc:51
  1351. msgid "Full Text Search"
  1352. msgstr "Fuldtekst-søgning"
  1353. #: apt-private/private-show.cc:156
  1354. #, c-format
  1355. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1356. msgid_plural ""
  1357. "There are %i additional records. Please use the '-a' switch to see them."
  1358. msgstr[0] ""
  1359. msgstr[1] ""
  1360. #: apt-private/private-show.cc:163
  1361. msgid "not a real package (virtual)"
  1362. msgstr "ikke en reel pakke (virtuel)"
  1363. #: apt-private/private-main.cc:23
  1364. msgid ""
  1365. "NOTE: This is only a simulation!\n"
  1366. " apt-get needs root privileges for real execution.\n"
  1367. " Keep also in mind that locking is deactivated,\n"
  1368. " so don't depend on the relevance to the real current situation!"
  1369. msgstr ""
  1370. "BEMÆRK: Dette er kun en simulering!\n"
  1371. " apt-get kræver rootprivilegier for reel kørsel.\n"
  1372. " Husk også at låsning er deaktiveret,\n"
  1373. " så stol ikke på relevansen for den reelle aktuelle situation!"
  1374. #: apt-private/private-sources.cc:58
  1375. #, c-format
  1376. msgid "Failed to parse %s. Edit again? "
  1377. msgstr "Kunne ikke fortolke %s. Rediger igen? "
  1378. #: apt-private/private-sources.cc:70
  1379. #, c-format
  1380. msgid "Your '%s' file changed, please run 'apt-get update'."
  1381. msgstr "Din »%s« fil blev ændret, kør venligst »apt-get update«."
  1382. #: apt-private/acqprogress.cc:66
  1383. msgid "Hit "
  1384. msgstr "Havde "
  1385. #: apt-private/acqprogress.cc:90
  1386. msgid "Get:"
  1387. msgstr "Henter:"
  1388. #: apt-private/acqprogress.cc:121
  1389. msgid "Ign "
  1390. msgstr "Ignorerer "
  1391. #: apt-private/acqprogress.cc:125
  1392. msgid "Err "
  1393. msgstr "Fejl "
  1394. #: apt-private/acqprogress.cc:146
  1395. #, c-format
  1396. msgid "Fetched %sB in %s (%sB/s)\n"
  1397. msgstr "Hentede %sB på %s (%sB/s)\n"
  1398. #: apt-private/acqprogress.cc:236
  1399. #, c-format
  1400. msgid " [Working]"
  1401. msgstr " [Arbejder]"
  1402. #: apt-private/acqprogress.cc:297
  1403. #, c-format
  1404. msgid ""
  1405. "Media change: please insert the disc labeled\n"
  1406. " '%s'\n"
  1407. "in the drive '%s' and press enter\n"
  1408. msgstr ""
  1409. "Medieskift: Indsæt disken med navnet\n"
  1410. " »%s«\n"
  1411. "i drevet »%s« og tryk retur\n"
  1412. #. Only warn if there are no sources.list.d.
  1413. #. Only warn if there is no sources.list file.
  1414. #: methods/mirror.cc:95 apt-inst/extract.cc:471
  1415. #: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371
  1416. #: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280
  1417. #: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102
  1418. #: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381
  1419. #, c-format
  1420. msgid "Unable to read %s"
  1421. msgstr "Kunne ikke læse %s"
  1422. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201
  1423. #: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497
  1424. #: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64
  1425. #: apt-pkg/clean.cc:127
  1426. #, c-format
  1427. msgid "Unable to change to %s"
  1428. msgstr "Kunne ikke skifte til %s"
  1429. #. FIXME: fallback to a default mirror here instead
  1430. #. and provide a config option to define that default
  1431. #: methods/mirror.cc:280
  1432. #, c-format
  1433. msgid "No mirror file '%s' found "
  1434. msgstr "Ingen spejlfil »%s« fundet "
  1435. #. FIXME: fallback to a default mirror here instead
  1436. #. and provide a config option to define that default
  1437. #: methods/mirror.cc:287
  1438. #, c-format
  1439. msgid "Can not read mirror file '%s'"
  1440. msgstr "Kan ikke læse spejlfil »%s«"
  1441. #: methods/mirror.cc:315
  1442. #, c-format
  1443. msgid "No entry found in mirror file '%s'"
  1444. msgstr "Ingen post fundet i spejlfil »%s«"
  1445. #: methods/mirror.cc:445
  1446. #, c-format
  1447. msgid "[Mirror: %s]"
  1448. msgstr "[Spejl: %s]"
  1449. #: methods/rsh.cc:102 ftparchive/multicompress.cc:171
  1450. msgid "Failed to create IPC pipe to subprocess"
  1451. msgstr "Kunne ikke oprette IPC-videreførsel til underproces"
  1452. #: methods/rsh.cc:343
  1453. msgid "Connection closed prematurely"
  1454. msgstr "Forbindelsen lukkedes for hurtigt"
  1455. #: dselect/install:33
  1456. msgid "Bad default setting!"
  1457. msgstr "Ugyldig standardindstilling!"
  1458. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1459. #: dselect/install:106 dselect/update:45
  1460. msgid "Press enter to continue."
  1461. msgstr "Tryk retur for at fortsætte."
  1462. #: dselect/install:92
  1463. msgid "Do you want to erase any previously downloaded .deb files?"
  1464. msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?"
  1465. # Note to translators: The following four messages belong together. It doesn't
  1466. # matter where sentences start, but it has to fit in just these four lines, and
  1467. # at only 80 characters per line, if possible.
  1468. #: dselect/install:102
  1469. msgid "Some errors occurred while unpacking. Packages that were installed"
  1470. msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret"
  1471. #: dselect/install:103
  1472. msgid "will be configured. This may result in duplicate errors"
  1473. msgstr "vil blive konfigureret. Det kan give gentagne fejl"
  1474. #: dselect/install:104
  1475. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1476. msgstr ""
  1477. "eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun"
  1478. #: dselect/install:105
  1479. msgid ""
  1480. "above this message are important. Please fix them and run [I]nstall again"
  1481. msgstr ""
  1482. "fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen"
  1483. #: dselect/update:30
  1484. msgid "Merging available information"
  1485. msgstr "Sammenfletter tilgængelighedsoplysninger"
  1486. #: cmdline/apt-extracttemplates.cc:224
  1487. msgid ""
  1488. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1489. "\n"
  1490. "apt-extracttemplates is a tool to extract config and template info\n"
  1491. "from debian packages\n"
  1492. "\n"
  1493. "Options:\n"
  1494. " -h This help text\n"
  1495. " -t Set the temp dir\n"
  1496. " -c=? Read this configuration file\n"
  1497. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1498. msgstr ""
  1499. "Brug: apt-extracttemplates fil1 [fil2 ...]\n"
  1500. "\n"
  1501. "apt-extracttemplates er et værktøj til at uddrage opsætnings- og skabelon-"
  1502. "oplysninger fra Debianpakker\n"
  1503. "\n"
  1504. "Tilvalg:\n"
  1505. " -h Denne hjælpetekst\n"
  1506. " -t Angiv temp-mappe\n"
  1507. " -c=? Læs denne opsætningsfil\n"
  1508. " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
  1509. #: cmdline/apt-extracttemplates.cc:254
  1510. #, fuzzy, c-format
  1511. msgid "Unable to mkstemp %s"
  1512. msgstr "Kunne ikke finde %s"
  1513. #: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400
  1514. #, c-format
  1515. msgid "Unable to write to %s"
  1516. msgstr "Kunne ikke skrive til %s"
  1517. #: cmdline/apt-extracttemplates.cc:300
  1518. msgid "Cannot get debconf version. Is debconf installed?"
  1519. msgstr "Kan ikke finde debconfs version. Er debconf installeret?"
  1520. #: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358
  1521. msgid "Package extension list is too long"
  1522. msgstr "Pakkeudvidelseslisten er for lang"
  1523. #: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199
  1524. #: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273
  1525. #: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309
  1526. #, c-format
  1527. msgid "Error processing directory %s"
  1528. msgstr "Fejl under behandling af mappen %s"
  1529. #: ftparchive/apt-ftparchive.cc:271
  1530. msgid "Source extension list is too long"
  1531. msgstr "Kildeudvidelseslisten er for lang"
  1532. #: ftparchive/apt-ftparchive.cc:388
  1533. msgid "Error writing header to contents file"
  1534. msgstr "Fejl under skrivning af hovedet til indholdsfil"
  1535. #: ftparchive/apt-ftparchive.cc:418
  1536. #, c-format
  1537. msgid "Error processing contents %s"
  1538. msgstr "Fejl under behandling af indhold %s"
  1539. #: ftparchive/apt-ftparchive.cc:606
  1540. msgid ""
  1541. "Usage: apt-ftparchive [options] command\n"
  1542. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1543. " sources srcpath [overridefile [pathprefix]]\n"
  1544. " contents path\n"
  1545. " release path\n"
  1546. " generate config [groups]\n"
  1547. " clean config\n"
  1548. "\n"
  1549. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1550. "many styles of generation from fully automated to functional replacements\n"
  1551. "for dpkg-scanpackages and dpkg-scansources\n"
  1552. "\n"
  1553. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1554. "Package file contains the contents of all the control fields from\n"
  1555. "each package as well as the MD5 hash and filesize. An override file\n"
  1556. "is supported to force the value of Priority and Section.\n"
  1557. "\n"
  1558. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1559. "The --source-override option can be used to specify a src override file\n"
  1560. "\n"
  1561. "The 'packages' and 'sources' command should be run in the root of the\n"
  1562. "tree. BinaryPath should point to the base of the recursive search and \n"
  1563. "override file should contain the override flags. Pathprefix is\n"
  1564. "appended to the filename fields if present. Example usage from the \n"
  1565. "Debian archive:\n"
  1566. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1567. " dists/potato/main/binary-i386/Packages\n"
  1568. "\n"
  1569. "Options:\n"
  1570. " -h This help text\n"
  1571. " --md5 Control MD5 generation\n"
  1572. " -s=? Source override file\n"
  1573. " -q Quiet\n"
  1574. " -d=? Select the optional caching database\n"
  1575. " --no-delink Enable delinking debug mode\n"
  1576. " --contents Control contents file generation\n"
  1577. " -c=? Read this configuration file\n"
  1578. " -o=? Set an arbitrary configuration option"
  1579. msgstr ""
  1580. "Brug: apt-ftparchive [tilvalg] kommando\n"
  1581. "Kommandoer: packges binærsti [tvangsfil [sti]]\n"
  1582. " sources kildesti [tvangsfil [sti]]\n"
  1583. " contents sti\n"
  1584. " release sti\n"
  1585. " generate config [grupper]\n"
  1586. " clean config\n"
  1587. "\n"
  1588. "apt-ftparchive laver indeksfiler til Debianarkiver. Det understøtter \n"
  1589. "mange former for generering, lige fra fuldautomatiske til funktionelle\n"
  1590. "erstatninger for dpkg-scanpackages og dpkg-scansources\n"
  1591. "\n"
  1592. "apt-ftparchive genererer Package-filer ud fra træer af .deb'er.\n"
  1593. "Package-filen indeholder alle styrefelterne fra hver pakke såvel\n"
  1594. "som MD5-mønstre og filstørrelser. En tvangsfil understøttes til at\n"
  1595. "gennemtvinge indholdet af Priority og Section.\n"
  1596. "\n"
  1597. "På samme måde genererer apt-ftparchive Sources-filer ud fra træer\n"
  1598. "med .dsc'er. Tvangstilvalget --source-override kan bruges til at\n"
  1599. "angive en src-tvangsfil.\n"
  1600. "\n"
  1601. "Kommandoerne »packages« og »sources« skal køres i roden af træet.\n"
  1602. "binærsti skal pege på basen af rekursive søgninger og tvangsfilen\n"
  1603. "skal indeholde tvangsflagene. Sti foranstilles eventuelle\n"
  1604. "filnavnfelter. Et eksempel på brug fra Debianarkivet:\n"
  1605. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1606. " dists/potato/main/binary-i386/Packages\n"
  1607. "\n"
  1608. "Tilvalg:\n"
  1609. " -h Denne hjælpetekst\n"
  1610. " --md5 Styr generering af MD5\n"
  1611. " -s=? Kilde-tvangsfil\n"
  1612. " -q Stille\n"
  1613. " -d=? Vælg den valgfrie mellemlager-database\n"
  1614. " --no-delink Aktivér \"delinking\"-fejlsporingstilstand\n"
  1615. " --contents Bestem generering af indholdsfil\n"
  1616. " -c=? Læs denne opsætningsfil\n"
  1617. " -o=? Sæt en opsætnings-indstilling"
  1618. #: ftparchive/apt-ftparchive.cc:812
  1619. msgid "No selections matched"
  1620. msgstr "Ingen valg passede"
  1621. #: ftparchive/apt-ftparchive.cc:890
  1622. #, c-format
  1623. msgid "Some files are missing in the package file group `%s'"
  1624. msgstr "Visse filer mangler i pakkefilgruppen »%s«"
  1625. #: ftparchive/cachedb.cc:51
  1626. #, c-format
  1627. msgid "DB was corrupted, file renamed to %s.old"
  1628. msgstr "DB var ødelagt, filen omdøbt til %s.old"
  1629. #: ftparchive/cachedb.cc:69
  1630. #, c-format
  1631. msgid "DB is old, attempting to upgrade %s"
  1632. msgstr "DB er gammel, forsøger at opgradere %s"
  1633. #: ftparchive/cachedb.cc:80
  1634. msgid ""
  1635. "DB format is invalid. If you upgraded from an older version of apt, please "
  1636. "remove and re-create the database."
  1637. msgstr ""
  1638. "Databaseformatet er ugyldigt. Hvis du har opgraderet fra en ældre version af "
  1639. "apt, så fjern og genskab databasen."
  1640. #: ftparchive/cachedb.cc:85
  1641. #, c-format
  1642. msgid "Unable to open DB file %s: %s"
  1643. msgstr "Kunne ikke åbne DB-filen %s: %s"
  1644. #: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  1645. #: apt-inst/extract.cc:216
  1646. #, c-format
  1647. msgid "Failed to stat %s"
  1648. msgstr "Kunne ikke finde %s"
  1649. #: ftparchive/cachedb.cc:253
  1650. msgid "Archive has no control record"
  1651. msgstr "Arkivet har ingen kontrolindgang"
  1652. #: ftparchive/cachedb.cc:494
  1653. msgid "Unable to get a cursor"
  1654. msgstr "Kunne skaffe en markør"
  1655. #: ftparchive/writer.cc:91
  1656. #, c-format
  1657. msgid "W: Unable to read directory %s\n"
  1658. msgstr "A: Kunne ikke læse mappen %s\n"
  1659. #: ftparchive/writer.cc:96
  1660. #, c-format
  1661. msgid "W: Unable to stat %s\n"
  1662. msgstr "W: Kunne ikke finde %s\n"
  1663. #: ftparchive/writer.cc:152
  1664. msgid "E: "
  1665. msgstr "F: "
  1666. #: ftparchive/writer.cc:154
  1667. msgid "W: "
  1668. msgstr "A: "
  1669. #: ftparchive/writer.cc:161
  1670. msgid "E: Errors apply to file "
  1671. msgstr "F: Fejlene vedrører filen "
  1672. #: ftparchive/writer.cc:179 ftparchive/writer.cc:211
  1673. #, c-format
  1674. msgid "Failed to resolve %s"
  1675. msgstr "Kunne ikke omsætte navnet %s"
  1676. #: ftparchive/writer.cc:192
  1677. msgid "Tree walking failed"
  1678. msgstr "Trævandring mislykkedes"
  1679. #: ftparchive/writer.cc:219
  1680. #, c-format
  1681. msgid "Failed to open %s"
  1682. msgstr "Kunne ikke åbne %s"
  1683. #: ftparchive/writer.cc:278
  1684. #, c-format
  1685. msgid " DeLink %s [%s]\n"
  1686. msgstr " DeLink %s [%s]\n"
  1687. #: ftparchive/writer.cc:286
  1688. #, c-format
  1689. msgid "Failed to readlink %s"
  1690. msgstr "Kunne ikke »readlink« %s"
  1691. #: ftparchive/writer.cc:290
  1692. #, c-format
  1693. msgid "Failed to unlink %s"
  1694. msgstr "Kunne ikke frigøre %s"
  1695. #: ftparchive/writer.cc:298
  1696. #, c-format
  1697. msgid "*** Failed to link %s to %s"
  1698. msgstr "*** Kunne ikke lænke %s til %s"
  1699. #: ftparchive/writer.cc:308
  1700. #, c-format
  1701. msgid " DeLink limit of %sB hit.\n"
  1702. msgstr " Nåede DeLink-begrænsningen på %sB.\n"
  1703. #: ftparchive/writer.cc:413
  1704. msgid "Archive had no package field"
  1705. msgstr "Arkivet havde intet package-felt"
  1706. #: ftparchive/writer.cc:421 ftparchive/writer.cc:711
  1707. #, c-format
  1708. msgid " %s has no override entry\n"
  1709. msgstr " %s har ingen tvangs-post\n"
  1710. #: ftparchive/writer.cc:489 ftparchive/writer.cc:855
  1711. #, c-format
  1712. msgid " %s maintainer is %s not %s\n"
  1713. msgstr " pakkeansvarlig for %s er %s, ikke %s\n"
  1714. #: ftparchive/writer.cc:721
  1715. #, c-format
  1716. msgid " %s has no source override entry\n"
  1717. msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n"
  1718. #: ftparchive/writer.cc:725
  1719. #, c-format
  1720. msgid " %s has no binary override entry either\n"
  1721. msgstr ""
  1722. " %s har ingen linje med tilsidesættelse af standard for binøre filer\n"
  1723. #: ftparchive/contents.cc:340 ftparchive/contents.cc:371
  1724. msgid "realloc - Failed to allocate memory"
  1725. msgstr "realloc - Kunne ikke allokere hukommelse"
  1726. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  1727. #, c-format
  1728. msgid "Unable to open %s"
  1729. msgstr "Kunne ikke åbne %s"
  1730. #. skip spaces
  1731. #. find end of word
  1732. #: ftparchive/override.cc:68
  1733. #, fuzzy, c-format
  1734. msgid "Malformed override %s line %llu (%s)"
  1735. msgstr "Ugyldig gennemtvangs %s-linje %llu #1"
  1736. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  1737. #, c-format
  1738. msgid "Failed to read the override file %s"
  1739. msgstr "Kunne ikke læse gennemtvangsfilen %s"
  1740. #: ftparchive/override.cc:166
  1741. #, c-format
  1742. msgid "Malformed override %s line %llu #1"
  1743. msgstr "Ugyldig gennemtvangs %s-linje %llu #1"
  1744. #: ftparchive/override.cc:178
  1745. #, c-format
  1746. msgid "Malformed override %s line %llu #2"
  1747. msgstr "Ugyldig gennemtvangs %s-linje %llu #2"
  1748. #: ftparchive/override.cc:191
  1749. #, c-format
  1750. msgid "Malformed override %s line %llu #3"
  1751. msgstr "Ugyldig gennemtvangs %s-linje %llu #3"
  1752. #: ftparchive/multicompress.cc:73
  1753. #, c-format
  1754. msgid "Unknown compression algorithm '%s'"
  1755. msgstr "Ukendt komprimeringsalgoritme »%s«"
  1756. #: ftparchive/multicompress.cc:103
  1757. #, c-format
  1758. msgid "Compressed output %s needs a compression set"
  1759. msgstr "Komprimerede uddata %s kræver et komprimeringssæt"
  1760. #: ftparchive/multicompress.cc:192
  1761. msgid "Failed to create FILE*"
  1762. msgstr "Kunne ikke oprette FILE*"
  1763. #: ftparchive/multicompress.cc:195
  1764. msgid "Failed to fork"
  1765. msgstr "Kunne ikke spalte"
  1766. #: ftparchive/multicompress.cc:209
  1767. msgid "Compress child"
  1768. msgstr "Komprimer barn"
  1769. #: ftparchive/multicompress.cc:232
  1770. #, c-format
  1771. msgid "Internal error, failed to create %s"
  1772. msgstr "Intern fejl. Kunne ikke oprette %s"
  1773. #: ftparchive/multicompress.cc:305
  1774. msgid "IO to subprocess/file failed"
  1775. msgstr "IO til underproces/fil mislykkedes"
  1776. #: ftparchive/multicompress.cc:343
  1777. msgid "Failed to read while computing MD5"
  1778. msgstr "Kunne ikke læse under beregning af MD5"
  1779. #: ftparchive/multicompress.cc:359
  1780. #, c-format
  1781. msgid "Problem unlinking %s"
  1782. msgstr "Problem under aflænkning af %s"
  1783. #: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194
  1784. #, c-format
  1785. msgid "Failed to rename %s to %s"
  1786. msgstr "Kunne ikke omdøbe %s til %s"
  1787. #: cmdline/apt-internal-solver.cc:46
  1788. msgid ""
  1789. "Usage: apt-internal-solver\n"
  1790. "\n"
  1791. "apt-internal-solver is an interface to use the current internal\n"
  1792. "like an external resolver for the APT family for debugging or alike\n"
  1793. "\n"
  1794. "Options:\n"
  1795. " -h This help text.\n"
  1796. " -q Loggable output - no progress indicator\n"
  1797. " -c=? Read this configuration file\n"
  1798. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1799. msgstr ""
  1800. "Brug: apt-internal-solver\n"
  1801. "\n"
  1802. "apt-internal-solver er en grænseflade, der skal bruge den aktuelle\n"
  1803. "interne som en ekstern problemløser for APT-familien for fejlsøgning\n"
  1804. "eller lignende\n"
  1805. "\n"
  1806. "Tilvalg:\n"
  1807. " -h Denne hjælpetekst.\n"
  1808. " -q Logbare uddata - ingen statusindikator\n"
  1809. " -c=? Læs denne konfigurationsfil\n"
  1810. " -o=? Angiv et arbitrærtkonfigurationstilvalg, f.eks. -o dir::cache=/tmp\n"
  1811. #: cmdline/apt-sortpkgs.cc:89
  1812. msgid "Unknown package record!"
  1813. msgstr "Ukendt pakkeindgang!"
  1814. #: cmdline/apt-sortpkgs.cc:153
  1815. msgid ""
  1816. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1817. "\n"
  1818. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1819. "to indicate what kind of file it is.\n"
  1820. "\n"
  1821. "Options:\n"
  1822. " -h This help text\n"
  1823. " -s Use source file sorting\n"
  1824. " -c=? Read this configuration file\n"
  1825. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1826. msgstr ""
  1827. "Brug: apt-sortpkgs [tilvalg] fil1 [fil2 ...]\n"
  1828. "\n"
  1829. "apt-sortpkgs er et simpelt værktøj til at sortere pakkefiler. Tilvalget -s\n"
  1830. "bruges til at angive filens type.\n"
  1831. "\n"
  1832. "Tilvalg:\n"
  1833. " -h Denne hjælpetekst\n"
  1834. " -s Benyt kildefils-sortering\n"
  1835. " -c=? Læs denne opsætningsfil\n"
  1836. " -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n"
  1837. #: apt-inst/contrib/extracttar.cc:124
  1838. msgid "Failed to create pipes"
  1839. msgstr "Kunne ikke oprette videreførsler"
  1840. #: apt-inst/contrib/extracttar.cc:151
  1841. msgid "Failed to exec gzip "
  1842. msgstr "Kunne ikke udføre gzip "
  1843. #: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218
  1844. msgid "Corrupted archive"
  1845. msgstr "Ødelagt arkiv"
  1846. #: apt-inst/contrib/extracttar.cc:203
  1847. msgid "Tar checksum failed, archive corrupted"
  1848. msgstr "Tar-tjeksum fejlede, arkivet er ødelagt"
  1849. #: apt-inst/contrib/extracttar.cc:308
  1850. #, c-format
  1851. msgid "Unknown TAR header type %u, member %s"
  1852. msgstr "Ukendt TAR-hovedtype %u, element %s"
  1853. #: apt-inst/contrib/arfile.cc:76
  1854. msgid "Invalid archive signature"
  1855. msgstr "Ugyldig arkivsignatur"
  1856. #: apt-inst/contrib/arfile.cc:84
  1857. msgid "Error reading archive member header"
  1858. msgstr "Fejl under læsning af arkivelements hoved"
  1859. #: apt-inst/contrib/arfile.cc:96
  1860. #, c-format
  1861. msgid "Invalid archive member header %s"
  1862. msgstr "Ugyldigt arkivelementhoved %s"
  1863. #: apt-inst/contrib/arfile.cc:108
  1864. msgid "Invalid archive member header"
  1865. msgstr "Ugyldigt arkivelementhoved"
  1866. #: apt-inst/contrib/arfile.cc:137
  1867. msgid "Archive is too short"
  1868. msgstr "Arkivet er for kort"
  1869. #: apt-inst/contrib/arfile.cc:141
  1870. msgid "Failed to read the archive headers"
  1871. msgstr "Kunne ikke læse arkivhovederne"
  1872. #: apt-inst/filelist.cc:380
  1873. msgid "DropNode called on still linked node"
  1874. msgstr "DropNode kaldt med endnu forbundet knude"
  1875. #: apt-inst/filelist.cc:412
  1876. msgid "Failed to locate the hash element!"
  1877. msgstr "Kunne ikke finde hash-element!"
  1878. #: apt-inst/filelist.cc:459
  1879. msgid "Failed to allocate diversion"
  1880. msgstr "Kunne ikke allokere omrokering"
  1881. #: apt-inst/filelist.cc:464
  1882. msgid "Internal error in AddDiversion"
  1883. msgstr "Intern fejl i AddDiversion"
  1884. #: apt-inst/filelist.cc:477
  1885. #, c-format
  1886. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1887. msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s"
  1888. #: apt-inst/filelist.cc:506
  1889. #, c-format
  1890. msgid "Double add of diversion %s -> %s"
  1891. msgstr "Dobbelt tilføjelse af omrokering %s -> %s"
  1892. #: apt-inst/filelist.cc:549
  1893. #, c-format
  1894. msgid "Duplicate conf file %s/%s"
  1895. msgstr "Dobbelt opsætningsfil %s/%s"
  1896. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  1897. #, c-format
  1898. msgid "Failed to write file %s"
  1899. msgstr "Kunne ikke skrive filen %s"
  1900. #: apt-inst/dirstream.cc:105
  1901. #, c-format
  1902. msgid "Failed to close file %s"
  1903. msgstr "Kunne ikke lukke filen %s"
  1904. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  1905. #, c-format
  1906. msgid "The path %s is too long"
  1907. msgstr "Stien %s er for lang"
  1908. #: apt-inst/extract.cc:132
  1909. #, c-format
  1910. msgid "Unpacking %s more than once"
  1911. msgstr "Pakkede %s ud flere gange"
  1912. #: apt-inst/extract.cc:142
  1913. #, c-format
  1914. msgid "The directory %s is diverted"
  1915. msgstr "Mappen %s er omrokeret"
  1916. #: apt-inst/extract.cc:152
  1917. #, c-format
  1918. msgid "The package is trying to write to the diversion target %s/%s"
  1919. msgstr "Pakken forsøger at skrive til omrokeret mål %s/%s"
  1920. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  1921. msgid "The diversion path is too long"
  1922. msgstr "Omrokeringsstien er for lang"
  1923. #: apt-inst/extract.cc:249
  1924. #, c-format
  1925. msgid "The directory %s is being replaced by a non-directory"
  1926. msgstr "Mappen %s bliver erstattet af en ikke-mappe"
  1927. #: apt-inst/extract.cc:289
  1928. msgid "Failed to locate node in its hash bucket"
  1929. msgstr "Kunne ikke finde knuden i sin hash-bucket"
  1930. #: apt-inst/extract.cc:293
  1931. msgid "The path is too long"
  1932. msgstr "Stien er for lang"
  1933. #: apt-inst/extract.cc:421
  1934. #, c-format
  1935. msgid "Overwrite package match with no version for %s"
  1936. msgstr "Overskriv pakkematch uden version for %s"
  1937. #: apt-inst/extract.cc:438
  1938. #, c-format
  1939. msgid "File %s/%s overwrites the one in the package %s"
  1940. msgstr "File %s/%s overskriver filen i pakken %s"
  1941. #: apt-inst/extract.cc:498
  1942. #, c-format
  1943. msgid "Unable to stat %s"
  1944. msgstr "Kunne ikke finde %s"
  1945. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  1946. #: apt-inst/deb/debfile.cc:63
  1947. #, c-format
  1948. msgid "This is not a valid DEB archive, missing '%s' member"
  1949. msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler »%s«-elementet"
  1950. #: apt-inst/deb/debfile.cc:132
  1951. #, c-format
  1952. msgid "Internal error, could not locate member %s"
  1953. msgstr "Intern fejl, kunne ikke finde elementet %s"
  1954. #: apt-inst/deb/debfile.cc:227
  1955. msgid "Unparsable control file"
  1956. msgstr "Ikke-tolkbar kontrolfil"
  1957. #: apt-pkg/contrib/mmap.cc:79
  1958. msgid "Can't mmap an empty file"
  1959. msgstr "Kan ikke udføre mmap for en tom fil"
  1960. #: apt-pkg/contrib/mmap.cc:111
  1961. #, c-format
  1962. msgid "Couldn't duplicate file descriptor %i"
  1963. msgstr "Kunne ikke duplikere filbeskrivelse %i"
  1964. #: apt-pkg/contrib/mmap.cc:119
  1965. #, c-format
  1966. msgid "Couldn't make mmap of %llu bytes"
  1967. msgstr "Kunne ikke udføre mmap for %llu byte"
  1968. #: apt-pkg/contrib/mmap.cc:146
  1969. msgid "Unable to close mmap"
  1970. msgstr "Kunne ikke lukke mmap"
  1971. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  1972. msgid "Unable to synchronize mmap"
  1973. msgstr "Kunne ikke synkronisere mmap"
  1974. #: apt-pkg/contrib/mmap.cc:290
  1975. #, c-format
  1976. msgid "Couldn't make mmap of %lu bytes"
  1977. msgstr "Kunne ikke udføre mmap for %lu byte"
  1978. #: apt-pkg/contrib/mmap.cc:322
  1979. msgid "Failed to truncate file"
  1980. msgstr "Kunne ikke afkorte filen"
  1981. #: apt-pkg/contrib/mmap.cc:341
  1982. #, c-format
  1983. msgid ""
  1984. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  1985. "Current value: %lu. (man 5 apt.conf)"
  1986. msgstr ""
  1987. "Dynamisk MMap løb tør for plads. Øg venligst størrelsen på APT::Cache-Start. "
  1988. "Aktuel værdi: %lu. (man 5 apt.conf)"
  1989. #: apt-pkg/contrib/mmap.cc:446
  1990. #, c-format
  1991. msgid ""
  1992. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1993. "reached."
  1994. msgstr ""
  1995. "Kunne ikke øge størrelsen på MMap da begrænsningen på %lu byte allerede er "
  1996. "nået."
  1997. #: apt-pkg/contrib/mmap.cc:449
  1998. msgid ""
  1999. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2000. msgstr ""
  2001. "Kunne ikke øge størrelsen på MMap da automatisk øgning er deaktiveret af "
  2002. "bruger."
  2003. #. d means days, h means hours, min means minutes, s means seconds
  2004. #: apt-pkg/contrib/strutl.cc:406
  2005. #, c-format
  2006. msgid "%lid %lih %limin %lis"
  2007. msgstr "%lid %lih %limin %lis"
  2008. #. h means hours, min means minutes, s means seconds
  2009. #: apt-pkg/contrib/strutl.cc:413
  2010. #, c-format
  2011. msgid "%lih %limin %lis"
  2012. msgstr "%lih %limin %lis"
  2013. #. min means minutes, s means seconds
  2014. #: apt-pkg/contrib/strutl.cc:420
  2015. #, c-format
  2016. msgid "%limin %lis"
  2017. msgstr "%limin %lis"
  2018. #. s means seconds
  2019. #: apt-pkg/contrib/strutl.cc:425
  2020. #, c-format
  2021. msgid "%lis"
  2022. msgstr "%lis"
  2023. #: apt-pkg/contrib/strutl.cc:1236
  2024. #, c-format
  2025. msgid "Selection %s not found"
  2026. msgstr "Det valgte %s blev ikke fundet"
  2027. #: apt-pkg/contrib/configuration.cc:519
  2028. #, c-format
  2029. msgid "Unrecognized type abbreviation: '%c'"
  2030. msgstr "Ukendt type-forkortelse: »%c«"
  2031. #: apt-pkg/contrib/configuration.cc:633
  2032. #, c-format
  2033. msgid "Opening configuration file %s"
  2034. msgstr "Åbner konfigurationsfilen %s"
  2035. #: apt-pkg/contrib/configuration.cc:801
  2036. #, c-format
  2037. msgid "Syntax error %s:%u: Block starts with no name."
  2038. msgstr "Syntaksfejl %s:%u: Blokken starter uden navn."
  2039. #: apt-pkg/contrib/configuration.cc:820
  2040. #, c-format
  2041. msgid "Syntax error %s:%u: Malformed tag"
  2042. msgstr "Syntaksfejl %s:%u: Forkert udformet mærke"
  2043. #: apt-pkg/contrib/configuration.cc:837
  2044. #, c-format
  2045. msgid "Syntax error %s:%u: Extra junk after value"
  2046. msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien"
  2047. #: apt-pkg/contrib/configuration.cc:877
  2048. #, c-format
  2049. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2050. msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet"
  2051. #: apt-pkg/contrib/configuration.cc:884
  2052. #, c-format
  2053. msgid "Syntax error %s:%u: Too many nested includes"
  2054. msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger"
  2055. #: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893
  2056. #, c-format
  2057. msgid "Syntax error %s:%u: Included from here"
  2058. msgstr "Syntaksfejl %s:%u: Inkluderet herfra"
  2059. #: apt-pkg/contrib/configuration.cc:897
  2060. #, c-format
  2061. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2062. msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv »%s«"
  2063. #: apt-pkg/contrib/configuration.cc:900
  2064. #, c-format
  2065. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2066. msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument"
  2067. #: apt-pkg/contrib/configuration.cc:950
  2068. #, c-format
  2069. msgid "Syntax error %s:%u: Extra junk at end of file"
  2070. msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen"
  2071. #: apt-pkg/contrib/progress.cc:148
  2072. #, c-format
  2073. msgid "%c%s... Error!"
  2074. msgstr "%c%s... Fejl!"
  2075. #: apt-pkg/contrib/progress.cc:150
  2076. #, c-format
  2077. msgid "%c%s... Done"
  2078. msgstr "%c%s... Færdig"
  2079. #: apt-pkg/contrib/progress.cc:181
  2080. msgid "..."
  2081. msgstr "..."
  2082. #. Print the spinner
  2083. #: apt-pkg/contrib/progress.cc:197
  2084. #, c-format
  2085. msgid "%c%s... %u%%"
  2086. msgstr "%c%s... %u%%"
  2087. #: apt-pkg/contrib/cmndline.cc:121
  2088. #, c-format
  2089. msgid "Command line option '%c' [from %s] is not known."
  2090. msgstr "Kommandolinjetilvalget »%c« [fra %s] kendes ikke."
  2091. #: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155
  2092. #: apt-pkg/contrib/cmndline.cc:163
  2093. #, c-format
  2094. msgid "Command line option %s is not understood"
  2095. msgstr "Kommandolinjetilvalget %s blev ikke forstået"
  2096. #: apt-pkg/contrib/cmndline.cc:168
  2097. #, c-format
  2098. msgid "Command line option %s is not boolean"
  2099. msgstr "Kommandolinjetilvalget %s er ikke boolsk"
  2100. #: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230
  2101. #, c-format
  2102. msgid "Option %s requires an argument."
  2103. msgstr "Tilvalget %s kræver et parameter."
  2104. #: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249
  2105. #, c-format
  2106. msgid "Option %s: Configuration item specification must have an =<val>."
  2107. msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>."
  2108. #: apt-pkg/contrib/cmndline.cc:278
  2109. #, c-format
  2110. msgid "Option %s requires an integer argument, not '%s'"
  2111. msgstr "Tilvalget %s kræver et heltalligt parameter, ikke »%s«"
  2112. #: apt-pkg/contrib/cmndline.cc:309
  2113. #, c-format
  2114. msgid "Option '%s' is too long"
  2115. msgstr "Tilvalget »%s« er for langt"
  2116. #: apt-pkg/contrib/cmndline.cc:341
  2117. #, c-format
  2118. msgid "Sense %s is not understood, try true or false."
  2119. msgstr "%s blev ikke forstået, prøv med »true« eller »false«."
  2120. #: apt-pkg/contrib/cmndline.cc:391
  2121. #, c-format
  2122. msgid "Invalid operation %s"
  2123. msgstr "Ugyldig handling %s"
  2124. #: apt-pkg/contrib/cdromutl.cc:65
  2125. #, c-format
  2126. msgid "Unable to stat the mount point %s"
  2127. msgstr "Kunne ikke finde monteringspunktet %s"
  2128. #: apt-pkg/contrib/cdromutl.cc:246
  2129. msgid "Failed to stat the cdrom"
  2130. msgstr "Kunne ikke finde cdrommen"
  2131. #: apt-pkg/contrib/fileutl.cc:193
  2132. #, c-format
  2133. msgid "Not using locking for read only lock file %s"
  2134. msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s"
  2135. #: apt-pkg/contrib/fileutl.cc:198
  2136. #, c-format
  2137. msgid "Could not open lock file %s"
  2138. msgstr "Kunne ikke åbne låsefilen %s"
  2139. #: apt-pkg/contrib/fileutl.cc:221
  2140. #, c-format
  2141. msgid "Not using locking for nfs mounted lock file %s"
  2142. msgstr "Benytter ikke låsning for nfs-monteret låsefil %s"
  2143. #: apt-pkg/contrib/fileutl.cc:226
  2144. #, c-format
  2145. msgid "Could not get lock %s"
  2146. msgstr "Kunne ikke opnå låsen %s"
  2147. #: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477
  2148. #, c-format
  2149. msgid "List of files can't be created as '%s' is not a directory"
  2150. msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe"
  2151. #: apt-pkg/contrib/fileutl.cc:397
  2152. #, c-format
  2153. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2154. msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil"
  2155. #: apt-pkg/contrib/fileutl.cc:415
  2156. #, c-format
  2157. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2158. msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse"
  2159. #: apt-pkg/contrib/fileutl.cc:424
  2160. #, c-format
  2161. msgid ""
  2162. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2163. msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse"
  2164. #: apt-pkg/contrib/fileutl.cc:827
  2165. #, c-format
  2166. msgid "Sub-process %s received a segmentation fault."
  2167. msgstr "Underprocessen %s modtog en segmenteringsfejl."
  2168. #: apt-pkg/contrib/fileutl.cc:829
  2169. #, c-format
  2170. msgid "Sub-process %s received signal %u."
  2171. msgstr "Underprocessen %s modtog en signal %u."
  2172. #: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239
  2173. #, c-format
  2174. msgid "Sub-process %s returned an error code (%u)"
  2175. msgstr "Underprocessen %s returnerede en fejlkode (%u)"
  2176. #: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232
  2177. #, c-format
  2178. msgid "Sub-process %s exited unexpectedly"
  2179. msgstr "Underprocessen %s afsluttedes uventet"
  2180. #: apt-pkg/contrib/fileutl.cc:916
  2181. #, c-format
  2182. msgid "Problem closing the gzip file %s"
  2183. msgstr "Problem under lukning af gzip-filen %s"
  2184. #: apt-pkg/contrib/fileutl.cc:1104
  2185. #, c-format
  2186. msgid "Could not open file %s"
  2187. msgstr "Kunne ikke åbne filen %s"
  2188. #: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210
  2189. #, c-format
  2190. msgid "Could not open file descriptor %d"
  2191. msgstr "Kunne ikke åbne filbeskrivelse %d"
  2192. #: apt-pkg/contrib/fileutl.cc:1317
  2193. msgid "Failed to create subprocess IPC"
  2194. msgstr "Kunne ikke oprette underproces IPC"
  2195. #: apt-pkg/contrib/fileutl.cc:1372
  2196. msgid "Failed to exec compressor "
  2197. msgstr "Kunne ikke udføre komprimeringsprogram "
  2198. #: apt-pkg/contrib/fileutl.cc:1513
  2199. #, c-format
  2200. msgid "read, still have %llu to read but none left"
  2201. msgstr "læs, mangler stadig at læse %llu men der er ikke flere"
  2202. #: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648
  2203. #, c-format
  2204. msgid "write, still have %llu to write but couldn't"
  2205. msgstr "skriv, mangler stadig at skrive %llu men kunne ikke"
  2206. #: apt-pkg/contrib/fileutl.cc:1918
  2207. #, c-format
  2208. msgid "Problem closing the file %s"
  2209. msgstr "Problem under lukning af filen %s"
  2210. #: apt-pkg/contrib/fileutl.cc:1930
  2211. #, c-format
  2212. msgid "Problem renaming the file %s to %s"
  2213. msgstr "Problem under omdøbning af filen %s til %s"
  2214. #: apt-pkg/contrib/fileutl.cc:1941
  2215. #, c-format
  2216. msgid "Problem unlinking the file %s"
  2217. msgstr "Fejl ved frigivelse af filen %s"
  2218. #: apt-pkg/contrib/fileutl.cc:1954
  2219. msgid "Problem syncing the file"
  2220. msgstr "Problem under synkronisering af fil"
  2221. #: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148
  2222. #, c-format
  2223. msgid "rename failed, %s (%s -> %s)."
  2224. msgstr "omdøbning mislykkedes, %s (%s -> %s)."
  2225. #. TRANSLATOR: %s is the trusted keyring parts directory
  2226. #: apt-pkg/contrib/gpgv.cc:72
  2227. #, c-format
  2228. msgid "No keyring installed in %s."
  2229. msgstr "Ingen nøglering installeret i %s."
  2230. #: apt-pkg/pkgcache.cc:155
  2231. msgid "Empty package cache"
  2232. msgstr "Tomt pakke-mellemlager"
  2233. #: apt-pkg/pkgcache.cc:161
  2234. msgid "The package cache file is corrupted"
  2235. msgstr "Pakke-mellemlagerets fil er ødelagt"
  2236. #: apt-pkg/pkgcache.cc:166
  2237. msgid "The package cache file is an incompatible version"
  2238. msgstr "Pakke-mellemlagerets fil er af en inkompatibel version"
  2239. #: apt-pkg/pkgcache.cc:169
  2240. msgid "The package cache file is corrupted, it is too small"
  2241. msgstr "Pakke-mellemlagerets fil er ødelagt, den er for lille"
  2242. #: apt-pkg/pkgcache.cc:174
  2243. #, c-format
  2244. msgid "This APT does not support the versioning system '%s'"
  2245. msgstr "Denne APT understøtter ikke versionssystemet »%s«"
  2246. #: apt-pkg/pkgcache.cc:179
  2247. msgid "The package cache was built for a different architecture"
  2248. msgstr "Pakke-mellemlageret er lavet til en anden arkitektur"
  2249. #: apt-pkg/pkgcache.cc:321
  2250. msgid "Depends"
  2251. msgstr "Afhængigheder"
  2252. #: apt-pkg/pkgcache.cc:321
  2253. msgid "PreDepends"
  2254. msgstr "Præ-afhængigheder"
  2255. #: apt-pkg/pkgcache.cc:321
  2256. msgid "Suggests"
  2257. msgstr "Foreslåede"
  2258. #: apt-pkg/pkgcache.cc:322
  2259. msgid "Recommends"
  2260. msgstr "Anbefalede"
  2261. #: apt-pkg/pkgcache.cc:322
  2262. msgid "Conflicts"
  2263. msgstr "Konflikter"
  2264. #: apt-pkg/pkgcache.cc:322
  2265. msgid "Replaces"
  2266. msgstr "Erstatter"
  2267. #: apt-pkg/pkgcache.cc:323
  2268. msgid "Obsoletes"
  2269. msgstr "Overflødiggør"
  2270. #: apt-pkg/pkgcache.cc:323
  2271. msgid "Breaks"
  2272. msgstr "Ødelægger"
  2273. #: apt-pkg/pkgcache.cc:323
  2274. msgid "Enhances"
  2275. msgstr "Forbedringer"
  2276. #: apt-pkg/pkgcache.cc:334
  2277. msgid "important"
  2278. msgstr "vigtig"
  2279. #: apt-pkg/pkgcache.cc:334
  2280. msgid "required"
  2281. msgstr "krævet"
  2282. #: apt-pkg/pkgcache.cc:334
  2283. msgid "standard"
  2284. msgstr "standard"
  2285. #: apt-pkg/pkgcache.cc:335
  2286. msgid "optional"
  2287. msgstr "frivillig"
  2288. #: apt-pkg/pkgcache.cc:335
  2289. msgid "extra"
  2290. msgstr "ekstra"
  2291. #: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167
  2292. msgid "Building dependency tree"
  2293. msgstr "Opbygger afhængighedstræ"
  2294. #: apt-pkg/depcache.cc:139
  2295. msgid "Candidate versions"
  2296. msgstr "Kandidatversioner"
  2297. #: apt-pkg/depcache.cc:168
  2298. msgid "Dependency generation"
  2299. msgstr "Afhængighedsgenerering"
  2300. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  2301. msgid "Reading state information"
  2302. msgstr "Læser tilstandsoplysninger"
  2303. #: apt-pkg/depcache.cc:250
  2304. #, c-format
  2305. msgid "Failed to open StateFile %s"
  2306. msgstr "Kunne ikke åbne StateFile %s"
  2307. #: apt-pkg/depcache.cc:256
  2308. #, c-format
  2309. msgid "Failed to write temporary StateFile %s"
  2310. msgstr "Kunne ikke skrive den midlertidige StateFile %s"
  2311. #: apt-pkg/tagfile.cc:140
  2312. #, c-format
  2313. msgid "Unable to parse package file %s (1)"
  2314. msgstr "Kunne ikke tolke pakkefilen %s (1)"
  2315. #: apt-pkg/tagfile.cc:237
  2316. #, c-format
  2317. msgid "Unable to parse package file %s (2)"
  2318. msgstr "Kunne ikke tolke pakkefilen %s (2)"
  2319. #: apt-pkg/sourcelist.cc:127
  2320. #, fuzzy, c-format
  2321. msgid "Malformed stanza %u in source list %s (URI parse)"
  2322. msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)"
  2323. #: apt-pkg/sourcelist.cc:170
  2324. #, c-format
  2325. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2326. msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)"
  2327. #: apt-pkg/sourcelist.cc:173
  2328. #, c-format
  2329. msgid "Malformed line %lu in source list %s ([option] too short)"
  2330. msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)"
  2331. #: apt-pkg/sourcelist.cc:184
  2332. #, c-format
  2333. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2334. msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)"
  2335. #: apt-pkg/sourcelist.cc:190
  2336. #, c-format
  2337. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2338. msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)"
  2339. #: apt-pkg/sourcelist.cc:193
  2340. #, c-format
  2341. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2342. msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)"
  2343. #: apt-pkg/sourcelist.cc:206
  2344. #, c-format
  2345. msgid "Malformed line %lu in source list %s (URI)"
  2346. msgstr "Ugyldig linje %lu i kildelisten %s (URI)"
  2347. #: apt-pkg/sourcelist.cc:208
  2348. #, c-format
  2349. msgid "Malformed line %lu in source list %s (dist)"
  2350. msgstr "Ugyldig linje %lu i kildelisten %s (dist)"
  2351. #: apt-pkg/sourcelist.cc:211
  2352. #, c-format
  2353. msgid "Malformed line %lu in source list %s (URI parse)"
  2354. msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)"
  2355. #: apt-pkg/sourcelist.cc:217
  2356. #, c-format
  2357. msgid "Malformed line %lu in source list %s (absolute dist)"
  2358. msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)"
  2359. #: apt-pkg/sourcelist.cc:224
  2360. #, c-format
  2361. msgid "Malformed line %lu in source list %s (dist parse)"
  2362. msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)"
  2363. #: apt-pkg/sourcelist.cc:335
  2364. #, c-format
  2365. msgid "Opening %s"
  2366. msgstr "Åbner %s"
  2367. #: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497
  2368. #, c-format
  2369. msgid "Line %u too long in source list %s."
  2370. msgstr "Linjen %u er for lang i kildelisten %s."
  2371. #: apt-pkg/sourcelist.cc:371
  2372. #, c-format
  2373. msgid "Malformed line %u in source list %s (type)"
  2374. msgstr "Ugyldig linje %u i kildelisten %s (type)"
  2375. #: apt-pkg/sourcelist.cc:375
  2376. #, c-format
  2377. msgid "Type '%s' is not known on line %u in source list %s"
  2378. msgstr "Typen »%s« er ukendt på linje %u i kildelisten %s"
  2379. #: apt-pkg/sourcelist.cc:416
  2380. #, fuzzy, c-format
  2381. msgid "Type '%s' is not known on stanza %u in source list %s"
  2382. msgstr "Typen »%s« er ukendt på linje %u i kildelisten %s"
  2383. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932
  2384. #, c-format
  2385. msgid ""
  2386. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2387. "under APT::Immediate-Configure for details. (%d)"
  2388. msgstr ""
  2389. "Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt."
  2390. "conf under APT:Immediate-Cinfigure for detaljer. (%d)"
  2391. #: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535
  2392. #, c-format
  2393. msgid "Could not configure '%s'. "
  2394. msgstr "Kunne ikke åbne filen »%s«. "
  2395. #: apt-pkg/packagemanager.cc:577
  2396. #, c-format
  2397. msgid ""
  2398. "This installation run will require temporarily removing the essential "
  2399. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2400. "you really want to do it, activate the APT::Force-LoopBreak option."
  2401. msgstr ""
  2402. "Kørsel af denne installation kræver midlertidig afinstallation af den "
  2403. "essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig "
  2404. "ide, men hvis du virkelig vil gøre det, kan du aktivere valget »APT::Force-"
  2405. "LoopBreak«."
  2406. #: apt-pkg/pkgrecords.cc:38
  2407. #, c-format
  2408. msgid "Index file type '%s' is not supported"
  2409. msgstr "Indeksfiler af typen »%s« understøttes ikke"
  2410. #: apt-pkg/algorithms.cc:265
  2411. #, c-format
  2412. msgid ""
  2413. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2414. msgstr ""
  2415. "Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den."
  2416. #: apt-pkg/algorithms.cc:1083
  2417. msgid ""
  2418. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2419. "held packages."
  2420. msgstr ""
  2421. "Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes "
  2422. "tilbageholdte pakker."
  2423. #: apt-pkg/algorithms.cc:1085
  2424. msgid "Unable to correct problems, you have held broken packages."
  2425. msgstr ""
  2426. "Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker."
  2427. #: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816
  2428. #, c-format
  2429. msgid "List directory %spartial is missing."
  2430. msgstr "Listemappen %spartial mangler."
  2431. #: apt-pkg/acquire.cc:91
  2432. #, c-format
  2433. msgid "Archives directory %spartial is missing."
  2434. msgstr "Arkivmappen %spartial mangler."
  2435. #: apt-pkg/acquire.cc:99
  2436. #, c-format
  2437. msgid "Unable to lock directory %s"
  2438. msgstr "Kunne ikke låse mappen %s"
  2439. #. only show the ETA if it makes sense
  2440. #. two days
  2441. #: apt-pkg/acquire.cc:899
  2442. #, c-format
  2443. msgid "Retrieving file %li of %li (%s remaining)"
  2444. msgstr "Henter fil %li ud af %li (%s tilbage)"
  2445. #: apt-pkg/acquire.cc:901
  2446. #, c-format
  2447. msgid "Retrieving file %li of %li"
  2448. msgstr "Henter fil %li ud af %li"
  2449. #: apt-pkg/acquire-worker.cc:116
  2450. #, c-format
  2451. msgid "The method driver %s could not be found."
  2452. msgstr "Metodedriveren %s blev ikke fundet."
  2453. #: apt-pkg/acquire-worker.cc:118
  2454. #, fuzzy, c-format
  2455. msgid "Is the package %s installed?"
  2456. msgstr "Tjek om pakken »dpkg-dev« er installeret.\n"
  2457. #: apt-pkg/acquire-worker.cc:169
  2458. #, c-format
  2459. msgid "Method %s did not start correctly"
  2460. msgstr "Metoden %s startede ikke korrekt"
  2461. #: apt-pkg/acquire-worker.cc:455
  2462. #, c-format
  2463. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2464. msgstr "Indsæt disken med navnet: »%s« i drevet »%s« og tryk retur."
  2465. #: apt-pkg/init.cc:145
  2466. #, c-format
  2467. msgid "Packaging system '%s' is not supported"
  2468. msgstr "Pakkesystemet »%s« understøttes ikke"
  2469. #: apt-pkg/init.cc:161
  2470. msgid "Unable to determine a suitable packaging system type"
  2471. msgstr "Kunne ikke bestemme en passende pakkesystemtype"
  2472. #: apt-pkg/clean.cc:61
  2473. #, c-format
  2474. msgid "Unable to stat %s."
  2475. msgstr "Kunne ikke finde %s."
  2476. #: apt-pkg/srcrecords.cc:52
  2477. msgid "You must put some 'source' URIs in your sources.list"
  2478. msgstr "Du skal have nogle »source«-URI'er i din sources.list"
  2479. #: apt-pkg/cachefile.cc:94
  2480. msgid "The package lists or status file could not be parsed or opened."
  2481. msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes."
  2482. #: apt-pkg/cachefile.cc:98
  2483. msgid "You may want to run apt-get update to correct these problems"
  2484. msgstr "Du kan muligvis rette problemet ved at køre »apt-get update«"
  2485. #: apt-pkg/cachefile.cc:116
  2486. msgid "The list of sources could not be read."
  2487. msgstr "Listen med kilder kunne ikke læses."
  2488. #: apt-pkg/policy.cc:83
  2489. #, c-format
  2490. msgid ""
  2491. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2492. "available in the sources"
  2493. msgstr ""
  2494. "Værdien »%s« er ugyldig for APT::Default-Release da sådan en udgivelse ikke "
  2495. "er tilgængelig i kilderne"
  2496. #: apt-pkg/policy.cc:422
  2497. #, c-format
  2498. msgid "Invalid record in the preferences file %s, no Package header"
  2499. msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler"
  2500. #: apt-pkg/policy.cc:444
  2501. #, c-format
  2502. msgid "Did not understand pin type %s"
  2503. msgstr "Kunne ikke forstå pin-type %s"
  2504. #: apt-pkg/policy.cc:452
  2505. msgid "No priority (or zero) specified for pin"
  2506. msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin"
  2507. #: apt-pkg/pkgcachegen.cc:93
  2508. msgid "Cache has an incompatible versioning system"
  2509. msgstr "Mellemlageret benytter en inkompatibel versionsstyring"
  2510. #. TRANSLATOR: The first placeholder is a package name,
  2511. #. the other two should be copied verbatim as they include debug info
  2512. #: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234
  2513. #: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327
  2514. #: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382
  2515. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403
  2516. #: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415
  2517. #: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440
  2518. #: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517
  2519. #: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555
  2520. #: apt-pkg/pkgcachegen.cc:569
  2521. #, c-format
  2522. msgid "Error occurred while processing %s (%s%d)"
  2523. msgstr "Der opstod en fejl under behandlingen af %s (%s%d)"
  2524. #: apt-pkg/pkgcachegen.cc:257
  2525. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2526. msgstr ""
  2527. "Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere."
  2528. #: apt-pkg/pkgcachegen.cc:260
  2529. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2530. msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere."
  2531. #: apt-pkg/pkgcachegen.cc:263
  2532. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2533. msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere."
  2534. #: apt-pkg/pkgcachegen.cc:266
  2535. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2536. msgstr ""
  2537. "Hold da op! Du nåede over det antal afhængigheder, denne APT kan håndtere."
  2538. #: apt-pkg/pkgcachegen.cc:576
  2539. #, c-format
  2540. msgid "Package %s %s was not found while processing file dependencies"
  2541. msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder"
  2542. #: apt-pkg/pkgcachegen.cc:1211
  2543. #, c-format
  2544. msgid "Couldn't stat source package list %s"
  2545. msgstr "Kunne ikke finde kildepakkelisten %s"
  2546. #: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403
  2547. #: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566
  2548. msgid "Reading package lists"
  2549. msgstr "Indlæser pakkelisterne"
  2550. #: apt-pkg/pkgcachegen.cc:1316
  2551. msgid "Collecting File Provides"
  2552. msgstr "Samler filudbud"
  2553. #: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515
  2554. msgid "IO Error saving source cache"
  2555. msgstr "IO-fejl ved gemning af kilde-mellemlageret"
  2556. #: apt-pkg/acquire-item.cc:163
  2557. msgid "Hash Sum mismatch"
  2558. msgstr "Hashsum stemmer ikke"
  2559. #: apt-pkg/acquire-item.cc:168
  2560. msgid "Size mismatch"
  2561. msgstr "Størrelsen stemmer ikke"
  2562. #: apt-pkg/acquire-item.cc:173
  2563. msgid "Invalid file format"
  2564. msgstr "Ugyldigt filformat"
  2565. #: apt-pkg/acquire-item.cc:1579
  2566. #, c-format
  2567. msgid ""
  2568. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2569. "or malformed file)"
  2570. msgstr ""
  2571. "Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-"
  2572. "punkt eller forkert udformet fil)"
  2573. #: apt-pkg/acquire-item.cc:1595
  2574. #, c-format
  2575. msgid "Unable to find hash sum for '%s' in Release file"
  2576. msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen"
  2577. #: apt-pkg/acquire-item.cc:1637
  2578. msgid "There is no public key available for the following key IDs:\n"
  2579. msgstr ""
  2580. "Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n"
  2581. #: apt-pkg/acquire-item.cc:1675
  2582. #, c-format
  2583. msgid ""
  2584. "Release file for %s is expired (invalid since %s). Updates for this "
  2585. "repository will not be applied."
  2586. msgstr ""
  2587. "Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette "
  2588. "arkiv vil ikke blive anvendt."
  2589. #: apt-pkg/acquire-item.cc:1697
  2590. #, c-format
  2591. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2592. msgstr "Konfliktdistribution: %s (forventede %s men fik %s)"
  2593. #: apt-pkg/acquire-item.cc:1727
  2594. #, c-format
  2595. msgid ""
  2596. "An error occurred during the signature verification. The repository is not "
  2597. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2598. msgstr ""
  2599. "Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret "
  2600. "og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n"
  2601. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2602. #: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742
  2603. #, c-format
  2604. msgid "GPG error: %s: %s"
  2605. msgstr "GPG-fejl: %s: %s"
  2606. #: apt-pkg/acquire-item.cc:1865
  2607. #, c-format
  2608. msgid ""
  2609. "I wasn't able to locate a file for the %s package. This might mean you need "
  2610. "to manually fix this package. (due to missing arch)"
  2611. msgstr ""
  2612. "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er "
  2613. "nødt til manuelt at reparere denne pakke. (grundet manglende arch)"
  2614. #: apt-pkg/acquire-item.cc:1931
  2615. #, c-format
  2616. msgid "Can't find a source to download version '%s' of '%s'"
  2617. msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«"
  2618. #: apt-pkg/acquire-item.cc:1989
  2619. #, c-format
  2620. msgid ""
  2621. "The package index files are corrupted. No Filename: field for package %s."
  2622. msgstr "Pakkeindeksfilerne er i stykker. Intet »Filename:«-felt for pakken %s."
  2623. #: apt-pkg/indexrecords.cc:78
  2624. #, c-format
  2625. msgid "Unable to parse Release file %s"
  2626. msgstr "Kunne ikke fortolke udgivelsesfil %s"
  2627. #: apt-pkg/indexrecords.cc:86
  2628. #, c-format
  2629. msgid "No sections in Release file %s"
  2630. msgstr "Ingen afsnit i udgivelsesfil %s"
  2631. #: apt-pkg/indexrecords.cc:117
  2632. #, c-format
  2633. msgid "No Hash entry in Release file %s"
  2634. msgstr "Intet hashpunkt i udgivelsesfil %s"
  2635. #: apt-pkg/indexrecords.cc:130
  2636. #, c-format
  2637. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2638. msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s"
  2639. #: apt-pkg/indexrecords.cc:149
  2640. #, c-format
  2641. msgid "Invalid 'Date' entry in Release file %s"
  2642. msgstr "Ugyldigt punkt »Date« i udgivelsesfil %s"
  2643. #: apt-pkg/vendorlist.cc:85
  2644. #, c-format
  2645. msgid "Vendor block %s contains no fingerprint"
  2646. msgstr "Leverandørblok %s inderholder intet fingeraftryk"
  2647. #: apt-pkg/cdrom.cc:577
  2648. #, c-format
  2649. msgid "Using CD-ROM mount point %s\n"
  2650. msgstr "Bruger CD-ROM-monteringspunktet %s\n"
  2651. #: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893
  2652. msgid "Unmounting CD-ROM...\n"
  2653. msgstr "Afmonterer CD-ROM ...\n"
  2654. #: apt-pkg/cdrom.cc:592
  2655. msgid "Waiting for disc...\n"
  2656. msgstr "Venter på disken ...\n"
  2657. #: apt-pkg/cdrom.cc:602
  2658. msgid "Mounting CD-ROM...\n"
  2659. msgstr "Monterer CD-ROM ...\n"
  2660. #: apt-pkg/cdrom.cc:610
  2661. msgid "Identifying... "
  2662. msgstr "Identificerer ... "
  2663. #: apt-pkg/cdrom.cc:648
  2664. #, c-format
  2665. msgid "Stored label: %s\n"
  2666. msgstr "Gemt mærkat: %s \n"
  2667. #: apt-pkg/cdrom.cc:672
  2668. msgid "Scanning disc for index files...\n"
  2669. msgstr "Skanner disken for indeksfiler ...\n"
  2670. #: apt-pkg/cdrom.cc:722
  2671. #, c-format
  2672. msgid ""
  2673. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2674. "%zu signatures\n"
  2675. msgstr ""
  2676. "Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu "
  2677. "signaturer\n"
  2678. #: apt-pkg/cdrom.cc:733
  2679. msgid ""
  2680. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2681. "wrong architecture?"
  2682. msgstr ""
  2683. "Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller "
  2684. "den forkerte arkitektur?"
  2685. #: apt-pkg/cdrom.cc:760
  2686. #, c-format
  2687. msgid "Found label '%s'\n"
  2688. msgstr "Fandt mærkatet »%s«\n"
  2689. #: apt-pkg/cdrom.cc:789
  2690. msgid "That is not a valid name, try again.\n"
  2691. msgstr "Det er ikke et gyldigt navn, prøv igen.\n"
  2692. #: apt-pkg/cdrom.cc:806
  2693. #, c-format
  2694. msgid ""
  2695. "This disc is called: \n"
  2696. "'%s'\n"
  2697. msgstr ""
  2698. "Denne disk hedder: \n"
  2699. "»%s«\n"
  2700. #: apt-pkg/cdrom.cc:808
  2701. msgid "Copying package lists..."
  2702. msgstr "Kopierer pakkelisterne ..."
  2703. #: apt-pkg/cdrom.cc:843
  2704. msgid "Writing new source list\n"
  2705. msgstr "Skriver ny kildeliste\n"
  2706. #: apt-pkg/cdrom.cc:851
  2707. msgid "Source list entries for this disc are:\n"
  2708. msgstr "Denne disk har følgende kildeliste-indgange:\n"
  2709. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773
  2710. #, c-format
  2711. msgid "Wrote %i records.\n"
  2712. msgstr "Skrev %i poster.\n"
  2713. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775
  2714. #, c-format
  2715. msgid "Wrote %i records with %i missing files.\n"
  2716. msgstr "Skrev %i poster med %i manglende filer.\n"
  2717. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778
  2718. #, c-format
  2719. msgid "Wrote %i records with %i mismatched files\n"
  2720. msgstr "Skrev %i poster med %i ikke-trufne filer\n"
  2721. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781
  2722. #, c-format
  2723. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2724. msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n"
  2725. #: apt-pkg/indexcopy.cc:515
  2726. #, c-format
  2727. msgid "Can't find authentication record for: %s"
  2728. msgstr "Kan ikke finde godkendelsesregistrering for: %s"
  2729. #: apt-pkg/indexcopy.cc:521
  2730. #, c-format
  2731. msgid "Hash mismatch for: %s"
  2732. msgstr "Hashsum stemmer ikke: %s"
  2733. #: apt-pkg/cacheset.cc:487
  2734. #, c-format
  2735. msgid "Release '%s' for '%s' was not found"
  2736. msgstr "Udgaven »%s« for »%s« blev ikke fundet"
  2737. #: apt-pkg/cacheset.cc:490
  2738. #, c-format
  2739. msgid "Version '%s' for '%s' was not found"
  2740. msgstr "Versionen »%s« for »%s« blev ikke fundet"
  2741. #: apt-pkg/cacheset.cc:601
  2742. #, c-format
  2743. msgid "Couldn't find task '%s'"
  2744. msgstr "Kunne ikke finde opgaven »%s«"
  2745. #: apt-pkg/cacheset.cc:607
  2746. #, c-format
  2747. msgid "Couldn't find any package by regex '%s'"
  2748. msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«"
  2749. #: apt-pkg/cacheset.cc:613
  2750. #, fuzzy, c-format
  2751. msgid "Couldn't find any package by glob '%s'"
  2752. msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«"
  2753. #: apt-pkg/cacheset.cc:624
  2754. #, c-format
  2755. msgid "Can't select versions from package '%s' as it is purely virtual"
  2756. msgstr "Kan ikke vælge versioner fra pakke »%s« som er vitalt"
  2757. #: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638
  2758. #, c-format
  2759. msgid ""
  2760. "Can't select installed nor candidate version from package '%s' as it has "
  2761. "neither of them"
  2762. msgstr ""
  2763. "Kan ikke vælge installeret eller kandidatversion fra pakke »%s« da den ikke "
  2764. "har nogen af dem"
  2765. #: apt-pkg/cacheset.cc:645
  2766. #, c-format
  2767. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2768. msgstr "Kan ikke vælge nyeste version fra pakke »%s« som er vital"
  2769. #: apt-pkg/cacheset.cc:653
  2770. #, c-format
  2771. msgid "Can't select candidate version from package %s as it has no candidate"
  2772. msgstr ""
  2773. "Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat"
  2774. #: apt-pkg/cacheset.cc:661
  2775. #, c-format
  2776. msgid "Can't select installed version from package %s as it is not installed"
  2777. msgstr ""
  2778. "Kan ikke vælge installeret version fra pakke %s da den ikke er installeret"
  2779. #: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70
  2780. msgid "Send scenario to solver"
  2781. msgstr "Send scenarie til problemløser"
  2782. #: apt-pkg/edsp.cc:216
  2783. msgid "Send request to solver"
  2784. msgstr "Send forespørgsel til problemløser"
  2785. #: apt-pkg/edsp.cc:286
  2786. msgid "Prepare for receiving solution"
  2787. msgstr "Forbered for modtagelse af løsning"
  2788. #: apt-pkg/edsp.cc:293
  2789. msgid "External solver failed without a proper error message"
  2790. msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked"
  2791. #: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571
  2792. msgid "Execute external solver"
  2793. msgstr "Kør ekstern problemløser"
  2794. #: apt-pkg/install-progress.cc:57
  2795. #, c-format
  2796. msgid "Progress: [%3i%%]"
  2797. msgstr "Status: [%3i%%]"
  2798. #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174
  2799. msgid "Running dpkg"
  2800. msgstr "Kører dpkg"
  2801. #: apt-pkg/update.cc:103 apt-pkg/update.cc:105
  2802. msgid ""
  2803. "Some index files failed to download. They have been ignored, or old ones "
  2804. "used instead."
  2805. msgstr ""
  2806. "Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle "
  2807. "bruges i stedet."
  2808. #: apt-pkg/deb/dpkgpm.cc:95
  2809. #, c-format
  2810. msgid "Installing %s"
  2811. msgstr "Installerer %s"
  2812. #: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996
  2813. #, c-format
  2814. msgid "Configuring %s"
  2815. msgstr "Sætter %s op"
  2816. #: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003
  2817. #, c-format
  2818. msgid "Removing %s"
  2819. msgstr "Fjerner %s"
  2820. #: apt-pkg/deb/dpkgpm.cc:98
  2821. #, c-format
  2822. msgid "Completely removing %s"
  2823. msgstr "Fjerner %s helt"
  2824. #: apt-pkg/deb/dpkgpm.cc:99
  2825. #, c-format
  2826. msgid "Noting disappearance of %s"
  2827. msgstr "Bemærker forsvinding af %s"
  2828. #: apt-pkg/deb/dpkgpm.cc:100
  2829. #, c-format
  2830. msgid "Running post-installation trigger %s"
  2831. msgstr "Kører førinstallationsudløser %s"
  2832. #. FIXME: use a better string after freeze
  2833. #: apt-pkg/deb/dpkgpm.cc:827
  2834. #, c-format
  2835. msgid "Directory '%s' missing"
  2836. msgstr "Mappe »%s« mangler"
  2837. #: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864
  2838. #, c-format
  2839. msgid "Could not open file '%s'"
  2840. msgstr "Kunne ikke åbne filen »%s«"
  2841. #: apt-pkg/deb/dpkgpm.cc:989
  2842. #, c-format
  2843. msgid "Preparing %s"
  2844. msgstr "Klargør %s"
  2845. #: apt-pkg/deb/dpkgpm.cc:990
  2846. #, c-format
  2847. msgid "Unpacking %s"
  2848. msgstr "Pakker %s ud"
  2849. #: apt-pkg/deb/dpkgpm.cc:995
  2850. #, c-format
  2851. msgid "Preparing to configure %s"
  2852. msgstr "Gør klar til at sætte %s op"
  2853. #: apt-pkg/deb/dpkgpm.cc:997
  2854. #, c-format
  2855. msgid "Installed %s"
  2856. msgstr "Installerede %s"
  2857. #: apt-pkg/deb/dpkgpm.cc:1002
  2858. #, c-format
  2859. msgid "Preparing for removal of %s"
  2860. msgstr "Gør klar til afinstallation af %s"
  2861. #: apt-pkg/deb/dpkgpm.cc:1004
  2862. #, c-format
  2863. msgid "Removed %s"
  2864. msgstr "Fjernede %s"
  2865. #: apt-pkg/deb/dpkgpm.cc:1009
  2866. #, c-format
  2867. msgid "Preparing to completely remove %s"
  2868. msgstr "Gør klar til at fjerne %s helt"
  2869. #: apt-pkg/deb/dpkgpm.cc:1010
  2870. #, c-format
  2871. msgid "Completely removed %s"
  2872. msgstr "Fjernede %s helt"
  2873. #: apt-pkg/deb/dpkgpm.cc:1065
  2874. msgid "ioctl(TIOCGWINSZ) failed"
  2875. msgstr ""
  2876. #: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089
  2877. #, c-format
  2878. msgid "Can not write log (%s)"
  2879. msgstr "Kan ikke skrive log (%s)"
  2880. #: apt-pkg/deb/dpkgpm.cc:1068
  2881. msgid "Is /dev/pts mounted?"
  2882. msgstr "Er /dev/pts monteret?"
  2883. #: apt-pkg/deb/dpkgpm.cc:1089
  2884. msgid "Is stdout a terminal?"
  2885. msgstr "Er standardud en terminal?"
  2886. #: apt-pkg/deb/dpkgpm.cc:1567
  2887. msgid "Operation was interrupted before it could finish"
  2888. msgstr "Handling blev afbrudt før den kunne afsluttes"
  2889. #: apt-pkg/deb/dpkgpm.cc:1629
  2890. msgid "No apport report written because MaxReports is reached already"
  2891. msgstr ""
  2892. "Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nået"
  2893. #. check if its not a follow up error
  2894. #: apt-pkg/deb/dpkgpm.cc:1634
  2895. msgid "dependency problems - leaving unconfigured"
  2896. msgstr "afhængighedsproblemer - efterlader ukonfigureret"
  2897. #: apt-pkg/deb/dpkgpm.cc:1636
  2898. msgid ""
  2899. "No apport report written because the error message indicates its a followup "
  2900. "error from a previous failure."
  2901. msgstr ""
  2902. "Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en "
  2903. "opfølgningsfejl fra en tidligere fejl."
  2904. #: apt-pkg/deb/dpkgpm.cc:1642
  2905. msgid ""
  2906. "No apport report written because the error message indicates a disk full "
  2907. "error"
  2908. msgstr ""
  2909. "Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl"
  2910. #: apt-pkg/deb/dpkgpm.cc:1649
  2911. msgid ""
  2912. "No apport report written because the error message indicates a out of memory "
  2913. "error"
  2914. msgstr ""
  2915. "Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok "
  2916. "hukommelsesfejl"
  2917. #: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662
  2918. msgid ""
  2919. "No apport report written because the error message indicates an issue on the "
  2920. "local system"
  2921. msgstr ""
  2922. "Ingen apportrapport skrevet da fejlbeskeden indikerer en fejl på det lokale "
  2923. "system"
  2924. #: apt-pkg/deb/dpkgpm.cc:1683
  2925. msgid ""
  2926. "No apport report written because the error message indicates a dpkg I/O error"
  2927. msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl"
  2928. #: apt-pkg/deb/debsystem.cc:91
  2929. #, c-format
  2930. msgid ""
  2931. "Unable to lock the administration directory (%s), is another process using "
  2932. "it?"
  2933. msgstr ""
  2934. "Kunne ikke låse administrationsmappen (%s), bruger en anden proces den?"
  2935. #: apt-pkg/deb/debsystem.cc:94
  2936. #, c-format
  2937. msgid "Unable to lock the administration directory (%s), are you root?"
  2938. msgstr "Kunne ikke låse administrationsmappen (%s), er du rod (root)?"
  2939. #. TRANSLATORS: the %s contains the recovery command, usually
  2940. #. dpkg --configure -a
  2941. #: apt-pkg/deb/debsystem.cc:110
  2942. #, c-format
  2943. msgid ""
  2944. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2945. msgstr "dpkg blev afbrudt, du skal manuelt køre »%s« for at rette problemet."
  2946. #: apt-pkg/deb/debsystem.cc:128
  2947. msgid "Not locked"
  2948. msgstr "Ikke låst"
  2949. #~ msgid "%s not a valid DEB package."
  2950. #~ msgstr "%s er ikke en gyldig DEB-pakke."
  2951. #~ msgid ""
  2952. #~ "Using CD-ROM mount point %s\n"
  2953. #~ "Mounting CD-ROM\n"
  2954. #~ msgstr ""
  2955. #~ "Bruger cdrom-monteringspunktet %s\n"
  2956. #~ "Monterer cdrom\n"
  2957. #~ msgid ""
  2958. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  2959. #~ "seems to be corrupt."
  2960. #~ msgstr ""
  2961. #~ "Kunne ikke fejlrette (patch) %s med mmap og med filhandlingsbrug - "
  2962. #~ "fejlrettelsen ser ud til at være ødelagt."
  2963. #~ msgid ""
  2964. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  2965. #~ "seems to be corrupt."
  2966. #~ msgstr ""
  2967. #~ "Kunne ikke fejlrette (patch) %s med mmap (men ingen mmap specifik fejl) - "
  2968. #~ "fejlrettelsen ser ud til at være ødelagt."