da.po 119 KB

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