da.po 114 KB

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