da.po 112 KB

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