nb.po 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810
  1. # Norsk Bokmal translation of messages in APT.
  2. # The file is available under Gnu Public License version 2.
  3. # Get the license from http://www.gnu.org/licenses/gpl.txt
  4. # Copyright:
  5. # Lars Bahner <bahner@debian.org>, 2002-2003.
  6. # Axel Bojer <axelb@skolelinux.no>, 2003-2004.
  7. # Klaus Ade Johnstad <klaus@skolelinux.no>, 2004.
  8. # Bjorn Steensrud <bjornst@powertech.no>, 2004.
  9. # Hans Fredrik Nordhaug <hans@nordhaug.priv.no>, 2003, 2005-2010.
  10. msgid ""
  11. msgstr ""
  12. "Project-Id-Version: apt\n"
  13. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  14. "POT-Creation-Date: 2014-01-22 19:02+0100\n"
  15. "PO-Revision-Date: 2010-09-01 21:10+0200\n"
  16. "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
  17. "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
  18. "Language: nb\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  23. "X-Generator: Virtaal 0.6.1\n"
  24. #: cmdline/apt-cache.cc:140
  25. #, c-format
  26. msgid "Package %s version %s has an unmet dep:\n"
  27. msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n"
  28. #: cmdline/apt-cache.cc:268
  29. msgid "Total package names: "
  30. msgstr "Antall pakkenavn: "
  31. #: cmdline/apt-cache.cc:270
  32. msgid "Total package structures: "
  33. msgstr "Antall pakkestrukturer: "
  34. #: cmdline/apt-cache.cc:310
  35. msgid " Normal packages: "
  36. msgstr " Vanlige pakker: "
  37. #: cmdline/apt-cache.cc:311
  38. msgid " Pure virtual packages: "
  39. msgstr " Rent virtuelle pakker: "
  40. #: cmdline/apt-cache.cc:312
  41. msgid " Single virtual packages: "
  42. msgstr " Enkle virtuelle pakker: "
  43. #: cmdline/apt-cache.cc:313
  44. msgid " Mixed virtual packages: "
  45. msgstr " Sammensatte virtuelle pakker: "
  46. #: cmdline/apt-cache.cc:314
  47. msgid " Missing: "
  48. msgstr " Mangler: "
  49. #: cmdline/apt-cache.cc:316
  50. msgid "Total distinct versions: "
  51. msgstr "Antall unike versjoner: "
  52. #: cmdline/apt-cache.cc:318
  53. msgid "Total distinct descriptions: "
  54. msgstr "Antall unike beskrivelser: "
  55. #: cmdline/apt-cache.cc:320
  56. msgid "Total dependencies: "
  57. msgstr "Antall avhengighetsforhold: "
  58. #: cmdline/apt-cache.cc:323
  59. msgid "Total ver/file relations: "
  60. msgstr "Antall forhold versjon/fil: "
  61. #: cmdline/apt-cache.cc:325
  62. msgid "Total Desc/File relations: "
  63. msgstr "Antall forhold beskrivelse/fil: "
  64. #: cmdline/apt-cache.cc:327
  65. msgid "Total Provides mappings: "
  66. msgstr "Antall tilbudte tilknyttinger: "
  67. #: cmdline/apt-cache.cc:339
  68. msgid "Total globbed strings: "
  69. msgstr "Antall utvidede strenger: "
  70. #: cmdline/apt-cache.cc:353
  71. msgid "Total dependency version space: "
  72. msgstr "Total plass for avhengighetsforhold/versjoner: "
  73. #: cmdline/apt-cache.cc:358
  74. msgid "Total slack space: "
  75. msgstr "Plass brukt av slark: "
  76. #: cmdline/apt-cache.cc:366
  77. msgid "Total space accounted for: "
  78. msgstr "Samlet mengde redegjort plass: "
  79. #: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146
  80. #: apt-private/private-show.cc:52
  81. #, c-format
  82. msgid "Package file %s is out of sync."
  83. msgstr "Pakkefila %s er ikke oppdatert."
  84. #: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432
  85. #: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48
  86. #: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221
  87. #: apt-private/private-show.cc:113 apt-private/private-show.cc:115
  88. msgid "No packages found"
  89. msgstr "Fant ingen pakker"
  90. #: cmdline/apt-cache.cc:1245
  91. msgid "You must give at least one search pattern"
  92. msgstr "Du må oppgi minst ett søkemønster"
  93. #: cmdline/apt-cache.cc:1411
  94. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  95. msgstr ""
  96. #: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:574
  97. #, c-format
  98. msgid "Unable to locate package %s"
  99. msgstr "Klarer ikke å finne pakken %s"
  100. #: cmdline/apt-cache.cc:1536
  101. msgid "Package files:"
  102. msgstr "Pakkefiler:"
  103. #: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634
  104. msgid "Cache is out of sync, can't x-ref a package file"
  105. msgstr ""
  106. "Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil"
  107. #. Show any packages have explicit pins
  108. #: cmdline/apt-cache.cc:1557
  109. msgid "Pinned packages:"
  110. msgstr "Låste pakker:"
  111. #: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614
  112. msgid "(not found)"
  113. msgstr "(ikke funnet)"
  114. #: cmdline/apt-cache.cc:1577
  115. msgid " Installed: "
  116. msgstr " Installert: "
  117. #: cmdline/apt-cache.cc:1578
  118. msgid " Candidate: "
  119. msgstr " Kandidat: "
  120. #: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604
  121. msgid "(none)"
  122. msgstr "(ingen)"
  123. #: cmdline/apt-cache.cc:1611
  124. msgid " Package pin: "
  125. msgstr " Pakke låst til: "
  126. #. Show the priority tables
  127. #: cmdline/apt-cache.cc:1620
  128. msgid " Version table:"
  129. msgstr " Versjonstabell:"
  130. #: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:210 cmdline/apt-config.cc:83
  131. #: cmdline/apt-get.cc:1577 cmdline/apt-mark.cc:377 cmdline/apt.cc:66
  132. #: cmdline/apt-extracttemplates.cc:227 ftparchive/apt-ftparchive.cc:591
  133. #: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147
  134. #, c-format
  135. msgid "%s %s for %s compiled on %s %s\n"
  136. msgstr "%s %s for %s kompilert på %s %s\n"
  137. #: cmdline/apt-cache.cc:1740
  138. #, fuzzy
  139. msgid ""
  140. "Usage: apt-cache [options] command\n"
  141. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  142. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  143. "\n"
  144. "apt-cache is a low-level tool used to query information\n"
  145. "from APT's binary cache files\n"
  146. "\n"
  147. "Commands:\n"
  148. " gencaches - Build both the package and source cache\n"
  149. " showpkg - Show some general information for a single package\n"
  150. " showsrc - Show source records\n"
  151. " stats - Show some basic statistics\n"
  152. " dump - Show the entire file in a terse form\n"
  153. " dumpavail - Print an available file to stdout\n"
  154. " unmet - Show unmet dependencies\n"
  155. " search - Search the package list for a regex pattern\n"
  156. " show - Show a readable record for the package\n"
  157. " depends - Show raw dependency information for a package\n"
  158. " rdepends - Show reverse dependency information for a package\n"
  159. " pkgnames - List the names of all packages in the system\n"
  160. " dotty - Generate package graphs for GraphViz\n"
  161. " xvcg - Generate package graphs for xvcg\n"
  162. " policy - Show policy settings\n"
  163. "\n"
  164. "Options:\n"
  165. " -h This help text.\n"
  166. " -p=? The package cache.\n"
  167. " -s=? The source cache.\n"
  168. " -q Disable progress indicator.\n"
  169. " -i Show only important deps for the unmet command.\n"
  170. " -c=? Read this configuration file\n"
  171. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  172. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  173. msgstr ""
  174. "Bruk: apt-cache [valg] kommando\n"
  175. " apt-cache [valg] add fil1 [fil2 ...]\n"
  176. " apt-cache [valg] showpkg pakke1 [pakke2 ...]\n"
  177. " apt-cache [valg] showsrc pakke1 [pakke2 ...]\n"
  178. "\n"
  179. "apt-cache er et lavnivå-verktøy, som brukes til å håndtere APT sine binære\n"
  180. "lagerfiler, og spørre dem om informasjon.\n"
  181. "\n"
  182. "Kommandoer:\n"
  183. " add - Legg en fil til kildelageret\n"
  184. " gencaches - Bygg lagrene for både pakke og kildekode\n"
  185. " showpkg - Vis overordnet informasjon om en enkelt pakke\n"
  186. " showsrc - Vis data om kildekoden\n"
  187. " stats - Vis en enkel statistikk\n"
  188. " dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n"
  189. " dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n"
  190. " unmet - Vis uinnfridde avhengighetsforhold\n"
  191. " search - Søk i pakkelista etter et regulært uttrykkr\n"
  192. " show - Vis et lesbart oppslag for pakken\n"
  193. " showauto - Vis en liste med automatisk installerte pakker\n"
  194. " depends - Vis rå informasjon om avhengighetsforholdene for pakken\n"
  195. " rdepends - Vis informasjon om de reverserte avhengighetsforholdene for "
  196. "pakken\n"
  197. " pkgnames - List alle pakkenavn på systemet\n"
  198. " dotty - Lag pakke-grafer for GraphViz\n"
  199. " xvcg - Lag pakke-grafer for xvcg\n"
  200. " policy - Vis regelinnstillingerr\n"
  201. "\n"
  202. "Valg:\n"
  203. " -h Denne hjelpeteksten\n"
  204. " -p=? Pakkelageret.\n"
  205. " -s=? Kildekodelageret.\n"
  206. " -q Ikke vis framdrift.\n"
  207. " -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n"
  208. " -c=? Les denne innstillingsfila.\n"
  209. " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
  210. "Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n"
  211. #. }}}
  212. #: cmdline/apt-cdrom.cc:45
  213. msgid ""
  214. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  215. "You may try the --cdrom option to set the CD-ROM mount point. See 'man apt-"
  216. "cdrom' for more information about the CD-ROM auto-detection and mount point."
  217. msgstr ""
  218. #: cmdline/apt-cdrom.cc:89
  219. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  220. msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»"
  221. #: cmdline/apt-cdrom.cc:104
  222. msgid "Please insert a Disc in the drive and press enter"
  223. msgstr "Sett inn en disk i lagringsenheten og trykk Enter"
  224. #: cmdline/apt-cdrom.cc:139
  225. #, c-format
  226. msgid "Failed to mount '%s' to '%s'"
  227. msgstr "Klarte ikke montere «%s» på «%s»"
  228. #: cmdline/apt-cdrom.cc:174
  229. msgid "Repeat this process for the rest of the CDs in your set."
  230. msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett."
  231. #: cmdline/apt-config.cc:48
  232. msgid "Arguments not in pairs"
  233. msgstr "Ikke parvise argumenter"
  234. #: cmdline/apt-config.cc:89
  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. "Bruk: apt-config [innstillinger] kommando\n"
  250. "\n"
  251. "apt-config er et enkelt verktøy til å lese APTs innstillingsfil\n"
  252. "\n"
  253. "Kommandoer:\n"
  254. " shell - Skallmodus\n"
  255. " dump - Vis innstillingene\n"
  256. "\n"
  257. "Innstillinger:\n"
  258. " -h Denne hjelpeteksten\n"
  259. " -c=? Les denne innstillingsfila.\n"
  260. " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
  261. #: cmdline/apt-get.cc:244
  262. #, fuzzy, c-format
  263. msgid "Can not find a package for architecture '%s'"
  264. msgstr "Klarte ikke finne noen pakken med regex «%s»"
  265. #: cmdline/apt-get.cc:326
  266. #, fuzzy, c-format
  267. msgid "Can not find a package '%s' with version '%s'"
  268. msgstr "Klarte ikke finne noen pakken med regex «%s»"
  269. #: cmdline/apt-get.cc:329
  270. #, fuzzy, c-format
  271. msgid "Can not find a package '%s' with release '%s'"
  272. msgstr "Klarte ikke finne noen pakken med regex «%s»"
  273. #: cmdline/apt-get.cc:366
  274. #, c-format
  275. msgid "Picking '%s' as source package instead of '%s'\n"
  276. msgstr "Velger «%s» som kildepakke istedenfor «%s»\n"
  277. #: cmdline/apt-get.cc:422
  278. #, fuzzy, c-format
  279. msgid "Can not find version '%s' of package '%s'"
  280. msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»"
  281. #: cmdline/apt-get.cc:453
  282. #, c-format
  283. msgid "Couldn't find package %s"
  284. msgstr "Klarte ikke å finne pakken %s"
  285. #: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70
  286. #, c-format
  287. msgid "%s set to manually installed.\n"
  288. msgstr "%s satt til manuell installasjon.\n"
  289. #: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72
  290. #, c-format
  291. msgid "%s set to automatically installed.\n"
  292. msgstr "%s satt til automatisk installasjon.\n"
  293. #: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116
  294. msgid ""
  295. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  296. "instead."
  297. msgstr ""
  298. #: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545
  299. msgid "Internal error, problem resolver broke stuff"
  300. msgstr "Intern feil, problemløser ødela noe"
  301. #: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610
  302. msgid "Unable to lock the download directory"
  303. msgstr "Klarer ikke å låse nedlastingsmappa"
  304. #: cmdline/apt-get.cc:722
  305. msgid "Must specify at least one package to fetch source for"
  306. msgstr "Du må angi minst en pakke du vil ha kildekoden til"
  307. #: cmdline/apt-get.cc:762 cmdline/apt-get.cc:1057
  308. #, c-format
  309. msgid "Unable to find a source package for %s"
  310. msgstr "Klarer ikke å finne en kildekodepakke for %s"
  311. #: cmdline/apt-get.cc:779
  312. #, c-format
  313. msgid ""
  314. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  315. "%s\n"
  316. msgstr ""
  317. "MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» på:\n"
  318. "%s\n"
  319. #: cmdline/apt-get.cc:784
  320. #, fuzzy, c-format
  321. msgid ""
  322. "Please use:\n"
  323. "bzr branch %s\n"
  324. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  325. msgstr ""
  326. "Bruk:\n"
  327. "bzr get %s\n"
  328. "for å hente siste (muligens ikke utgitte) oppdateringer for pakken.\n"
  329. #: cmdline/apt-get.cc:837
  330. #, c-format
  331. msgid "Skipping already downloaded file '%s'\n"
  332. msgstr "Hopper over allerede nedlastet fil «%s»\n"
  333. #: cmdline/apt-get.cc:860 cmdline/apt-get.cc:863
  334. #: apt-private/private-install.cc:198 apt-private/private-install.cc:201
  335. #, c-format
  336. msgid "Couldn't determine free space in %s"
  337. msgstr "Klarte ikke bestemme ledig plass i %s"
  338. #: cmdline/apt-get.cc:874
  339. #, c-format
  340. msgid "You don't have enough free space in %s"
  341. msgstr "Du har ikke nok ledig plass i %s"
  342. #. TRANSLATOR: The required space between number and unit is already included
  343. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  344. #: cmdline/apt-get.cc:883
  345. #, c-format
  346. msgid "Need to get %sB/%sB of source archives.\n"
  347. msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n"
  348. #. TRANSLATOR: The required space between number and unit is already included
  349. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  350. #: cmdline/apt-get.cc:888
  351. #, c-format
  352. msgid "Need to get %sB of source archives.\n"
  353. msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n"
  354. #: cmdline/apt-get.cc:894
  355. #, c-format
  356. msgid "Fetch source %s\n"
  357. msgstr "Skaffer kildekode %s\n"
  358. #: cmdline/apt-get.cc:915
  359. msgid "Failed to fetch some archives."
  360. msgstr "Klarte ikke å skaffe alle arkivene."
  361. #: cmdline/apt-get.cc:920 apt-private/private-install.cc:325
  362. msgid "Download complete and in download only mode"
  363. msgstr "Nedlasting fullført med innstillinga «bare nedlasting»"
  364. #: cmdline/apt-get.cc:946
  365. #, c-format
  366. msgid "Skipping unpack of already unpacked source in %s\n"
  367. msgstr "Omgår utpakking av allerede utpakket kilde i %s\n"
  368. #: cmdline/apt-get.cc:958
  369. #, c-format
  370. msgid "Unpack command '%s' failed.\n"
  371. msgstr "Utpakkingskommandoen «%s» mislyktes.\n"
  372. #: cmdline/apt-get.cc:959
  373. #, c-format
  374. msgid "Check if the 'dpkg-dev' package is installed.\n"
  375. msgstr "Sjekk om pakken «dpkg-dev» er installert.\n"
  376. #: cmdline/apt-get.cc:981
  377. #, c-format
  378. msgid "Build command '%s' failed.\n"
  379. msgstr "Byggekommandoen «%s» mislyktes.\n"
  380. #: cmdline/apt-get.cc:1001
  381. msgid "Child process failed"
  382. msgstr "Barneprosessen mislyktes"
  383. #: cmdline/apt-get.cc:1020
  384. msgid "Must specify at least one package to check builddeps for"
  385. msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for"
  386. #: cmdline/apt-get.cc:1045
  387. #, c-format
  388. msgid ""
  389. "No architecture information available for %s. See apt.conf(5) APT::"
  390. "Architectures for setup"
  391. msgstr ""
  392. #: cmdline/apt-get.cc:1069 cmdline/apt-get.cc:1072
  393. #, c-format
  394. msgid "Unable to get build-dependency information for %s"
  395. msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s"
  396. #: cmdline/apt-get.cc:1092
  397. #, c-format
  398. msgid "%s has no build depends.\n"
  399. msgstr "%s har ingen avhengigheter.\n"
  400. #: cmdline/apt-get.cc:1262
  401. #, fuzzy, c-format
  402. msgid ""
  403. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  404. "packages"
  405. msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes"
  406. #: cmdline/apt-get.cc:1280
  407. #, c-format
  408. msgid ""
  409. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  410. "found"
  411. msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes"
  412. #: cmdline/apt-get.cc:1303
  413. #, c-format
  414. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  415. msgstr ""
  416. "Klarte ikke å tilfredsstille %s avhengighet for %s: den installerte pakken "
  417. "%s er for ny"
  418. #: cmdline/apt-get.cc:1342
  419. #, fuzzy, c-format
  420. msgid ""
  421. "%s dependency for %s cannot be satisfied because candidate version of "
  422. "package %s can't satisfy version requirements"
  423. msgstr ""
  424. "Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige "
  425. "versjoner av pakken %s som oppfyller versjonskravene"
  426. #: cmdline/apt-get.cc:1348
  427. #, fuzzy, c-format
  428. msgid ""
  429. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  430. "version"
  431. msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes"
  432. #: cmdline/apt-get.cc:1371
  433. #, c-format
  434. msgid "Failed to satisfy %s dependency for %s: %s"
  435. msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s"
  436. #: cmdline/apt-get.cc:1386
  437. #, c-format
  438. msgid "Build-dependencies for %s could not be satisfied."
  439. msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s."
  440. #: cmdline/apt-get.cc:1391
  441. msgid "Failed to process build dependencies"
  442. msgstr "Klarte ikke å behandle forutsetningene for bygging"
  443. #: cmdline/apt-get.cc:1484 cmdline/apt-get.cc:1496
  444. #, fuzzy, c-format
  445. msgid "Changelog for %s (%s)"
  446. msgstr "Kobler til %s (%s)"
  447. #: cmdline/apt-get.cc:1582
  448. msgid "Supported modules:"
  449. msgstr "Støttede moduler:"
  450. #: cmdline/apt-get.cc:1623
  451. #, fuzzy
  452. msgid ""
  453. "Usage: apt-get [options] command\n"
  454. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  455. " apt-get [options] source pkg1 [pkg2 ...]\n"
  456. "\n"
  457. "apt-get is a simple command line interface for downloading and\n"
  458. "installing packages. The most frequently used commands are update\n"
  459. "and install.\n"
  460. "\n"
  461. "Commands:\n"
  462. " update - Retrieve new lists of packages\n"
  463. " upgrade - Perform an upgrade\n"
  464. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  465. " remove - Remove packages\n"
  466. " autoremove - Remove automatically all unused packages\n"
  467. " purge - Remove packages and config files\n"
  468. " source - Download source archives\n"
  469. " build-dep - Configure build-dependencies for source packages\n"
  470. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  471. " dselect-upgrade - Follow dselect selections\n"
  472. " clean - Erase downloaded archive files\n"
  473. " autoclean - Erase old downloaded archive files\n"
  474. " check - Verify that there are no broken dependencies\n"
  475. " changelog - Download and display the changelog for the given package\n"
  476. " download - Download the binary package into the current directory\n"
  477. "\n"
  478. "Options:\n"
  479. " -h This help text.\n"
  480. " -q Loggable output - no progress indicator\n"
  481. " -qq No output except for errors\n"
  482. " -d Download only - do NOT install or unpack archives\n"
  483. " -s No-act. Perform ordering simulation\n"
  484. " -y Assume Yes to all queries and do not prompt\n"
  485. " -f Attempt to correct a system with broken dependencies in place\n"
  486. " -m Attempt to continue if archives are unlocatable\n"
  487. " -u Show a list of upgraded packages as well\n"
  488. " -b Build the source package after fetching it\n"
  489. " -V Show verbose version numbers\n"
  490. " -c=? Read this configuration file\n"
  491. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  492. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  493. "pages for more information and options.\n"
  494. " This APT has Super Cow Powers.\n"
  495. msgstr ""
  496. "Bruk: apt-get [valg] kommando\n"
  497. " apt-get [valg] install|remove pakke1 [pakke2 ...]\n"
  498. " apt-get [valg] source pakke1 [pakke2 ...]\n"
  499. "\n"
  500. "apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja\n"
  501. "for å laste ned og installere pakker. De mest brukte kommandoene \n"
  502. "er «update» og «install».\n"
  503. "\n"
  504. "Kommandoer:\n"
  505. " update - Hent nye pakkelister\n"
  506. " upgrade - Utfør en oppgradering\n"
  507. " install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n"
  508. " remove - Fjern pakker\n"
  509. " autoremove - Fjern alle automatisk ubrukte pakker\n"
  510. " purge - Fjern og rydd opp etter pakker\n"
  511. " source - Last ned kildekode fra arkivene\n"
  512. " build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n"
  513. " dist-upgrade - Oppgradér utgave, les apt-get(8)\n"
  514. " dselect-upgrade - Følg «dselect» sine anbefalinger\n"
  515. " clean - Slett nedlastede arkivfiler\n"
  516. " autoclean - Slett gamle nedlastede arkivfiler\n"
  517. " check - Se etter om det finnes brutte avhengigheter\n"
  518. " markauto - Merk de oppgitte pakkene som automatisk installert\n"
  519. " unmarkauto - Merk de oppgitte pakkene som manuelt installert\n"
  520. "\n"
  521. "Valg:\n"
  522. " -h Denne hjelpteksten.\n"
  523. " -q Loggbar tilbakemelding - ikke vis framdrift\n"
  524. " -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n"
  525. " -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n"
  526. " -s Simulering - bare simuler kommandoen\n"
  527. " -y Anta Ja til alle forespørsler uten å spørre\n"
  528. " -f Prøv å fortsette hvis integritetstesten mislykkes\n"
  529. " -m Prøv å fortsette når pakker mangler\n"
  530. " -u Vis liste med oppgraderte pakker\n"
  531. " -b Bygg pakken etter at kildekoden er lastet ned\n"
  532. " -V Vis fullstendige versjonsnummere\n"
  533. " -c=? Les denne innstillingsfila\n"
  534. " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
  535. "Les manualsiden apt-get(8), sources.list(5) og apt.conf(5)\n"
  536. "for mer informasjon og flere valg.\n"
  537. " Denne APT har kraften til en Superku.\n"
  538. #: cmdline/apt-mark.cc:57
  539. #, fuzzy, c-format
  540. msgid "%s can not be marked as it is not installed.\n"
  541. msgstr "men er ikke installert"
  542. #: cmdline/apt-mark.cc:63
  543. #, fuzzy, c-format
  544. msgid "%s was already set to manually installed.\n"
  545. msgstr "%s satt til manuell installasjon.\n"
  546. #: cmdline/apt-mark.cc:65
  547. #, fuzzy, c-format
  548. msgid "%s was already set to automatically installed.\n"
  549. msgstr "%s satt til automatisk installasjon.\n"
  550. #: cmdline/apt-mark.cc:230
  551. #, fuzzy, c-format
  552. msgid "%s was already set on hold.\n"
  553. msgstr "%s er allerede nyeste versjon.\n"
  554. #: cmdline/apt-mark.cc:232
  555. #, fuzzy, c-format
  556. msgid "%s was already not hold.\n"
  557. msgstr "%s er allerede nyeste versjon.\n"
  558. #: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328
  559. #: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217
  560. #: apt-pkg/deb/dpkgpm.cc:1183
  561. #, c-format
  562. msgid "Waited for %s but it wasn't there"
  563. msgstr "Ventet på %s, men den ble ikke funnet"
  564. #: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311
  565. #, fuzzy, c-format
  566. msgid "%s set on hold.\n"
  567. msgstr "%s satt til manuell installasjon.\n"
  568. #: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316
  569. #, fuzzy, c-format
  570. msgid "Canceled hold on %s.\n"
  571. msgstr "Klarte ikke å åpne %s"
  572. #: cmdline/apt-mark.cc:334
  573. msgid "Executing dpkg failed. Are you root?"
  574. msgstr ""
  575. #: cmdline/apt-mark.cc:381
  576. msgid ""
  577. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  578. "\n"
  579. "apt-mark is a simple command line interface for marking packages\n"
  580. "as manually or automatically installed. It can also list marks.\n"
  581. "\n"
  582. "Commands:\n"
  583. " auto - Mark the given packages as automatically installed\n"
  584. " manual - Mark the given packages as manually installed\n"
  585. "\n"
  586. "Options:\n"
  587. " -h This help text.\n"
  588. " -q Loggable output - no progress indicator\n"
  589. " -qq No output except for errors\n"
  590. " -s No-act. Just prints what would be done.\n"
  591. " -f read/write auto/manual marking in the given file\n"
  592. " -c=? Read this configuration file\n"
  593. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  594. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  595. msgstr ""
  596. #: cmdline/apt.cc:71
  597. msgid ""
  598. "Usage: apt [options] command\n"
  599. "\n"
  600. "CLI for apt.\n"
  601. "Basic commands: \n"
  602. " list - list packages based on package names\n"
  603. " search - search in package descriptions\n"
  604. " show - show package details\n"
  605. "\n"
  606. " update - update list of available packages\n"
  607. "\n"
  608. " install - install packages\n"
  609. " remove - remove packages\n"
  610. "\n"
  611. " upgrade - upgrade the systems packages\n"
  612. "\n"
  613. " edit-sources - edit the source information file\n"
  614. msgstr ""
  615. #: methods/cdrom.cc:203
  616. #, c-format
  617. msgid "Unable to read the cdrom database %s"
  618. msgstr "Klarer ikke å lese CD-databasen %s"
  619. #: methods/cdrom.cc:212
  620. msgid ""
  621. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  622. "cannot be used to add new CD-ROMs"
  623. msgstr ""
  624. "Bruk «apt-cdrom» for å gjøre denne CD-plata tilgjengelig for APT. Du kan "
  625. "ikke bruke «apt-get update» til å legge til nye CD-plater."
  626. #: methods/cdrom.cc:222
  627. msgid "Wrong CD-ROM"
  628. msgstr "Feil CD-plate"
  629. #: methods/cdrom.cc:249
  630. #, c-format
  631. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  632. msgstr ""
  633. "Klarer ikke å avmontere CD-plata i %s. Det kan hende plata fremdeles er i "
  634. "bruk."
  635. #: methods/cdrom.cc:254
  636. msgid "Disk not found."
  637. msgstr "Disk ikke funnet."
  638. #: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:275
  639. msgid "File not found"
  640. msgstr "Fant ikke fila"
  641. #: methods/copy.cc:46 methods/gzip.cc:105 methods/gzip.cc:114
  642. #: methods/rred.cc:617 methods/rred.cc:626
  643. msgid "Failed to stat"
  644. msgstr "Klarte ikke å få status"
  645. #: methods/copy.cc:83 methods/gzip.cc:111 methods/rred.cc:623
  646. msgid "Failed to set modification time"
  647. msgstr "Klarte ikke å sette endringstidspunkt"
  648. #: methods/file.cc:47
  649. msgid "Invalid URI, local URIS must not start with //"
  650. msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //"
  651. #. Login must be before getpeername otherwise dante won't work.
  652. #: methods/ftp.cc:173
  653. msgid "Logging in"
  654. msgstr "Logger inn"
  655. #: methods/ftp.cc:179
  656. msgid "Unable to determine the peer name"
  657. msgstr "Klarte ikke å fastslå navnet på motparten"
  658. #: methods/ftp.cc:184
  659. msgid "Unable to determine the local name"
  660. msgstr "Klarte ikke å fastslå det lokale navnet"
  661. #: methods/ftp.cc:215 methods/ftp.cc:243
  662. #, c-format
  663. msgid "The server refused the connection and said: %s"
  664. msgstr "Tjeneren nektet oss å kople til og sa: %s"
  665. #: methods/ftp.cc:221
  666. #, c-format
  667. msgid "USER failed, server said: %s"
  668. msgstr "USER mislykkes, tjeneren sa: %s"
  669. #: methods/ftp.cc:228
  670. #, c-format
  671. msgid "PASS failed, server said: %s"
  672. msgstr "PASS mislykkes, tjeneren sa: %s"
  673. #: methods/ftp.cc:248
  674. msgid ""
  675. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  676. "is empty."
  677. msgstr ""
  678. "En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::"
  679. "ftp::ProxyLogin» er tomt."
  680. #: methods/ftp.cc:276
  681. #, c-format
  682. msgid "Login script command '%s' failed, server said: %s"
  683. msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s"
  684. #: methods/ftp.cc:302
  685. #, c-format
  686. msgid "TYPE failed, server said: %s"
  687. msgstr "TYPE mislykkes, tjeneren sa: %s"
  688. #: methods/ftp.cc:340 methods/ftp.cc:452 methods/rsh.cc:192 methods/rsh.cc:237
  689. msgid "Connection timeout"
  690. msgstr "Tidsavbrudd på forbindelsen"
  691. #: methods/ftp.cc:346
  692. msgid "Server closed the connection"
  693. msgstr "Tjeneren lukket forbindelsen"
  694. #: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1292
  695. #: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304
  696. msgid "Read error"
  697. msgstr "Lesefeil"
  698. #: methods/ftp.cc:356 methods/rsh.cc:206
  699. msgid "A response overflowed the buffer."
  700. msgstr "Et svar oversvømte bufferen."
  701. #: methods/ftp.cc:373 methods/ftp.cc:385
  702. msgid "Protocol corruption"
  703. msgstr "Protokollødeleggelse"
  704. #: methods/ftp.cc:458 methods/rsh.cc:243 apt-pkg/contrib/fileutl.cc:1388
  705. #: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400
  706. #: apt-pkg/contrib/fileutl.cc:1425
  707. msgid "Write error"
  708. msgstr "Skrivefeil"
  709. #: methods/ftp.cc:697 methods/ftp.cc:703 methods/ftp.cc:738
  710. msgid "Could not create a socket"
  711. msgstr "Klarte ikke å opprette en sokkel"
  712. #: methods/ftp.cc:708
  713. msgid "Could not connect data socket, connection timed out"
  714. msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen"
  715. #: methods/ftp.cc:712 methods/connect.cc:116 apt-private/private-upgrade.cc:21
  716. msgid "Failed"
  717. msgstr "Mislyktes"
  718. #: methods/ftp.cc:714
  719. msgid "Could not connect passive socket."
  720. msgstr "Klarte ikke å koble til en passiv sokkel."
  721. #: methods/ftp.cc:731
  722. msgid "getaddrinfo was unable to get a listening socket"
  723. msgstr "getaddrinfo klarte ikke å opprette en lyttesokkel"
  724. #: methods/ftp.cc:745
  725. msgid "Could not bind a socket"
  726. msgstr "Klarte ikke å binde til sokkel"
  727. #: methods/ftp.cc:749
  728. msgid "Could not listen on the socket"
  729. msgstr "Klarte ikke å lytte til sokkel"
  730. #: methods/ftp.cc:756
  731. msgid "Could not determine the socket's name"
  732. msgstr "Klarte ikke å avgjøre sokkelnavnet"
  733. #: methods/ftp.cc:788
  734. msgid "Unable to send PORT command"
  735. msgstr "Klarte ikke å sende PORT-kommandoen"
  736. #: methods/ftp.cc:798
  737. #, c-format
  738. msgid "Unknown address family %u (AF_*)"
  739. msgstr "Ukjent adressefamilie %u (AF_*)"
  740. #: methods/ftp.cc:807
  741. #, c-format
  742. msgid "EPRT failed, server said: %s"
  743. msgstr "EPRT mislykkes, tjeneren sa: %s"
  744. #: methods/ftp.cc:827
  745. msgid "Data socket connect timed out"
  746. msgstr "Tidsavbrudd på tilkoblingen til datasokkelen"
  747. #: methods/ftp.cc:834
  748. msgid "Unable to accept connection"
  749. msgstr "Klarte ikke å godta tilkoblingen"
  750. #: methods/ftp.cc:873 methods/server.cc:353 methods/rsh.cc:313
  751. msgid "Problem hashing file"
  752. msgstr "Problem ved oppretting av nøkkel for fil"
  753. #: methods/ftp.cc:886
  754. #, c-format
  755. msgid "Unable to fetch file, server said '%s'"
  756. msgstr "Klarte ikke å hente fila, tjeneren sa «%s»"
  757. #: methods/ftp.cc:901 methods/rsh.cc:332
  758. msgid "Data socket timed out"
  759. msgstr "Tidsavbrudd på datasokkelen"
  760. #: methods/ftp.cc:931
  761. #, c-format
  762. msgid "Data transfer failed, server said '%s'"
  763. msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»"
  764. #. Get the files information
  765. #: methods/ftp.cc:1008
  766. msgid "Query"
  767. msgstr "Spørring"
  768. #: methods/ftp.cc:1120
  769. msgid "Unable to invoke "
  770. msgstr "Klarte ikke å starte"
  771. #: methods/connect.cc:76
  772. #, c-format
  773. msgid "Connecting to %s (%s)"
  774. msgstr "Kobler til %s (%s)"
  775. #: methods/connect.cc:87
  776. #, c-format
  777. msgid "[IP: %s %s]"
  778. msgstr "[IP: %s %s]"
  779. #: methods/connect.cc:94
  780. #, c-format
  781. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  782. msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)"
  783. #: methods/connect.cc:100
  784. #, c-format
  785. msgid "Cannot initiate the connection to %s:%s (%s)."
  786. msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)."
  787. #: methods/connect.cc:108
  788. #, c-format
  789. msgid "Could not connect to %s:%s (%s), connection timed out"
  790. msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen"
  791. #: methods/connect.cc:126
  792. #, c-format
  793. msgid "Could not connect to %s:%s (%s)."
  794. msgstr "Klarte ikke å koble til %s:%s (%s)."
  795. #. We say this mainly because the pause here is for the
  796. #. ssh connection that is still going
  797. #: methods/connect.cc:154 methods/rsh.cc:435
  798. #, c-format
  799. msgid "Connecting to %s"
  800. msgstr "Kobler til %s"
  801. #: methods/connect.cc:180 methods/connect.cc:199
  802. #, c-format
  803. msgid "Could not resolve '%s'"
  804. msgstr "Klarte ikke å slå opp «%s»"
  805. #: methods/connect.cc:205
  806. #, c-format
  807. msgid "Temporary failure resolving '%s'"
  808. msgstr "Midlertidig feil ved oppslag av «%s»"
  809. #: methods/connect.cc:209
  810. #, fuzzy, c-format
  811. msgid "System error resolving '%s:%s'"
  812. msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)"
  813. #: methods/connect.cc:211
  814. #, c-format
  815. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  816. msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)"
  817. #: methods/connect.cc:258
  818. #, c-format
  819. msgid "Unable to connect to %s:%s:"
  820. msgstr "Klarte ikke koble til %s:%s:"
  821. #: methods/gpgv.cc:167
  822. msgid ""
  823. "Internal error: Good signature, but could not determine key fingerprint?!"
  824. msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!"
  825. #: methods/gpgv.cc:171
  826. msgid "At least one invalid signature was encountered."
  827. msgstr "Minst en ugyldig signatur ble funnet."
  828. #: methods/gpgv.cc:173
  829. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  830. msgstr ""
  831. "Klarte ikke kjøre «gpgv» for å verifisere signaturen (er gpgv installert?)"
  832. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  833. #: methods/gpgv.cc:179
  834. #, c-format
  835. msgid ""
  836. "Clearsigned file isn't valid, got '%s' (does the network require "
  837. "authentication?)"
  838. msgstr ""
  839. #: methods/gpgv.cc:183
  840. msgid "Unknown error executing gpgv"
  841. msgstr "Ukjent feil ved kjøring av gpgv"
  842. #: methods/gpgv.cc:216 methods/gpgv.cc:223
  843. msgid "The following signatures were invalid:\n"
  844. msgstr "De følgende signaturene var ugyldige:\n"
  845. #: methods/gpgv.cc:230
  846. msgid ""
  847. "The following signatures couldn't be verified because the public key is not "
  848. "available:\n"
  849. msgstr ""
  850. "De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen "
  851. "ikke er tilgjengelig:\n"
  852. #: methods/gzip.cc:65
  853. msgid "Empty files can't be valid archives"
  854. msgstr ""
  855. #: methods/http.cc:519
  856. msgid "Error writing to the file"
  857. msgstr "Feil ved skriving til fila"
  858. #: methods/http.cc:533
  859. msgid "Error reading from server. Remote end closed connection"
  860. msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
  861. #: methods/http.cc:535
  862. msgid "Error reading from server"
  863. msgstr "Feil ved lesing fra tjeneren"
  864. #: methods/http.cc:571
  865. msgid "Error writing to file"
  866. msgstr "Feil ved skriving til fil"
  867. #: methods/http.cc:631
  868. msgid "Select failed"
  869. msgstr "Utvalget mislykkes"
  870. #: methods/http.cc:636
  871. msgid "Connection timed out"
  872. msgstr "Tidsavbrudd på forbindelsen"
  873. #: methods/http.cc:659
  874. msgid "Error writing to output file"
  875. msgstr "Feil ved skriving til utfil"
  876. #: methods/server.cc:56
  877. msgid "Waiting for headers"
  878. msgstr "Venter på hoder"
  879. #: methods/server.cc:114
  880. msgid "Bad header line"
  881. msgstr "Ødelagt hodelinje"
  882. #: methods/server.cc:139 methods/server.cc:146
  883. msgid "The HTTP server sent an invalid reply header"
  884. msgstr "HTTP-tjeneren sendte et ugyldig svarhode"
  885. #: methods/server.cc:176
  886. msgid "The HTTP server sent an invalid Content-Length header"
  887. msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode"
  888. #: methods/server.cc:199
  889. msgid "The HTTP server sent an invalid Content-Range header"
  890. msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode"
  891. #: methods/server.cc:201
  892. msgid "This HTTP server has broken range support"
  893. msgstr "Denne HTTP-tjeneren har ødelagt støtte for område"
  894. #: methods/server.cc:225
  895. msgid "Unknown date format"
  896. msgstr "Ukjent datoformat"
  897. #: methods/server.cc:490
  898. msgid "Bad header data"
  899. msgstr "Ødelagte hodedata"
  900. #: methods/server.cc:507 methods/server.cc:564
  901. msgid "Connection failed"
  902. msgstr "Forbindelsen mislykkes"
  903. #: methods/server.cc:656
  904. msgid "Internal error"
  905. msgstr "Intern feil"
  906. #: apt-private/private-list.cc:147
  907. msgid "Listing"
  908. msgstr ""
  909. #: apt-private/private-install.cc:93
  910. msgid "Internal error, InstallPackages was called with broken packages!"
  911. msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!"
  912. #: apt-private/private-install.cc:102
  913. msgid "Packages need to be removed but remove is disabled."
  914. msgstr "Pakker trenges å fjernes, men funksjonen er slått av."
  915. #: apt-private/private-install.cc:121
  916. msgid "Internal error, Ordering didn't finish"
  917. msgstr "Intern feil, sortering fullførte ikke"
  918. #: apt-private/private-install.cc:159
  919. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  920. msgstr ""
  921. "Så rart ... Størrelsene stemmer ikke overens, send en e-post til "
  922. "apt@packages.debian.org"
  923. #. TRANSLATOR: The required space between number and unit is already included
  924. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  925. #: apt-private/private-install.cc:166
  926. #, c-format
  927. msgid "Need to get %sB/%sB of archives.\n"
  928. msgstr "Må hente %sB/%sB med arkiver.\n"
  929. #. TRANSLATOR: The required space between number and unit is already included
  930. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  931. #: apt-private/private-install.cc:171
  932. #, c-format
  933. msgid "Need to get %sB of archives.\n"
  934. msgstr "Må hente %sB med arkiver.\n"
  935. #. TRANSLATOR: The required space between number and unit is already included
  936. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  937. #: apt-private/private-install.cc:178
  938. #, c-format
  939. msgid "After this operation, %sB of additional disk space will be used.\n"
  940. msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n"
  941. #. TRANSLATOR: The required space between number and unit is already included
  942. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  943. #: apt-private/private-install.cc:183
  944. #, c-format
  945. msgid "After this operation, %sB disk space will be freed.\n"
  946. msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n"
  947. #: apt-private/private-install.cc:211
  948. #, c-format
  949. msgid "You don't have enough free space in %s."
  950. msgstr "Dessverre, ikke nok ledig plass i %s"
  951. #: apt-private/private-install.cc:221 apt-private/private-download.cc:55
  952. msgid "There are problems and -y was used without --force-yes"
  953. msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»"
  954. #: apt-private/private-install.cc:227 apt-private/private-install.cc:249
  955. msgid "Trivial Only specified but this is not a trivial operation."
  956. msgstr ""
  957. "«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring."
  958. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  959. #. careful with hard to type or special characters (like non-breaking spaces)
  960. #: apt-private/private-install.cc:231
  961. msgid "Yes, do as I say!"
  962. msgstr "Ja, gjør som jeg sier!"
  963. #: apt-private/private-install.cc:233
  964. #, c-format
  965. msgid ""
  966. "You are about to do something potentially harmful.\n"
  967. "To continue type in the phrase '%s'\n"
  968. " ?] "
  969. msgstr ""
  970. "Du er iferd med å utføre en mulig skadelig handling.\n"
  971. "For å fortsette skriv inn teksten «%s»\n"
  972. " ?] "
  973. #: apt-private/private-install.cc:239 apt-private/private-install.cc:257
  974. msgid "Abort."
  975. msgstr "Avbryter."
  976. #: apt-private/private-install.cc:254
  977. msgid "Do you want to continue?"
  978. msgstr "Vil du fortsette?"
  979. #: apt-private/private-install.cc:324
  980. msgid "Some files failed to download"
  981. msgstr "Klarte ikke laste ned alle filene"
  982. #: apt-private/private-install.cc:331
  983. msgid ""
  984. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  985. "missing?"
  986. msgstr ""
  987. "Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller "
  988. "«--fix-missing»."
  989. #: apt-private/private-install.cc:335
  990. msgid "--fix-missing and media swapping is not currently supported"
  991. msgstr "«--fix-missing» og bytte av media støttes nå ikke"
  992. #: apt-private/private-install.cc:340
  993. msgid "Unable to correct missing packages."
  994. msgstr "Klarer ikke å rette på manglende pakker."
  995. #: apt-private/private-install.cc:341
  996. msgid "Aborting install."
  997. msgstr "Avbryter installasjonen."
  998. #: apt-private/private-install.cc:377
  999. msgid ""
  1000. "The following package disappeared from your system as\n"
  1001. "all files have been overwritten by other packages:"
  1002. msgid_plural ""
  1003. "The following packages disappeared from your system as\n"
  1004. "all files have been overwritten by other packages:"
  1005. msgstr[0] ""
  1006. "Den følgende pakken forsvant fra systemet ditt siden\n"
  1007. "alle filene er overskrevet av andre pakker:"
  1008. msgstr[1] ""
  1009. "De følgende pakkene forsvant fra systemet ditt siden\n"
  1010. "alle filene er overskrevet av andre pakker:"
  1011. #: apt-private/private-install.cc:381
  1012. msgid "Note: This is done automatically and on purpose by dpkg."
  1013. msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg."
  1014. #: apt-private/private-install.cc:402
  1015. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1016. msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)"
  1017. #: apt-private/private-install.cc:510
  1018. msgid ""
  1019. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1020. "shouldn't happen. Please file a bug report against apt."
  1021. msgstr ""
  1022. "Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n"
  1023. "virkelig ikke skje. Send inn en feilmelding til apt-utviklerne."
  1024. #.
  1025. #. if (Packages == 1)
  1026. #. {
  1027. #. c1out << std::endl;
  1028. #. c1out <<
  1029. #. _("Since you only requested a single operation it is extremely likely that\n"
  1030. #. "the package is simply not installable and a bug report against\n"
  1031. #. "that package should be filed.") << std::endl;
  1032. #. }
  1033. #.
  1034. #: apt-private/private-install.cc:513 apt-private/private-install.cc:654
  1035. msgid "The following information may help to resolve the situation:"
  1036. msgstr "Følgende informasjon kan være til hjelp med å løse problemet:"
  1037. #: apt-private/private-install.cc:517
  1038. msgid "Internal Error, AutoRemover broke stuff"
  1039. msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe"
  1040. #: apt-private/private-install.cc:524
  1041. msgid ""
  1042. "The following package was automatically installed and is no longer required:"
  1043. msgid_plural ""
  1044. "The following packages were automatically installed and are no longer "
  1045. "required:"
  1046. msgstr[0] ""
  1047. "Følgende pakke ble automatisk installert og er ikke lenger påkrevet:"
  1048. msgstr[1] ""
  1049. "Følgende pakker ble automatisk installert og er ikke lenger påkrevet:"
  1050. #: apt-private/private-install.cc:528
  1051. #, c-format
  1052. msgid "%lu package was automatically installed and is no longer required.\n"
  1053. msgid_plural ""
  1054. "%lu packages were automatically installed and are no longer required.\n"
  1055. msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n"
  1056. msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n"
  1057. #: apt-private/private-install.cc:530
  1058. #, fuzzy
  1059. msgid "Use 'apt-get autoremove' to remove it."
  1060. msgid_plural "Use 'apt-get autoremove' to remove them."
  1061. msgstr[0] "Bruk «apt-get autoremove» for å fjerne dem."
  1062. msgstr[1] "Bruk «apt-get autoremove» for å fjerne dem."
  1063. #: apt-private/private-install.cc:624
  1064. msgid "You might want to run 'apt-get -f install' to correct these:"
  1065. msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:"
  1066. #: apt-private/private-install.cc:626
  1067. msgid ""
  1068. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1069. "solution)."
  1070. msgstr ""
  1071. "Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller "
  1072. "angi en løsning)."
  1073. #: apt-private/private-install.cc:639
  1074. msgid ""
  1075. "Some packages could not be installed. This may mean that you have\n"
  1076. "requested an impossible situation or if you are using the unstable\n"
  1077. "distribution that some required packages have not yet been created\n"
  1078. "or been moved out of Incoming."
  1079. msgstr ""
  1080. "Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n"
  1081. "en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n"
  1082. "at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n"
  1083. "distribusjonen."
  1084. #: apt-private/private-install.cc:660
  1085. msgid "Broken packages"
  1086. msgstr "Ødelagte pakker"
  1087. #: apt-private/private-install.cc:713
  1088. msgid "The following extra packages will be installed:"
  1089. msgstr "Følgende ekstra pakker vil bli installert."
  1090. #: apt-private/private-install.cc:803
  1091. msgid "Suggested packages:"
  1092. msgstr "Foreslåtte pakker:"
  1093. #: apt-private/private-install.cc:804
  1094. msgid "Recommended packages:"
  1095. msgstr "Anbefalte pakker"
  1096. #: apt-private/private-download.cc:32
  1097. msgid "WARNING: The following packages cannot be authenticated!"
  1098. msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!"
  1099. #: apt-private/private-download.cc:36
  1100. msgid "Authentication warning overridden.\n"
  1101. msgstr "Autentiseringsadvarsel overstyrt.\n"
  1102. #: apt-private/private-download.cc:41 apt-private/private-download.cc:48
  1103. msgid "Some packages could not be authenticated"
  1104. msgstr "Noen pakker ble ikke autentisert"
  1105. #: apt-private/private-download.cc:46
  1106. msgid "Install these packages without verification?"
  1107. msgstr "Installer disse pakkene uten verifikasjon?"
  1108. #: apt-private/private-download.cc:87 apt-pkg/update.cc:84
  1109. #, c-format
  1110. msgid "Failed to fetch %s %s\n"
  1111. msgstr "Klarte ikke å skaffe %s %s\n"
  1112. #: apt-private/private-output.cc:200
  1113. msgid "installed,upgradable to: "
  1114. msgstr ""
  1115. #: apt-private/private-output.cc:206
  1116. #, fuzzy
  1117. msgid "[installed,local]"
  1118. msgstr " [Installert]"
  1119. #: apt-private/private-output.cc:209
  1120. msgid "[installed,auto-removable]"
  1121. msgstr ""
  1122. #: apt-private/private-output.cc:211
  1123. #, fuzzy
  1124. msgid "[installed,automatic]"
  1125. msgstr " [Installert]"
  1126. #: apt-private/private-output.cc:213
  1127. #, fuzzy
  1128. msgid "[installed]"
  1129. msgstr " [Installert]"
  1130. #: apt-private/private-output.cc:219
  1131. msgid "[upgradable from: "
  1132. msgstr ""
  1133. #: apt-private/private-output.cc:225
  1134. msgid "[residual-config]"
  1135. msgstr ""
  1136. #: apt-private/private-output.cc:316
  1137. msgid "The following packages have unmet dependencies:"
  1138. msgstr "Følgende pakker har uinnfridde avhengighetsforhold:"
  1139. #: apt-private/private-output.cc:406
  1140. #, c-format
  1141. msgid "but %s is installed"
  1142. msgstr "men %s er installert"
  1143. #: apt-private/private-output.cc:408
  1144. #, c-format
  1145. msgid "but %s is to be installed"
  1146. msgstr "men %s skal installeres"
  1147. #: apt-private/private-output.cc:415
  1148. msgid "but it is not installable"
  1149. msgstr "men lar seg ikke installere"
  1150. #: apt-private/private-output.cc:417
  1151. msgid "but it is a virtual package"
  1152. msgstr "men er en virtuell pakke"
  1153. #: apt-private/private-output.cc:420
  1154. msgid "but it is not installed"
  1155. msgstr "men er ikke installert"
  1156. #: apt-private/private-output.cc:420
  1157. msgid "but it is not going to be installed"
  1158. msgstr "men skal ikke installeres"
  1159. #: apt-private/private-output.cc:425
  1160. msgid " or"
  1161. msgstr " eller"
  1162. #: apt-private/private-output.cc:454
  1163. msgid "The following NEW packages will be installed:"
  1164. msgstr "Følgende NYE pakker vil bli installert:"
  1165. #: apt-private/private-output.cc:480
  1166. msgid "The following packages will be REMOVED:"
  1167. msgstr "Følgende pakker vil bli FJERNET:"
  1168. #: apt-private/private-output.cc:502
  1169. msgid "The following packages have been kept back:"
  1170. msgstr "Følgende pakker er holdt tilbake:"
  1171. #: apt-private/private-output.cc:523
  1172. msgid "The following packages will be upgraded:"
  1173. msgstr "Følgende pakker vil bli oppgradert:"
  1174. #: apt-private/private-output.cc:544
  1175. msgid "The following packages will be DOWNGRADED:"
  1176. msgstr "Følgende pakker vil bli NEDGRADERT:"
  1177. #: apt-private/private-output.cc:564
  1178. msgid "The following held packages will be changed:"
  1179. msgstr "Følgende pakker vil bli endret:"
  1180. #: apt-private/private-output.cc:619
  1181. #, c-format
  1182. msgid "%s (due to %s) "
  1183. msgstr "%s (pga. %s) "
  1184. #: apt-private/private-output.cc:627
  1185. msgid ""
  1186. "WARNING: The following essential packages will be removed.\n"
  1187. "This should NOT be done unless you know exactly what you are doing!"
  1188. msgstr ""
  1189. "ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n"
  1190. "Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!"
  1191. #: apt-private/private-output.cc:658
  1192. #, c-format
  1193. msgid "%lu upgraded, %lu newly installed, "
  1194. msgstr "%lu oppgraderte, %lu nylig installerte, "
  1195. #: apt-private/private-output.cc:662
  1196. #, c-format
  1197. msgid "%lu reinstalled, "
  1198. msgstr "%lu installert på nytt, "
  1199. #: apt-private/private-output.cc:664
  1200. #, c-format
  1201. msgid "%lu downgraded, "
  1202. msgstr "%lu nedgraderte, "
  1203. #: apt-private/private-output.cc:666
  1204. #, c-format
  1205. msgid "%lu to remove and %lu not upgraded.\n"
  1206. msgstr "%lu å fjerne og %lu ikke oppgradert.\n"
  1207. #: apt-private/private-output.cc:670
  1208. #, c-format
  1209. msgid "%lu not fully installed or removed.\n"
  1210. msgstr "%lu pakker ikke fullt installert eller fjernet.\n"
  1211. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1212. #. e.g. "Do you want to continue? [Y/n] "
  1213. #. The user has to answer with an input matching the
  1214. #. YESEXPR/NOEXPR defined in your l10n.
  1215. #: apt-private/private-output.cc:692
  1216. msgid "[Y/n]"
  1217. msgstr "[J/n]"
  1218. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1219. #. e.g. "Should this file be removed? [y/N] "
  1220. #. The user has to answer with an input matching the
  1221. #. YESEXPR/NOEXPR defined in your l10n.
  1222. #: apt-private/private-output.cc:698
  1223. msgid "[y/N]"
  1224. msgstr "[j/N]"
  1225. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1226. #: apt-private/private-output.cc:709
  1227. msgid "Y"
  1228. msgstr "J"
  1229. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1230. #: apt-private/private-output.cc:715
  1231. msgid "N"
  1232. msgstr ""
  1233. #: apt-private/private-output.cc:737 apt-pkg/cachefilter.cc:33
  1234. #, c-format
  1235. msgid "Regex compilation error - %s"
  1236. msgstr "Kompileringsfeil i regulært uttrykk - %s"
  1237. #: apt-private/private-cachefile.cc:87
  1238. msgid "Correcting dependencies..."
  1239. msgstr "Retter på avhengighetsforhold ..."
  1240. #: apt-private/private-cachefile.cc:90
  1241. msgid " failed."
  1242. msgstr " mislyktes."
  1243. #: apt-private/private-cachefile.cc:93
  1244. msgid "Unable to correct dependencies"
  1245. msgstr "Klarer ikke å rette på avhengighetsforholdene"
  1246. #: apt-private/private-cachefile.cc:96
  1247. msgid "Unable to minimize the upgrade set"
  1248. msgstr "Klarer ikke å minimere oppgraderingsettet"
  1249. #: apt-private/private-cachefile.cc:98
  1250. msgid " Done"
  1251. msgstr " Utført"
  1252. #: apt-private/private-cachefile.cc:102
  1253. msgid "You might want to run 'apt-get -f install' to correct these."
  1254. msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette."
  1255. #: apt-private/private-cachefile.cc:105
  1256. msgid "Unmet dependencies. Try using -f."
  1257. msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»."
  1258. #: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57
  1259. msgid "Sorting"
  1260. msgstr ""
  1261. #: apt-private/private-update.cc:45
  1262. msgid "The update command takes no arguments"
  1263. msgstr "Oppdaterings-kommandoen tar ingen argumenter"
  1264. #: apt-private/private-upgrade.cc:18
  1265. msgid "Calculating upgrade... "
  1266. msgstr "Beregner oppgradering... "
  1267. #: apt-private/private-upgrade.cc:23
  1268. #, fuzzy
  1269. msgid "Internal error, Upgrade broke stuff"
  1270. msgstr "Intern feil - «AllUpgrade» ødela noe"
  1271. #: apt-private/private-upgrade.cc:25
  1272. msgid "Done"
  1273. msgstr "Utført"
  1274. #: apt-private/private-search.cc:61
  1275. msgid "Full Text Search"
  1276. msgstr ""
  1277. #: apt-private/private-show.cc:105
  1278. msgid "not a real package (virtual)"
  1279. msgstr ""
  1280. #: apt-private/private-main.cc:19
  1281. msgid ""
  1282. "NOTE: This is only a simulation!\n"
  1283. " apt-get needs root privileges for real execution.\n"
  1284. " Keep also in mind that locking is deactivated,\n"
  1285. " so don't depend on the relevance to the real current situation!"
  1286. msgstr ""
  1287. "MERK: Dette er kun en simulering.\n"
  1288. " apt-get må ha root-rettigheter for reell utførelse.\n"
  1289. " Husk også at låsing er deaktivert, så ikke regn med \n"
  1290. " relevans i forhold til den reelle gjeldende situasjonen."
  1291. #: apt-private/private-sources.cc:45
  1292. #, fuzzy, c-format
  1293. msgid "Failed to parse %s. Edit again? "
  1294. msgstr "Klarte ikke å endre navnet på %s til %s"
  1295. #: apt-private/private-sources.cc:57
  1296. #, c-format
  1297. msgid "Your '%s' file changed, please run 'apt-get update'."
  1298. msgstr ""
  1299. #: apt-private/acqprogress.cc:60
  1300. msgid "Hit "
  1301. msgstr "Funnet "
  1302. #: apt-private/acqprogress.cc:84
  1303. msgid "Get:"
  1304. msgstr "Hent:"
  1305. #: apt-private/acqprogress.cc:115
  1306. msgid "Ign "
  1307. msgstr "Ign "
  1308. #: apt-private/acqprogress.cc:119
  1309. msgid "Err "
  1310. msgstr "Feil "
  1311. #: apt-private/acqprogress.cc:140
  1312. #, c-format
  1313. msgid "Fetched %sB in %s (%sB/s)\n"
  1314. msgstr "Hentet %sB på %s (%sB/s)\n"
  1315. #: apt-private/acqprogress.cc:230
  1316. #, c-format
  1317. msgid " [Working]"
  1318. msgstr " [Arbeider]"
  1319. #: apt-private/acqprogress.cc:291
  1320. #, c-format
  1321. msgid ""
  1322. "Media change: please insert the disc labeled\n"
  1323. " '%s'\n"
  1324. "in the drive '%s' and press enter\n"
  1325. msgstr ""
  1326. "Bytte av media: sett inn CD-en som er merket\n"
  1327. " «%s»\n"
  1328. "i «%s» og trykk «Enter»\n"
  1329. #. Only warn if there are no sources.list.d.
  1330. #. Only warn if there is no sources.list file.
  1331. #: methods/mirror.cc:95 apt-inst/extract.cc:464
  1332. #: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406
  1333. #: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:265
  1334. #: apt-pkg/sourcelist.cc:271 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100
  1335. #: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373
  1336. #, c-format
  1337. msgid "Unable to read %s"
  1338. msgstr "Klarer ikke å lese %s"
  1339. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180
  1340. #: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491
  1341. #: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60
  1342. #: apt-pkg/clean.cc:123
  1343. #, c-format
  1344. msgid "Unable to change to %s"
  1345. msgstr "Klarer ikke å endre %s"
  1346. #. FIXME: fallback to a default mirror here instead
  1347. #. and provide a config option to define that default
  1348. #: methods/mirror.cc:280
  1349. #, c-format
  1350. msgid "No mirror file '%s' found "
  1351. msgstr "Ingen speilfil «%s» funnet"
  1352. #. FIXME: fallback to a default mirror here instead
  1353. #. and provide a config option to define that default
  1354. #: methods/mirror.cc:287
  1355. #, fuzzy, c-format
  1356. msgid "Can not read mirror file '%s'"
  1357. msgstr "Ingen speilfil «%s» funnet"
  1358. #: methods/mirror.cc:315
  1359. #, fuzzy, c-format
  1360. msgid "No entry found in mirror file '%s'"
  1361. msgstr "Ingen speilfil «%s» funnet"
  1362. #: methods/mirror.cc:445
  1363. #, c-format
  1364. msgid "[Mirror: %s]"
  1365. msgstr "[Speil: %s]"
  1366. #: methods/rsh.cc:99 ftparchive/multicompress.cc:168
  1367. msgid "Failed to create IPC pipe to subprocess"
  1368. msgstr "Klarte ikke å opprette IPC-rør til underprosessen"
  1369. #: methods/rsh.cc:340
  1370. msgid "Connection closed prematurely"
  1371. msgstr "Forbindelsen ble uventet stengt"
  1372. #: dselect/install:33
  1373. msgid "Bad default setting!"
  1374. msgstr "Feil standardinnstilling!"
  1375. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1376. #: dselect/install:106 dselect/update:45
  1377. msgid "Press enter to continue."
  1378. msgstr "Trykk «Enter» og fortsett"
  1379. #: dselect/install:92
  1380. msgid "Do you want to erase any previously downloaded .deb files?"
  1381. msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?"
  1382. # Note to translators: The following four messages belong together. It doesn't
  1383. # matter where sentences start, but it has to fit in just these four lines, and
  1384. # at only 80 characters per line, if possible.
  1385. #: dselect/install:102
  1386. msgid "Some errors occurred while unpacking. Packages that were installed"
  1387. msgstr "Feil oppstod ved utpakkinga. Setter nå opp de installerte pakkene."
  1388. #: dselect/install:103
  1389. msgid "will be configured. This may result in duplicate errors"
  1390. msgstr "Det kan lede til fordobling av feil eller feil forårsaket av "
  1391. #: dselect/install:104
  1392. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1393. msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er"
  1394. #: dselect/install:105
  1395. msgid ""
  1396. "above this message are important. Please fix them and run [I]nstall again"
  1397. msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen."
  1398. #: dselect/update:30
  1399. msgid "Merging available information"
  1400. msgstr "Fletter tilgjengelig informasjon"
  1401. #: cmdline/apt-extracttemplates.cc:100
  1402. #, c-format
  1403. msgid "%s not a valid DEB package."
  1404. msgstr "%s er ikke en gyldig debianpakke."
  1405. #: cmdline/apt-extracttemplates.cc:234
  1406. msgid ""
  1407. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1408. "\n"
  1409. "apt-extracttemplates is a tool to extract config and template info\n"
  1410. "from debian packages\n"
  1411. "\n"
  1412. "Options:\n"
  1413. " -h This help text\n"
  1414. " -t Set the temp dir\n"
  1415. " -c=? Read this configuration file\n"
  1416. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1417. msgstr ""
  1418. "Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
  1419. "\n"
  1420. "apt-extracttemplates er et verktøy til å hente ut informasjon om "
  1421. "innstillinger\n"
  1422. "og maler fra debianpakker.\n"
  1423. "\n"
  1424. "Innstillinger:\n"
  1425. " -h Denne hjelpeteksten\n"
  1426. " -t Lag en midlertidig mappe\n"
  1427. " -c=? Les denne innstillingsfila.\n"
  1428. " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
  1429. #: cmdline/apt-extracttemplates.cc:266 apt-pkg/pkgcachegen.cc:1388
  1430. #, c-format
  1431. msgid "Unable to write to %s"
  1432. msgstr "Kan ikke skrive til %s"
  1433. #: cmdline/apt-extracttemplates.cc:308
  1434. msgid "Cannot get debconf version. Is debconf installed?"
  1435. msgstr "Kan ikke fastslå debconf-versjonen. Er debconf installert?"
  1436. #: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349
  1437. msgid "Package extension list is too long"
  1438. msgstr "Lista over pakkeutvidelser er for lang"
  1439. #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190
  1440. #: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264
  1441. #: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300
  1442. #, c-format
  1443. msgid "Error processing directory %s"
  1444. msgstr "Feil ved lesing av katalogen %s"
  1445. #: ftparchive/apt-ftparchive.cc:262
  1446. msgid "Source extension list is too long"
  1447. msgstr "Lista over kildeutvidelser er for lang"
  1448. #: ftparchive/apt-ftparchive.cc:379
  1449. msgid "Error writing header to contents file"
  1450. msgstr "Feil ved skriving av topptekst til innholdsfila"
  1451. #: ftparchive/apt-ftparchive.cc:409
  1452. #, c-format
  1453. msgid "Error processing contents %s"
  1454. msgstr "Det oppsto en feil ved lesing av %s"
  1455. #: ftparchive/apt-ftparchive.cc:597
  1456. msgid ""
  1457. "Usage: apt-ftparchive [options] command\n"
  1458. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1459. " sources srcpath [overridefile [pathprefix]]\n"
  1460. " contents path\n"
  1461. " release path\n"
  1462. " generate config [groups]\n"
  1463. " clean config\n"
  1464. "\n"
  1465. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1466. "many styles of generation from fully automated to functional replacements\n"
  1467. "for dpkg-scanpackages and dpkg-scansources\n"
  1468. "\n"
  1469. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1470. "Package file contains the contents of all the control fields from\n"
  1471. "each package as well as the MD5 hash and filesize. An override file\n"
  1472. "is supported to force the value of Priority and Section.\n"
  1473. "\n"
  1474. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1475. "The --source-override option can be used to specify a src override file\n"
  1476. "\n"
  1477. "The 'packages' and 'sources' command should be run in the root of the\n"
  1478. "tree. BinaryPath should point to the base of the recursive search and \n"
  1479. "override file should contain the override flags. Pathprefix is\n"
  1480. "appended to the filename fields if present. Example usage from the \n"
  1481. "Debian archive:\n"
  1482. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1483. " dists/potato/main/binary-i386/Packages\n"
  1484. "\n"
  1485. "Options:\n"
  1486. " -h This help text\n"
  1487. " --md5 Control MD5 generation\n"
  1488. " -s=? Source override file\n"
  1489. " -q Quiet\n"
  1490. " -d=? Select the optional caching database\n"
  1491. " --no-delink Enable delinking debug mode\n"
  1492. " --contents Control contents file generation\n"
  1493. " -c=? Read this configuration file\n"
  1494. " -o=? Set an arbitrary configuration option"
  1495. msgstr ""
  1496. "Bruk: apt-ftparchive [innstillinger] kommando\n"
  1497. "Kommandoer: packages binærsti [overstyringsfil [sti-prefiks]]\n"
  1498. " sources kildesti [overstyringsfil [sti-prefiks]]\n"
  1499. " contents sti\n"
  1500. " release sti\n"
  1501. " generate config [grupper]\n"
  1502. " clean config\n"
  1503. "\n"
  1504. "apt-ftparchive oppretter indeksfiler for debianarkiver. Mange ulike\n"
  1505. "metoder er støttet - fra helautomatiske til funksjonelle\n"
  1506. "erstatninger for dpkg-scanpackages og dpkg-scansources.\n"
  1507. "\n"
  1508. "apt-ftparchive oppretter «Packages»-filer fra et tre med debianpakker.\n"
  1509. "«Packages»-fila inneholder alle kontrollfeltene fra hver pakke i tillegg "
  1510. "til\n"
  1511. "MD5-nøkkel og filstørrelse. Du kan bruke en overstyringsfil for å tvinge\n"
  1512. "gjennom verdier for prioritet og kategori.\n"
  1513. "\n"
  1514. "apt-ftparchive kan på samme måte opprette kildefiler fra et tre\n"
  1515. "med .dsc-filer. Du kan bruke en overstyringsfil med --source-override.\n"
  1516. "\n"
  1517. "Kommandoene «packages» og «sources» skal kjøres i rota av katalogtreet.\n"
  1518. "«Binærsti» skal peke til toppkatalogen for det rekursive søket, og\n"
  1519. "overstyringsfila skal inneholde innstillinger for overstyring.\n"
  1520. "Sti-prefikset blir lagt til feltene for filnavn, dersom det er oppgitt. Her "
  1521. "er\n"
  1522. "et eksempel på bruk i debianarkivet:\n"
  1523. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1524. " dists/potato/main/binary-i386/Packages\n"
  1525. "\n"
  1526. "Innstillinger:\n"
  1527. " -h Vis denne hjelpeteksten.\n"
  1528. " --md5 Styrer MD5-opprettelsen\n"
  1529. " -s=? Overstyringsfil for kildekode.\n"
  1530. " -q Stille.\n"
  1531. " -d=? Velger om du vil bruke en mellomlagerdatabase.\n"
  1532. " --no-delink Bruk avlusingsmodus med «delinking».\n"
  1533. " --contents Styrer opprettelse av innholdsfila.\n"
  1534. " -c=? Les denne oppsettsfila.\n"
  1535. " -o=? Setter en vilkårlig innstilling"
  1536. #: ftparchive/apt-ftparchive.cc:803
  1537. msgid "No selections matched"
  1538. msgstr "Ingen utvalg passet"
  1539. #: ftparchive/apt-ftparchive.cc:881
  1540. #, c-format
  1541. msgid "Some files are missing in the package file group `%s'"
  1542. msgstr "Enkelte filer mangler i pakkegruppa «%s»"
  1543. #: ftparchive/cachedb.cc:47
  1544. #, c-format
  1545. msgid "DB was corrupted, file renamed to %s.old"
  1546. msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old"
  1547. #: ftparchive/cachedb.cc:65
  1548. #, c-format
  1549. msgid "DB is old, attempting to upgrade %s"
  1550. msgstr "Databasen er gammel, forsøker å oppgradere %s"
  1551. #: ftparchive/cachedb.cc:76
  1552. msgid ""
  1553. "DB format is invalid. If you upgraded from an older version of apt, please "
  1554. "remove and re-create the database."
  1555. msgstr ""
  1556. "DB-formatet er ugyldig. Hvis du oppgraderte fra en eldre versjon av apt, "
  1557. "fjern og så gjenopprett databasen."
  1558. #: ftparchive/cachedb.cc:81
  1559. #, c-format
  1560. msgid "Unable to open DB file %s: %s"
  1561. msgstr "Klarte ikke å åpne Databasefila %s: %s"
  1562. #: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192
  1563. #: apt-inst/extract.cc:209
  1564. #, c-format
  1565. msgid "Failed to stat %s"
  1566. msgstr "Klarte ikke å få statusen på %s"
  1567. #: ftparchive/cachedb.cc:249
  1568. msgid "Archive has no control record"
  1569. msgstr "Arkivet har ingen kontrollpost"
  1570. #: ftparchive/cachedb.cc:490
  1571. msgid "Unable to get a cursor"
  1572. msgstr "Klarte ikke å finne en peker"
  1573. #: ftparchive/writer.cc:82
  1574. #, c-format
  1575. msgid "W: Unable to read directory %s\n"
  1576. msgstr "A: Klarte ikke å lese katalogen %s\n"
  1577. #: ftparchive/writer.cc:87
  1578. #, c-format
  1579. msgid "W: Unable to stat %s\n"
  1580. msgstr "A: Klarte ikke å få statusen på %s\n"
  1581. #: ftparchive/writer.cc:143
  1582. msgid "E: "
  1583. msgstr "F:"
  1584. #: ftparchive/writer.cc:145
  1585. msgid "W: "
  1586. msgstr "A:"
  1587. #: ftparchive/writer.cc:152
  1588. msgid "E: Errors apply to file "
  1589. msgstr "F: Det er feil ved fila"
  1590. #: ftparchive/writer.cc:170 ftparchive/writer.cc:202
  1591. #, c-format
  1592. msgid "Failed to resolve %s"
  1593. msgstr "Klarte ikke å slå opp %s"
  1594. #: ftparchive/writer.cc:183
  1595. msgid "Tree walking failed"
  1596. msgstr "Klarte ikke å finne fram i treet"
  1597. #: ftparchive/writer.cc:210
  1598. #, c-format
  1599. msgid "Failed to open %s"
  1600. msgstr "Klarte ikke å åpne %s"
  1601. #: ftparchive/writer.cc:269
  1602. #, c-format
  1603. msgid " DeLink %s [%s]\n"
  1604. msgstr " DeLink %s [%s]\n"
  1605. #: ftparchive/writer.cc:277
  1606. #, c-format
  1607. msgid "Failed to readlink %s"
  1608. msgstr "Klarte ikke å lese lenken %s"
  1609. #: ftparchive/writer.cc:281
  1610. #, c-format
  1611. msgid "Failed to unlink %s"
  1612. msgstr "Klarte ikke å oppheve lenken %s"
  1613. #: ftparchive/writer.cc:289
  1614. #, c-format
  1615. msgid "*** Failed to link %s to %s"
  1616. msgstr "*** Klarte ikke å lenke %s til %s"
  1617. #: ftparchive/writer.cc:299
  1618. #, c-format
  1619. msgid " DeLink limit of %sB hit.\n"
  1620. msgstr " DeLink-grensa på %s B er nådd.\n"
  1621. #: ftparchive/writer.cc:404
  1622. msgid "Archive had no package field"
  1623. msgstr "Arkivet har ikke noe pakkefelt"
  1624. #: ftparchive/writer.cc:412 ftparchive/writer.cc:702
  1625. #, c-format
  1626. msgid " %s has no override entry\n"
  1627. msgstr " %s har ingen overstyringsoppføring\n"
  1628. #: ftparchive/writer.cc:480 ftparchive/writer.cc:846
  1629. #, c-format
  1630. msgid " %s maintainer is %s not %s\n"
  1631. msgstr " %s-vedlikeholderen er %s, ikke %s\n"
  1632. #: ftparchive/writer.cc:712
  1633. #, c-format
  1634. msgid " %s has no source override entry\n"
  1635. msgstr " %s har ingen kildeoverstyringsoppføring\n"
  1636. #: ftparchive/writer.cc:716
  1637. #, c-format
  1638. msgid " %s has no binary override entry either\n"
  1639. msgstr " %s har ingen binæroverstyringsoppføring heller\n"
  1640. #: ftparchive/contents.cc:341 ftparchive/contents.cc:372
  1641. msgid "realloc - Failed to allocate memory"
  1642. msgstr "realloc - Klarte ikke å tildele minne"
  1643. #: ftparchive/override.cc:35 ftparchive/override.cc:143
  1644. #, c-format
  1645. msgid "Unable to open %s"
  1646. msgstr "Klarte ikke å åpne %s"
  1647. #: ftparchive/override.cc:61 ftparchive/override.cc:167
  1648. #, fuzzy, c-format
  1649. msgid "Malformed override %s line %llu #1"
  1650. msgstr "Ugyldig overstyring %s linje %lu #1"
  1651. #: ftparchive/override.cc:75 ftparchive/override.cc:179
  1652. #, fuzzy, c-format
  1653. msgid "Malformed override %s line %llu #2"
  1654. msgstr "Ugyldig overstyring %s linje %lu #2"
  1655. #: ftparchive/override.cc:89 ftparchive/override.cc:192
  1656. #, fuzzy, c-format
  1657. msgid "Malformed override %s line %llu #3"
  1658. msgstr "Ugyldig overstyring %s linje %lu #3"
  1659. #: ftparchive/override.cc:128 ftparchive/override.cc:202
  1660. #, c-format
  1661. msgid "Failed to read the override file %s"
  1662. msgstr "Klarte ikke å lese overstyringsfila %s"
  1663. #: ftparchive/multicompress.cc:70
  1664. #, c-format
  1665. msgid "Unknown compression algorithm '%s'"
  1666. msgstr "Ukjent komprimeringsalgoritme «%s»"
  1667. #: ftparchive/multicompress.cc:100
  1668. #, c-format
  1669. msgid "Compressed output %s needs a compression set"
  1670. msgstr "Komprimert utdata %s trenger et komprimeringssett"
  1671. #: ftparchive/multicompress.cc:189
  1672. msgid "Failed to create FILE*"
  1673. msgstr "Klarte ikke å opprette FILE*"
  1674. #: ftparchive/multicompress.cc:192
  1675. msgid "Failed to fork"
  1676. msgstr "Klarte ikke å forgreine prosess"
  1677. #: ftparchive/multicompress.cc:206
  1678. msgid "Compress child"
  1679. msgstr "Komprimer barneprosess"
  1680. #: ftparchive/multicompress.cc:229
  1681. #, c-format
  1682. msgid "Internal error, failed to create %s"
  1683. msgstr "Intern feil, klarte ikke å opprette %s"
  1684. #: ftparchive/multicompress.cc:304
  1685. msgid "IO to subprocess/file failed"
  1686. msgstr "Klarte ikke å kommunisere med underprosess/fil"
  1687. #: ftparchive/multicompress.cc:342
  1688. msgid "Failed to read while computing MD5"
  1689. msgstr "Klarte ikke å lese under utregning av MD5"
  1690. #: ftparchive/multicompress.cc:358
  1691. #, c-format
  1692. msgid "Problem unlinking %s"
  1693. msgstr "Problem ved oppheving av lenken til %s"
  1694. #: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187
  1695. #, c-format
  1696. msgid "Failed to rename %s to %s"
  1697. msgstr "Klarte ikke å endre navnet på %s til %s"
  1698. #: cmdline/apt-internal-solver.cc:38
  1699. #, fuzzy
  1700. msgid ""
  1701. "Usage: apt-internal-solver\n"
  1702. "\n"
  1703. "apt-internal-solver is an interface to use the current internal\n"
  1704. "like an external resolver for the APT family for debugging or alike\n"
  1705. "\n"
  1706. "Options:\n"
  1707. " -h This help text.\n"
  1708. " -q Loggable output - no progress indicator\n"
  1709. " -c=? Read this configuration file\n"
  1710. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1711. msgstr ""
  1712. "Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
  1713. "\n"
  1714. "apt-extracttemplates er et verktøy til å hente ut informasjon om "
  1715. "innstillinger\n"
  1716. "og maler fra debianpakker.\n"
  1717. "\n"
  1718. "Innstillinger:\n"
  1719. " -h Denne hjelpeteksten\n"
  1720. " -t Lag en midlertidig mappe\n"
  1721. " -c=? Les denne innstillingsfila.\n"
  1722. " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
  1723. #: cmdline/apt-sortpkgs.cc:89
  1724. msgid "Unknown package record!"
  1725. msgstr "Ukjent pakkeoppføring"
  1726. #: cmdline/apt-sortpkgs.cc:153
  1727. msgid ""
  1728. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1729. "\n"
  1730. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1731. "to indicate what kind of file it is.\n"
  1732. "\n"
  1733. "Options:\n"
  1734. " -h This help text\n"
  1735. " -s Use source file sorting\n"
  1736. " -c=? Read this configuration file\n"
  1737. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1738. msgstr ""
  1739. "Bruk: apt-sortpkgs [innstillinger] fil1 [fil2 ...]\n"
  1740. "\n"
  1741. "apt-sortpkgs er et enkelt redskap til å sortere pakkefiler. Innstillingen\n"
  1742. "-s brukes til å angi hvilken filtype det er.\n"
  1743. "\n"
  1744. "Innstillinger:\n"
  1745. " -h Denne hjelpeteksten\n"
  1746. " -s Bruk filsortering\n"
  1747. " -c=? Les denne innstillingsfila.\n"
  1748. " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
  1749. #: apt-inst/contrib/extracttar.cc:116
  1750. msgid "Failed to create pipes"
  1751. msgstr "Klarte ikke å opprette rør"
  1752. #: apt-inst/contrib/extracttar.cc:143
  1753. msgid "Failed to exec gzip "
  1754. msgstr "Klarte ikke å kjøre gzip "
  1755. #: apt-inst/contrib/extracttar.cc:180 apt-inst/contrib/extracttar.cc:210
  1756. msgid "Corrupted archive"
  1757. msgstr "Ødelagt arkiv"
  1758. #: apt-inst/contrib/extracttar.cc:195
  1759. msgid "Tar checksum failed, archive corrupted"
  1760. msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt"
  1761. #: apt-inst/contrib/extracttar.cc:300
  1762. #, c-format
  1763. msgid "Unknown TAR header type %u, member %s"
  1764. msgstr "Ukjent TAR-hode: type %u, medlem %s"
  1765. #: apt-inst/contrib/arfile.cc:74
  1766. msgid "Invalid archive signature"
  1767. msgstr "Ugyldig arkivsignatur"
  1768. #: apt-inst/contrib/arfile.cc:82
  1769. msgid "Error reading archive member header"
  1770. msgstr "Feil ved lesing av arkivmedlemshode"
  1771. #: apt-inst/contrib/arfile.cc:94
  1772. #, c-format
  1773. msgid "Invalid archive member header %s"
  1774. msgstr "Ugyldig arkivmedlemshode %s"
  1775. #: apt-inst/contrib/arfile.cc:106
  1776. msgid "Invalid archive member header"
  1777. msgstr "Ugyldig arkivmedlemshode"
  1778. #: apt-inst/contrib/arfile.cc:135
  1779. msgid "Archive is too short"
  1780. msgstr "Arkivet er for kort"
  1781. #: apt-inst/contrib/arfile.cc:139
  1782. msgid "Failed to read the archive headers"
  1783. msgstr "Klarte ikke å lese arkivhodene"
  1784. #: apt-inst/filelist.cc:382
  1785. msgid "DropNode called on still linked node"
  1786. msgstr "DropNode ble startet på et knutepunkt som ennå er lenket"
  1787. #: apt-inst/filelist.cc:414
  1788. msgid "Failed to locate the hash element!"
  1789. msgstr "Fant ikke nøkkelelementet."
  1790. #: apt-inst/filelist.cc:461
  1791. msgid "Failed to allocate diversion"
  1792. msgstr "Klarte ikke å tildele avledning"
  1793. #: apt-inst/filelist.cc:466
  1794. msgid "Internal error in AddDiversion"
  1795. msgstr "Intern feil i AddDiversion"
  1796. #: apt-inst/filelist.cc:479
  1797. #, c-format
  1798. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1799. msgstr "Prøver å skrive over en avledning, %s -> %s og %s/%s"
  1800. #: apt-inst/filelist.cc:508
  1801. #, c-format
  1802. msgid "Double add of diversion %s -> %s"
  1803. msgstr "Dobbel tillegging av avledning %s -> %s"
  1804. #: apt-inst/filelist.cc:551
  1805. #, c-format
  1806. msgid "Duplicate conf file %s/%s"
  1807. msgstr "Dobbel oppsettsfil %s/%s"
  1808. #: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55
  1809. #, c-format
  1810. msgid "Failed to write file %s"
  1811. msgstr "Klarte ikke å skrive fila %s"
  1812. #: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106
  1813. #, c-format
  1814. msgid "Failed to close file %s"
  1815. msgstr "Klarte ikke å lukke fila %s"
  1816. #: apt-inst/extract.cc:94 apt-inst/extract.cc:165
  1817. #, c-format
  1818. msgid "The path %s is too long"
  1819. msgstr "Stien %s er for lang"
  1820. #: apt-inst/extract.cc:125
  1821. #, c-format
  1822. msgid "Unpacking %s more than once"
  1823. msgstr "Pakker ut %s mer enn en gang"
  1824. #: apt-inst/extract.cc:135
  1825. #, c-format
  1826. msgid "The directory %s is diverted"
  1827. msgstr "Katalogen %s er avledet"
  1828. #: apt-inst/extract.cc:145
  1829. #, c-format
  1830. msgid "The package is trying to write to the diversion target %s/%s"
  1831. msgstr "Pakken prøver å skrive til avledningsmålet %s/%s"
  1832. #: apt-inst/extract.cc:155 apt-inst/extract.cc:299
  1833. msgid "The diversion path is too long"
  1834. msgstr "Avledningsstien er for lang"
  1835. #: apt-inst/extract.cc:242
  1836. #, c-format
  1837. msgid "The directory %s is being replaced by a non-directory"
  1838. msgstr "Mappa %s blir byttet ut med noe som ikke er en mappe"
  1839. #: apt-inst/extract.cc:282
  1840. msgid "Failed to locate node in its hash bucket"
  1841. msgstr "Fant ikke knutepunktet i dens hash-spann"
  1842. #: apt-inst/extract.cc:286
  1843. msgid "The path is too long"
  1844. msgstr "Stien er for lang"
  1845. #: apt-inst/extract.cc:414
  1846. #, c-format
  1847. msgid "Overwrite package match with no version for %s"
  1848. msgstr "Skriver over pakketreff uten versjon for %s"
  1849. #: apt-inst/extract.cc:431
  1850. #, c-format
  1851. msgid "File %s/%s overwrites the one in the package %s"
  1852. msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s"
  1853. #: apt-inst/extract.cc:491
  1854. #, c-format
  1855. msgid "Unable to stat %s"
  1856. msgstr "Klarte ikke å få statusen på %s"
  1857. #: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
  1858. #: apt-inst/deb/debfile.cc:54
  1859. #, c-format
  1860. msgid "This is not a valid DEB archive, missing '%s' member"
  1861. msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet"
  1862. #: apt-inst/deb/debfile.cc:119
  1863. #, c-format
  1864. msgid "Internal error, could not locate member %s"
  1865. msgstr "Intern feil, fant ikke medlemmet %s"
  1866. #: apt-inst/deb/debfile.cc:213
  1867. msgid "Unparsable control file"
  1868. msgstr "Kontrollfila kan ikke tolkes"
  1869. #: apt-pkg/contrib/mmap.cc:79
  1870. msgid "Can't mmap an empty file"
  1871. msgstr "Kan ikke utføre mmap på en tom fil"
  1872. #: apt-pkg/contrib/mmap.cc:111
  1873. #, c-format
  1874. msgid "Couldn't duplicate file descriptor %i"
  1875. msgstr "Klarte ikke duplisere fildeskriptor %i"
  1876. #: apt-pkg/contrib/mmap.cc:119
  1877. #, fuzzy, c-format
  1878. msgid "Couldn't make mmap of %llu bytes"
  1879. msgstr "Klarte ikke lage mmap av %lu bytes"
  1880. #: apt-pkg/contrib/mmap.cc:146
  1881. msgid "Unable to close mmap"
  1882. msgstr "Klarte ikke lukke mmap"
  1883. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  1884. msgid "Unable to synchronize mmap"
  1885. msgstr "Klarte ikke synkronisere mmap"
  1886. #: apt-pkg/contrib/mmap.cc:290
  1887. #, c-format
  1888. msgid "Couldn't make mmap of %lu bytes"
  1889. msgstr "Klarte ikke lage mmap av %lu bytes"
  1890. #: apt-pkg/contrib/mmap.cc:322
  1891. msgid "Failed to truncate file"
  1892. msgstr "Klarte ikke forkorte fila %s"
  1893. #: apt-pkg/contrib/mmap.cc:341
  1894. #, c-format
  1895. msgid ""
  1896. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  1897. "Current value: %lu. (man 5 apt.conf)"
  1898. msgstr ""
  1899. "Dynamisk MMap gikk tom for minne. Øk størrelsen på APT::Cache-Start. "
  1900. "Nåværende verdi: %lu. (man 5 apt.conf)"
  1901. #: apt-pkg/contrib/mmap.cc:440
  1902. #, c-format
  1903. msgid ""
  1904. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1905. "reached."
  1906. msgstr ""
  1907. "Klarte ikke øke størrelsen på MMap-en siden grensen på %lu byte allerede er "
  1908. "nådd."
  1909. #: apt-pkg/contrib/mmap.cc:443
  1910. msgid ""
  1911. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1912. msgstr ""
  1913. "Klarte ikke øke størrelsen på MMap-en siden automatisk voksing er deaktivert "
  1914. "av brukeren."
  1915. #. d means days, h means hours, min means minutes, s means seconds
  1916. #: apt-pkg/contrib/strutl.cc:401
  1917. #, c-format
  1918. msgid "%lid %lih %limin %lis"
  1919. msgstr "%lid %lit %lim %lis"
  1920. #. h means hours, min means minutes, s means seconds
  1921. #: apt-pkg/contrib/strutl.cc:408
  1922. #, c-format
  1923. msgid "%lih %limin %lis"
  1924. msgstr "%lit %lim %lis"
  1925. #. min means minutes, s means seconds
  1926. #: apt-pkg/contrib/strutl.cc:415
  1927. #, c-format
  1928. msgid "%limin %lis"
  1929. msgstr "%lim %lis"
  1930. #. s means seconds
  1931. #: apt-pkg/contrib/strutl.cc:420
  1932. #, c-format
  1933. msgid "%lis"
  1934. msgstr "%lis"
  1935. #: apt-pkg/contrib/strutl.cc:1229
  1936. #, c-format
  1937. msgid "Selection %s not found"
  1938. msgstr "Fant ikke utvalget %s"
  1939. #: apt-pkg/contrib/configuration.cc:503
  1940. #, c-format
  1941. msgid "Unrecognized type abbreviation: '%c'"
  1942. msgstr "Ukjent typeforkortelse: «%c»"
  1943. #: apt-pkg/contrib/configuration.cc:617
  1944. #, c-format
  1945. msgid "Opening configuration file %s"
  1946. msgstr "Åpner oppsettsfila %s"
  1947. #: apt-pkg/contrib/configuration.cc:785
  1948. #, c-format
  1949. msgid "Syntax error %s:%u: Block starts with no name."
  1950. msgstr "Syntaksfeil %s:%u: Blokka starter uten navn."
  1951. #: apt-pkg/contrib/configuration.cc:804
  1952. #, c-format
  1953. msgid "Syntax error %s:%u: Malformed tag"
  1954. msgstr "Syntaksfeil %s:%u: Feil på taggen"
  1955. #: apt-pkg/contrib/configuration.cc:821
  1956. #, c-format
  1957. msgid "Syntax error %s:%u: Extra junk after value"
  1958. msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien"
  1959. #: apt-pkg/contrib/configuration.cc:861
  1960. #, c-format
  1961. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1962. msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivået"
  1963. #: apt-pkg/contrib/configuration.cc:868
  1964. #, c-format
  1965. msgid "Syntax error %s:%u: Too many nested includes"
  1966. msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer"
  1967. #: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877
  1968. #, c-format
  1969. msgid "Syntax error %s:%u: Included from here"
  1970. msgstr "Syntaksfeil %s:%u: Inkludert herfra"
  1971. #: apt-pkg/contrib/configuration.cc:881
  1972. #, c-format
  1973. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1974. msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet"
  1975. #: apt-pkg/contrib/configuration.cc:884
  1976. #, c-format
  1977. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1978. msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument"
  1979. #: apt-pkg/contrib/configuration.cc:934
  1980. #, c-format
  1981. msgid "Syntax error %s:%u: Extra junk at end of file"
  1982. msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila"
  1983. #: apt-pkg/contrib/progress.cc:146
  1984. #, c-format
  1985. msgid "%c%s... Error!"
  1986. msgstr "%c%s ... Feil"
  1987. #: apt-pkg/contrib/progress.cc:148
  1988. #, c-format
  1989. msgid "%c%s... Done"
  1990. msgstr "%c%s ... Ferdig"
  1991. #: apt-pkg/contrib/progress.cc:179
  1992. msgid "..."
  1993. msgstr ""
  1994. #. Print the spinner
  1995. #: apt-pkg/contrib/progress.cc:195
  1996. #, fuzzy, c-format
  1997. msgid "%c%s... %u%%"
  1998. msgstr "%c%s ... Ferdig"
  1999. #: apt-pkg/contrib/cmndline.cc:116
  2000. #, c-format
  2001. msgid "Command line option '%c' [from %s] is not known."
  2002. msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)."
  2003. #: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150
  2004. #: apt-pkg/contrib/cmndline.cc:158
  2005. #, c-format
  2006. msgid "Command line option %s is not understood"
  2007. msgstr "Skjønner ikke kommandolinjevalget %s"
  2008. #: apt-pkg/contrib/cmndline.cc:163
  2009. #, c-format
  2010. msgid "Command line option %s is not boolean"
  2011. msgstr "Kommandolinjevalget %s er ikke boolsk"
  2012. #: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225
  2013. #, c-format
  2014. msgid "Option %s requires an argument."
  2015. msgstr "Valget %s krever et argument."
  2016. #: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244
  2017. #, c-format
  2018. msgid "Option %s: Configuration item specification must have an =<val>."
  2019. msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>."
  2020. #: apt-pkg/contrib/cmndline.cc:273
  2021. #, c-format
  2022. msgid "Option %s requires an integer argument, not '%s'"
  2023. msgstr "Valget %s må ha et heltallsargument, ikke «%s»"
  2024. #: apt-pkg/contrib/cmndline.cc:304
  2025. #, c-format
  2026. msgid "Option '%s' is too long"
  2027. msgstr "Valget «%s» er for langt"
  2028. #: apt-pkg/contrib/cmndline.cc:336
  2029. #, c-format
  2030. msgid "Sense %s is not understood, try true or false."
  2031. msgstr "Skjønner ikke %s. Prøv «true» eller «false»."
  2032. #: apt-pkg/contrib/cmndline.cc:386
  2033. #, c-format
  2034. msgid "Invalid operation %s"
  2035. msgstr "Ugyldig operasjon %s"
  2036. #: apt-pkg/contrib/cdromutl.cc:56
  2037. #, c-format
  2038. msgid "Unable to stat the mount point %s"
  2039. msgstr "Klarer ikke å fastsette monteringspunktet %s"
  2040. #: apt-pkg/contrib/cdromutl.cc:225
  2041. msgid "Failed to stat the cdrom"
  2042. msgstr "Klarer ikke å få statusen på CD-spilleren"
  2043. #: apt-pkg/contrib/fileutl.cc:95
  2044. #, c-format
  2045. msgid "Problem closing the gzip file %s"
  2046. msgstr "Problem ved låsing av gzip-fila %s"
  2047. #: apt-pkg/contrib/fileutl.cc:228
  2048. #, c-format
  2049. msgid "Not using locking for read only lock file %s"
  2050. msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s"
  2051. #: apt-pkg/contrib/fileutl.cc:233
  2052. #, c-format
  2053. msgid "Could not open lock file %s"
  2054. msgstr "Klarte ikke åpne låsefila %s"
  2055. #: apt-pkg/contrib/fileutl.cc:256
  2056. #, c-format
  2057. msgid "Not using locking for nfs mounted lock file %s"
  2058. msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s"
  2059. #: apt-pkg/contrib/fileutl.cc:261
  2060. #, c-format
  2061. msgid "Could not get lock %s"
  2062. msgstr "Får ikke låst %s"
  2063. #: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512
  2064. #, c-format
  2065. msgid "List of files can't be created as '%s' is not a directory"
  2066. msgstr ""
  2067. #: apt-pkg/contrib/fileutl.cc:432
  2068. #, c-format
  2069. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2070. msgstr ""
  2071. #: apt-pkg/contrib/fileutl.cc:450
  2072. #, c-format
  2073. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2074. msgstr ""
  2075. #: apt-pkg/contrib/fileutl.cc:459
  2076. #, c-format
  2077. msgid ""
  2078. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2079. msgstr ""
  2080. #: apt-pkg/contrib/fileutl.cc:862
  2081. #, c-format
  2082. msgid "Sub-process %s received a segmentation fault."
  2083. msgstr "Underprosessen %s mottok et minnefeilsignal."
  2084. #: apt-pkg/contrib/fileutl.cc:864
  2085. #, c-format
  2086. msgid "Sub-process %s received signal %u."
  2087. msgstr "Underprosessen %s mottok signalet %u."
  2088. #: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237
  2089. #, c-format
  2090. msgid "Sub-process %s returned an error code (%u)"
  2091. msgstr "Underprosessen %s ga en feilkode (%u)"
  2092. #: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230
  2093. #, c-format
  2094. msgid "Sub-process %s exited unexpectedly"
  2095. msgstr "Underprosessen %s avsluttet uventet"
  2096. #: apt-pkg/contrib/fileutl.cc:1016
  2097. #, c-format
  2098. msgid "Could not open file %s"
  2099. msgstr "Klarte ikke åpne fila %s"
  2100. #: apt-pkg/contrib/fileutl.cc:1093
  2101. #, c-format
  2102. msgid "Could not open file descriptor %d"
  2103. msgstr "Klarte ikke åpne fildeskriptor %d"
  2104. #: apt-pkg/contrib/fileutl.cc:1178
  2105. msgid "Failed to create subprocess IPC"
  2106. msgstr "Klarte ikke å opprette underprosessen IPC"
  2107. #: apt-pkg/contrib/fileutl.cc:1233
  2108. msgid "Failed to exec compressor "
  2109. msgstr "Klarte ikke å kjøre komprimeringen"
  2110. #: apt-pkg/contrib/fileutl.cc:1326
  2111. #, fuzzy, c-format
  2112. msgid "read, still have %llu to read but none left"
  2113. msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen"
  2114. #: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435
  2115. #, fuzzy, c-format
  2116. msgid "write, still have %llu to write but couldn't"
  2117. msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å"
  2118. #: apt-pkg/contrib/fileutl.cc:1726
  2119. #, c-format
  2120. msgid "Problem closing the file %s"
  2121. msgstr "Problem ved låsing av fila %s"
  2122. #: apt-pkg/contrib/fileutl.cc:1738
  2123. #, c-format
  2124. msgid "Problem renaming the file %s to %s"
  2125. msgstr "Problem ved endring av navn på fila %s til %s"
  2126. #: apt-pkg/contrib/fileutl.cc:1749
  2127. #, c-format
  2128. msgid "Problem unlinking the file %s"
  2129. msgstr "Problem ved oppheving av lenke til fila %s"
  2130. #: apt-pkg/contrib/fileutl.cc:1762
  2131. msgid "Problem syncing the file"
  2132. msgstr "Problem ved oppdatering av fila"
  2133. #. TRANSLATOR: %s is the trusted keyring parts directory
  2134. #: apt-pkg/contrib/gpgv.cc:70
  2135. #, c-format
  2136. msgid "No keyring installed in %s."
  2137. msgstr "Ingen nøkkelring installert i %s."
  2138. #: apt-pkg/pkgcache.cc:148
  2139. msgid "Empty package cache"
  2140. msgstr "Tomt pakkelager"
  2141. #: apt-pkg/pkgcache.cc:154
  2142. msgid "The package cache file is corrupted"
  2143. msgstr "Pakkens lagerfil er ødelagt"
  2144. #: apt-pkg/pkgcache.cc:159
  2145. msgid "The package cache file is an incompatible version"
  2146. msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)"
  2147. #: apt-pkg/pkgcache.cc:162
  2148. #, fuzzy
  2149. msgid "The package cache file is corrupted, it is too small"
  2150. msgstr "Pakkens lagerfil er ødelagt"
  2151. #: apt-pkg/pkgcache.cc:167
  2152. #, c-format
  2153. msgid "This APT does not support the versioning system '%s'"
  2154. msgstr "Denne APT støtter ikke versjonssystemet «%s»"
  2155. #: apt-pkg/pkgcache.cc:172
  2156. msgid "The package cache was built for a different architecture"
  2157. msgstr "Pakkelageret ble bygd for en annen arkitektur"
  2158. #: apt-pkg/pkgcache.cc:314
  2159. msgid "Depends"
  2160. msgstr "Avhenger av"
  2161. #: apt-pkg/pkgcache.cc:314
  2162. msgid "PreDepends"
  2163. msgstr "Forutsetter"
  2164. #: apt-pkg/pkgcache.cc:314
  2165. msgid "Suggests"
  2166. msgstr "Foreslår"
  2167. #: apt-pkg/pkgcache.cc:315
  2168. msgid "Recommends"
  2169. msgstr "Anbefaler"
  2170. #: apt-pkg/pkgcache.cc:315
  2171. msgid "Conflicts"
  2172. msgstr "Er i konflikt med"
  2173. #: apt-pkg/pkgcache.cc:315
  2174. msgid "Replaces"
  2175. msgstr "Erstatter"
  2176. #: apt-pkg/pkgcache.cc:316
  2177. msgid "Obsoletes"
  2178. msgstr "Nuller"
  2179. #: apt-pkg/pkgcache.cc:316
  2180. msgid "Breaks"
  2181. msgstr "Ødelegger"
  2182. #: apt-pkg/pkgcache.cc:316
  2183. msgid "Enhances"
  2184. msgstr "Forbedrer"
  2185. #: apt-pkg/pkgcache.cc:327
  2186. msgid "important"
  2187. msgstr "viktig"
  2188. #: apt-pkg/pkgcache.cc:327
  2189. msgid "required"
  2190. msgstr "påkrevet"
  2191. #: apt-pkg/pkgcache.cc:327
  2192. msgid "standard"
  2193. msgstr "vanlig"
  2194. #: apt-pkg/pkgcache.cc:328
  2195. msgid "optional"
  2196. msgstr "valgfri"
  2197. #: apt-pkg/pkgcache.cc:328
  2198. msgid "extra"
  2199. msgstr "tillegg"
  2200. #: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161
  2201. msgid "Building dependency tree"
  2202. msgstr "Skaper oversikt over avhengighetsforhold"
  2203. #: apt-pkg/depcache.cc:133
  2204. msgid "Candidate versions"
  2205. msgstr "Versjons-kandidater"
  2206. #: apt-pkg/depcache.cc:162
  2207. msgid "Dependency generation"
  2208. msgstr "Oppretter avhengighetsforhold"
  2209. #: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219
  2210. msgid "Reading state information"
  2211. msgstr "Leser tilstandsinformasjon"
  2212. #: apt-pkg/depcache.cc:244
  2213. #, c-format
  2214. msgid "Failed to open StateFile %s"
  2215. msgstr "Klarte ikke å åpne StateFile %s"
  2216. #: apt-pkg/depcache.cc:250
  2217. #, c-format
  2218. msgid "Failed to write temporary StateFile %s"
  2219. msgstr "Klarte ikke å skrive midlertidig StateFile %s"
  2220. #: apt-pkg/tagfile.cc:138
  2221. #, c-format
  2222. msgid "Unable to parse package file %s (1)"
  2223. msgstr "Klarer ikke å fortolke pakkefila %s (1)"
  2224. #: apt-pkg/tagfile.cc:231
  2225. #, c-format
  2226. msgid "Unable to parse package file %s (2)"
  2227. msgstr "Klarer ikke å fortolke pakkefila %s (2)"
  2228. #: apt-pkg/sourcelist.cc:112
  2229. #, fuzzy, c-format
  2230. msgid "Malformed stanza %u in source list %s (URI parse)"
  2231. msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)"
  2232. #: apt-pkg/sourcelist.cc:155
  2233. #, c-format
  2234. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2235. msgstr "Feil på linje %lu i kildelista %s ([valg] ikke tolkbar)"
  2236. #: apt-pkg/sourcelist.cc:158
  2237. #, c-format
  2238. msgid "Malformed line %lu in source list %s ([option] too short)"
  2239. msgstr "Feil på linje %lu i kildelista %s ([valg] for kort)"
  2240. #: apt-pkg/sourcelist.cc:169
  2241. #, c-format
  2242. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2243. msgstr "Feil på linje %lu i kildelista %s ([%s] er ingen tilordning)"
  2244. #: apt-pkg/sourcelist.cc:175
  2245. #, c-format
  2246. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2247. msgstr "Feil på linje %lu i kildelista %s ([%s] har ingen nøkkel)"
  2248. #: apt-pkg/sourcelist.cc:178
  2249. #, c-format
  2250. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2251. msgstr "Feil på linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)"
  2252. #: apt-pkg/sourcelist.cc:191
  2253. #, c-format
  2254. msgid "Malformed line %lu in source list %s (URI)"
  2255. msgstr "Feil på linje %lu i kildelista %s (nettadresse)"
  2256. #: apt-pkg/sourcelist.cc:193
  2257. #, c-format
  2258. msgid "Malformed line %lu in source list %s (dist)"
  2259. msgstr "Feil på linje %lu i kildelista %s (dist)"
  2260. #: apt-pkg/sourcelist.cc:196
  2261. #, c-format
  2262. msgid "Malformed line %lu in source list %s (URI parse)"
  2263. msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)"
  2264. #: apt-pkg/sourcelist.cc:202
  2265. #, c-format
  2266. msgid "Malformed line %lu in source list %s (absolute dist)"
  2267. msgstr "Feil på %lu i kildelista %s (Absolutt dist)"
  2268. #: apt-pkg/sourcelist.cc:209
  2269. #, c-format
  2270. msgid "Malformed line %lu in source list %s (dist parse)"
  2271. msgstr "Feil på %lu i kildelista %s (dist fortolking)"
  2272. #: apt-pkg/sourcelist.cc:320
  2273. #, c-format
  2274. msgid "Opening %s"
  2275. msgstr "Åpner %s"
  2276. #: apt-pkg/sourcelist.cc:332 apt-pkg/cdrom.cc:495
  2277. #, c-format
  2278. msgid "Line %u too long in source list %s."
  2279. msgstr "Linje %u i kildelista %s er for lang"
  2280. #: apt-pkg/sourcelist.cc:356
  2281. #, c-format
  2282. msgid "Malformed line %u in source list %s (type)"
  2283. msgstr "Feil på %u i kildelista %s (type)"
  2284. #: apt-pkg/sourcelist.cc:360
  2285. #, c-format
  2286. msgid "Type '%s' is not known on line %u in source list %s"
  2287. msgstr "Typen «%s» er ukjent i linje %u i kildelista %s"
  2288. #: apt-pkg/sourcelist.cc:401
  2289. #, fuzzy, c-format
  2290. msgid "Type '%s' is not known on stanza %u in source list %s"
  2291. msgstr "Typen «%s» er ukjent i linje %u i kildelista %s"
  2292. #: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922
  2293. #, c-format
  2294. msgid ""
  2295. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2296. "under APT::Immediate-Configure for details. (%d)"
  2297. msgstr ""
  2298. "Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf "
  2299. "under APT::Immediate-Configure for detaljer. (%d)"
  2300. #: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528
  2301. #, fuzzy, c-format
  2302. msgid "Could not configure '%s'. "
  2303. msgstr "Klarte ikke åpne fila «%s»"
  2304. #: apt-pkg/packagemanager.cc:570
  2305. #, c-format
  2306. msgid ""
  2307. "This installation run will require temporarily removing the essential "
  2308. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2309. "you really want to do it, activate the APT::Force-LoopBreak option."
  2310. msgstr ""
  2311. "Den forestående installasjon må midlertidig fjerne den meget viktige pakken "
  2312. "%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du "
  2313. "virkelig vil det, så bruk innstillingen APT::Force-LoopBreak."
  2314. #: apt-pkg/pkgrecords.cc:34
  2315. #, c-format
  2316. msgid "Index file type '%s' is not supported"
  2317. msgstr "Oversiktsfil av typen «%s» støttes ikke"
  2318. #: apt-pkg/algorithms.cc:266
  2319. #, c-format
  2320. msgid ""
  2321. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2322. msgstr ""
  2323. "Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den."
  2324. #: apt-pkg/algorithms.cc:1068
  2325. msgid ""
  2326. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2327. "held packages."
  2328. msgstr ""
  2329. "Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker "
  2330. "som holdes tilbake."
  2331. #: apt-pkg/algorithms.cc:1070
  2332. msgid "Unable to correct problems, you have held broken packages."
  2333. msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake."
  2334. #: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:838
  2335. #, c-format
  2336. msgid "List directory %spartial is missing."
  2337. msgstr "Listemappa %spartial mangler."
  2338. #: apt-pkg/acquire.cc:85
  2339. #, c-format
  2340. msgid "Archives directory %spartial is missing."
  2341. msgstr "Arkivmappa %spartial mangler."
  2342. #: apt-pkg/acquire.cc:93
  2343. #, c-format
  2344. msgid "Unable to lock directory %s"
  2345. msgstr "Klarte ikke låse mappa %s"
  2346. #. only show the ETA if it makes sense
  2347. #. two days
  2348. #: apt-pkg/acquire.cc:893
  2349. #, c-format
  2350. msgid "Retrieving file %li of %li (%s remaining)"
  2351. msgstr "Henter fil %li av %li (%s gjenværende)"
  2352. #: apt-pkg/acquire.cc:895
  2353. #, c-format
  2354. msgid "Retrieving file %li of %li"
  2355. msgstr "Henter fil %li av %li"
  2356. #: apt-pkg/acquire-worker.cc:112
  2357. #, c-format
  2358. msgid "The method driver %s could not be found."
  2359. msgstr "Finner ikke metode-driveren %s."
  2360. #: apt-pkg/acquire-worker.cc:161
  2361. #, c-format
  2362. msgid "Method %s did not start correctly"
  2363. msgstr "Metoden %s startet ikke korrekt"
  2364. #: apt-pkg/acquire-worker.cc:447
  2365. #, c-format
  2366. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2367. msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter."
  2368. #: apt-pkg/init.cc:143
  2369. #, c-format
  2370. msgid "Packaging system '%s' is not supported"
  2371. msgstr "Pakkesystemet «%s» støttes ikke"
  2372. #: apt-pkg/init.cc:159
  2373. msgid "Unable to determine a suitable packaging system type"
  2374. msgstr "Klarer ikke bestemme en passende pakkesystemtype"
  2375. #: apt-pkg/clean.cc:57
  2376. #, c-format
  2377. msgid "Unable to stat %s."
  2378. msgstr "Klarer ikke finne informasjonom %s."
  2379. #: apt-pkg/srcrecords.cc:47
  2380. msgid "You must put some 'source' URIs in your sources.list"
  2381. msgstr ""
  2382. "Beklager, du må legge inn noen kilder (nettadresser) i din «sources.list»."
  2383. #: apt-pkg/cachefile.cc:87
  2384. msgid "The package lists or status file could not be parsed or opened."
  2385. msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller åpnes."
  2386. #: apt-pkg/cachefile.cc:91
  2387. msgid "You may want to run apt-get update to correct these problems"
  2388. msgstr ""
  2389. "Det kan hende du vil kjøre «apt-get update» for å rette på disse problemene"
  2390. #: apt-pkg/cachefile.cc:109
  2391. msgid "The list of sources could not be read."
  2392. msgstr "Kan ikke lese kildlista."
  2393. #: apt-pkg/policy.cc:75
  2394. #, c-format
  2395. msgid ""
  2396. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2397. "available in the sources"
  2398. msgstr ""
  2399. #: apt-pkg/policy.cc:414
  2400. #, c-format
  2401. msgid "Invalid record in the preferences file %s, no Package header"
  2402. msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode"
  2403. #: apt-pkg/policy.cc:436
  2404. #, c-format
  2405. msgid "Did not understand pin type %s"
  2406. msgstr "Forsto ikke spikring av typen %s"
  2407. #: apt-pkg/policy.cc:444
  2408. msgid "No priority (or zero) specified for pin"
  2409. msgstr "Ingen prioritet (eller null) spesifisert for pin"
  2410. #: apt-pkg/pkgcachegen.cc:87
  2411. msgid "Cache has an incompatible versioning system"
  2412. msgstr "Lageret har et uoverensstemmende versjonssystem"
  2413. #. TRANSLATOR: The first placeholder is a package name,
  2414. #. the other two should be copied verbatim as they include debug info
  2415. #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228
  2416. #: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321
  2417. #: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376
  2418. #: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397
  2419. #: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409
  2420. #: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434
  2421. #: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511
  2422. #: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549
  2423. #: apt-pkg/pkgcachegen.cc:563
  2424. #, fuzzy, c-format
  2425. msgid "Error occurred while processing %s (%s%d)"
  2426. msgstr "Feil oppsto under behandling av %s (FindPkg)"
  2427. #: apt-pkg/pkgcachegen.cc:251
  2428. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2429. msgstr "Jøss, du har overgått antallet pakkenavn denne APT klarer."
  2430. #: apt-pkg/pkgcachegen.cc:254
  2431. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2432. msgstr "Jøss, du har overgått antallet versjoner denne APT klarer."
  2433. #: apt-pkg/pkgcachegen.cc:257
  2434. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2435. msgstr "Jøss, du har overgått antallet beskrivelser denne APT klarer."
  2436. #: apt-pkg/pkgcachegen.cc:260
  2437. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2438. msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer."
  2439. #: apt-pkg/pkgcachegen.cc:570
  2440. #, c-format
  2441. msgid "Package %s %s was not found while processing file dependencies"
  2442. msgstr "Fant ikke pakken %s %s ved behandling av filkrav"
  2443. #: apt-pkg/pkgcachegen.cc:1199
  2444. #, c-format
  2445. msgid "Couldn't stat source package list %s"
  2446. msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker"
  2447. #: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391
  2448. #: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554
  2449. msgid "Reading package lists"
  2450. msgstr "Leser pakkelister"
  2451. #: apt-pkg/pkgcachegen.cc:1304
  2452. msgid "Collecting File Provides"
  2453. msgstr "Samler inn filtilbud"
  2454. #: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503
  2455. msgid "IO Error saving source cache"
  2456. msgstr "IO-feil ved lagring av kildekode-lager"
  2457. #: apt-pkg/acquire-item.cc:139
  2458. #, c-format
  2459. msgid "rename failed, %s (%s -> %s)."
  2460. msgstr "klarte ikke å endre navnet, %s (%s -> %s)."
  2461. #: apt-pkg/acquire-item.cc:154
  2462. msgid "Hash Sum mismatch"
  2463. msgstr "Hashsummen stemmer ikke"
  2464. #: apt-pkg/acquire-item.cc:159
  2465. msgid "Size mismatch"
  2466. msgstr "Feil størrelse"
  2467. #: apt-pkg/acquire-item.cc:164
  2468. #, fuzzy
  2469. msgid "Invalid file format"
  2470. msgstr "Ugyldig operasjon %s"
  2471. #: apt-pkg/acquire-item.cc:1561
  2472. #, c-format
  2473. msgid ""
  2474. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2475. "or malformed file)"
  2476. msgstr ""
  2477. #: apt-pkg/acquire-item.cc:1577
  2478. #, fuzzy, c-format
  2479. msgid "Unable to find hash sum for '%s' in Release file"
  2480. msgstr "Klarer ikke å fortolke Release-fila %s"
  2481. #: apt-pkg/acquire-item.cc:1619
  2482. msgid "There is no public key available for the following key IDs:\n"
  2483. msgstr ""
  2484. "Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n"
  2485. #: apt-pkg/acquire-item.cc:1657
  2486. #, c-format
  2487. msgid ""
  2488. "Release file for %s is expired (invalid since %s). Updates for this "
  2489. "repository will not be applied."
  2490. msgstr ""
  2491. #: apt-pkg/acquire-item.cc:1679
  2492. #, c-format
  2493. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2494. msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)"
  2495. #: apt-pkg/acquire-item.cc:1709
  2496. #, c-format
  2497. msgid ""
  2498. "An error occurred during the signature verification. The repository is not "
  2499. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2500. msgstr ""
  2501. "En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den "
  2502. "forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n"
  2503. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2504. #: apt-pkg/acquire-item.cc:1719 apt-pkg/acquire-item.cc:1724
  2505. #, c-format
  2506. msgid "GPG error: %s: %s"
  2507. msgstr "GPG-feil: %s: %s"
  2508. #: apt-pkg/acquire-item.cc:1847
  2509. #, c-format
  2510. msgid ""
  2511. "I wasn't able to locate a file for the %s package. This might mean you need "
  2512. "to manually fix this package. (due to missing arch)"
  2513. msgstr ""
  2514. "Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne pakken "
  2515. "selv (fordi arkitekturen mangler)."
  2516. #: apt-pkg/acquire-item.cc:1913
  2517. #, c-format
  2518. msgid "Can't find a source to download version '%s' of '%s'"
  2519. msgstr ""
  2520. #: apt-pkg/acquire-item.cc:1971
  2521. #, c-format
  2522. msgid ""
  2523. "The package index files are corrupted. No Filename: field for package %s."
  2524. msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s."
  2525. #: apt-pkg/indexrecords.cc:73
  2526. #, c-format
  2527. msgid "Unable to parse Release file %s"
  2528. msgstr "Klarer ikke å fortolke Release-fila %s"
  2529. #: apt-pkg/indexrecords.cc:81
  2530. #, c-format
  2531. msgid "No sections in Release file %s"
  2532. msgstr "Ingen avsnitt i Release-fila %s"
  2533. #: apt-pkg/indexrecords.cc:112
  2534. #, c-format
  2535. msgid "No Hash entry in Release file %s"
  2536. msgstr "Ingen sjekksumoppføring i Release-fila %s"
  2537. #: apt-pkg/indexrecords.cc:125
  2538. #, c-format
  2539. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2540. msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s"
  2541. #: apt-pkg/indexrecords.cc:144
  2542. #, c-format
  2543. msgid "Invalid 'Date' entry in Release file %s"
  2544. msgstr "Ugyldig «Date»-oppføring i Release-fila %s"
  2545. #: apt-pkg/vendorlist.cc:78
  2546. #, c-format
  2547. msgid "Vendor block %s contains no fingerprint"
  2548. msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk"
  2549. #: apt-pkg/cdrom.cc:576
  2550. #, c-format
  2551. msgid ""
  2552. "Using CD-ROM mount point %s\n"
  2553. "Mounting CD-ROM\n"
  2554. msgstr ""
  2555. "Bruker CD-ROM monteringspunkt %s\n"
  2556. "Monterer CD-ROM\n"
  2557. #: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:682
  2558. msgid "Identifying.. "
  2559. msgstr "Indentifiserer.."
  2560. #: apt-pkg/cdrom.cc:613
  2561. #, c-format
  2562. msgid "Stored label: %s\n"
  2563. msgstr "Lagret merkelapp: %s \n"
  2564. #: apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:915
  2565. msgid "Unmounting CD-ROM...\n"
  2566. msgstr "Avmonterer CD-ROM ...\n"
  2567. #: apt-pkg/cdrom.cc:642
  2568. #, c-format
  2569. msgid "Using CD-ROM mount point %s\n"
  2570. msgstr "Bruker CD-ROM monteringspunkt %s\n"
  2571. #: apt-pkg/cdrom.cc:660
  2572. msgid "Unmounting CD-ROM\n"
  2573. msgstr "Avmonterer CD-ROM\n"
  2574. #: apt-pkg/cdrom.cc:665
  2575. msgid "Waiting for disc...\n"
  2576. msgstr "Venter på CD-en...\n"
  2577. #: apt-pkg/cdrom.cc:674
  2578. msgid "Mounting CD-ROM...\n"
  2579. msgstr "Monterer CD-ROM...\n"
  2580. #: apt-pkg/cdrom.cc:693
  2581. msgid "Scanning disc for index files..\n"
  2582. msgstr "Leter gjennom CD for indeksfiler..\n"
  2583. #: apt-pkg/cdrom.cc:744
  2584. #, c-format
  2585. msgid ""
  2586. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2587. "%zu signatures\n"
  2588. msgstr ""
  2589. "Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu "
  2590. "signaturer\n"
  2591. #: apt-pkg/cdrom.cc:755
  2592. msgid ""
  2593. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2594. "wrong architecture?"
  2595. msgstr ""
  2596. "Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc "
  2597. "eller du har valgt feil arkitektur?"
  2598. #: apt-pkg/cdrom.cc:782
  2599. #, c-format
  2600. msgid "Found label '%s'\n"
  2601. msgstr "Fant merkelapp «%s»\n"
  2602. #: apt-pkg/cdrom.cc:811
  2603. msgid "That is not a valid name, try again.\n"
  2604. msgstr "Det er ikke et gyldig navn, prøv igjen.\n"
  2605. #: apt-pkg/cdrom.cc:828
  2606. #, c-format
  2607. msgid ""
  2608. "This disc is called: \n"
  2609. "'%s'\n"
  2610. msgstr ""
  2611. "CD-en er kalt: \n"
  2612. "«%s»\n"
  2613. #: apt-pkg/cdrom.cc:830
  2614. msgid "Copying package lists..."
  2615. msgstr "Kopierer pakkelister..."
  2616. #: apt-pkg/cdrom.cc:865
  2617. msgid "Writing new source list\n"
  2618. msgstr "Skriver ny kildeliste\n"
  2619. #: apt-pkg/cdrom.cc:873
  2620. msgid "Source list entries for this disc are:\n"
  2621. msgstr "Kildelisteoppføringer for denne CD-en er:\n"
  2622. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775
  2623. #, c-format
  2624. msgid "Wrote %i records.\n"
  2625. msgstr "Skrev %i poster.\n"
  2626. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777
  2627. #, c-format
  2628. msgid "Wrote %i records with %i missing files.\n"
  2629. msgstr "Skrev %i poster med %i manglende filer.\n"
  2630. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780
  2631. #, c-format
  2632. msgid "Wrote %i records with %i mismatched files\n"
  2633. msgstr "Skrev %i poster med %i feile filer.\n"
  2634. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783
  2635. #, c-format
  2636. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2637. msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n"
  2638. #: apt-pkg/indexcopy.cc:515
  2639. #, c-format
  2640. msgid "Can't find authentication record for: %s"
  2641. msgstr "Klarte ikke finne autentiseringsoppføring for: %s"
  2642. #: apt-pkg/indexcopy.cc:521
  2643. #, c-format
  2644. msgid "Hash mismatch for: %s"
  2645. msgstr "Hashsummen stemmer ikke for: %s"
  2646. #: apt-pkg/cacheset.cc:467
  2647. #, c-format
  2648. msgid "Release '%s' for '%s' was not found"
  2649. msgstr "Utgave «%s» av «%s» ble ikke funnet"
  2650. #: apt-pkg/cacheset.cc:470
  2651. #, c-format
  2652. msgid "Version '%s' for '%s' was not found"
  2653. msgstr "Versjon «%s» av «%s» ble ikke funnet"
  2654. #: apt-pkg/cacheset.cc:581
  2655. #, c-format
  2656. msgid "Couldn't find task '%s'"
  2657. msgstr "Klarte ikke å finne oppgave «%s»"
  2658. #: apt-pkg/cacheset.cc:587
  2659. #, c-format
  2660. msgid "Couldn't find any package by regex '%s'"
  2661. msgstr "Klarte ikke finne noen pakken med regex «%s»"
  2662. #: apt-pkg/cacheset.cc:598
  2663. #, c-format
  2664. msgid "Can't select versions from package '%s' as it is purely virtual"
  2665. msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell"
  2666. #: apt-pkg/cacheset.cc:605 apt-pkg/cacheset.cc:612
  2667. #, c-format
  2668. msgid ""
  2669. "Can't select installed nor candidate version from package '%s' as it has "
  2670. "neither of them"
  2671. msgstr ""
  2672. "Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den "
  2673. "har ingen av dem"
  2674. #: apt-pkg/cacheset.cc:619
  2675. #, c-format
  2676. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2677. msgstr ""
  2678. "Klarte ikke velge nyeste versjon fra pakken «%s» siden den er kun virtuell"
  2679. #: apt-pkg/cacheset.cc:627
  2680. #, c-format
  2681. msgid "Can't select candidate version from package %s as it has no candidate"
  2682. msgstr ""
  2683. "Klarte ikke velge kandidatversjon fra pakken «%s» siden den ikke har noen "
  2684. "kandidat"
  2685. #: apt-pkg/cacheset.cc:635
  2686. #, c-format
  2687. msgid "Can't select installed version from package %s as it is not installed"
  2688. msgstr ""
  2689. "Klarte ikke velge installert versjon fra pakken «%s» siden den ikke er "
  2690. "installert"
  2691. #: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61
  2692. msgid "Send scenario to solver"
  2693. msgstr ""
  2694. #: apt-pkg/edsp.cc:209
  2695. msgid "Send request to solver"
  2696. msgstr ""
  2697. #: apt-pkg/edsp.cc:279
  2698. msgid "Prepare for receiving solution"
  2699. msgstr ""
  2700. #: apt-pkg/edsp.cc:286
  2701. msgid "External solver failed without a proper error message"
  2702. msgstr ""
  2703. #: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564
  2704. msgid "Execute external solver"
  2705. msgstr ""
  2706. #: apt-pkg/install-progress.cc:51
  2707. #, c-format
  2708. msgid "Progress: [%3i%%]"
  2709. msgstr ""
  2710. #: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168
  2711. msgid "Running dpkg"
  2712. msgstr "Kjører dpkg"
  2713. #: apt-pkg/update.cc:110 apt-pkg/update.cc:112
  2714. #, fuzzy
  2715. msgid ""
  2716. "Some index files failed to download. They have been ignored, or old ones "
  2717. "used instead."
  2718. msgstr ""
  2719. "Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle "
  2720. "ble brukt isteden. "
  2721. #: apt-pkg/deb/dpkgpm.cc:91
  2722. #, c-format
  2723. msgid "Installing %s"
  2724. msgstr "Installerer %s"
  2725. #: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:978
  2726. #, c-format
  2727. msgid "Configuring %s"
  2728. msgstr "Setter opp %s"
  2729. #: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:985
  2730. #, c-format
  2731. msgid "Removing %s"
  2732. msgstr "Fjerner %s"
  2733. #: apt-pkg/deb/dpkgpm.cc:94
  2734. #, c-format
  2735. msgid "Completely removing %s"
  2736. msgstr "Fjerner %s fullstendig"
  2737. #: apt-pkg/deb/dpkgpm.cc:95
  2738. #, c-format
  2739. msgid "Noting disappearance of %s"
  2740. msgstr "Legger merke til at %s forsvinner"
  2741. #: apt-pkg/deb/dpkgpm.cc:96
  2742. #, c-format
  2743. msgid "Running post-installation trigger %s"
  2744. msgstr "Kjører etter-installasjonsutløser %s"
  2745. #. FIXME: use a better string after freeze
  2746. #: apt-pkg/deb/dpkgpm.cc:809
  2747. #, c-format
  2748. msgid "Directory '%s' missing"
  2749. msgstr "Mappa «%s» mangler"
  2750. #: apt-pkg/deb/dpkgpm.cc:824 apt-pkg/deb/dpkgpm.cc:846
  2751. #, c-format
  2752. msgid "Could not open file '%s'"
  2753. msgstr "Klarte ikke åpne fila «%s»"
  2754. #: apt-pkg/deb/dpkgpm.cc:971
  2755. #, c-format
  2756. msgid "Preparing %s"
  2757. msgstr "Forbereder %s"
  2758. #: apt-pkg/deb/dpkgpm.cc:972
  2759. #, c-format
  2760. msgid "Unpacking %s"
  2761. msgstr "Pakker ut %s"
  2762. #: apt-pkg/deb/dpkgpm.cc:977
  2763. #, c-format
  2764. msgid "Preparing to configure %s"
  2765. msgstr "Forbereder oppsett av %s"
  2766. #: apt-pkg/deb/dpkgpm.cc:979
  2767. #, c-format
  2768. msgid "Installed %s"
  2769. msgstr "Installerte %s"
  2770. #: apt-pkg/deb/dpkgpm.cc:984
  2771. #, c-format
  2772. msgid "Preparing for removal of %s"
  2773. msgstr "Forbereder fjerning av %s"
  2774. #: apt-pkg/deb/dpkgpm.cc:986
  2775. #, c-format
  2776. msgid "Removed %s"
  2777. msgstr "Fjernet %s"
  2778. #: apt-pkg/deb/dpkgpm.cc:991
  2779. #, c-format
  2780. msgid "Preparing to completely remove %s"
  2781. msgstr "Forbereder å fullstendig slette %s"
  2782. #: apt-pkg/deb/dpkgpm.cc:992
  2783. #, c-format
  2784. msgid "Completely removed %s"
  2785. msgstr "Fjernet %s fullstendig"
  2786. #: apt-pkg/deb/dpkgpm.cc:1047
  2787. msgid "ioctl(TIOCGWINSZ) failed"
  2788. msgstr ""
  2789. #: apt-pkg/deb/dpkgpm.cc:1050 apt-pkg/deb/dpkgpm.cc:1071
  2790. #, fuzzy, c-format
  2791. msgid "Can not write log (%s)"
  2792. msgstr "Kan ikke skrive til %s"
  2793. #: apt-pkg/deb/dpkgpm.cc:1050
  2794. msgid "Is /dev/pts mounted?"
  2795. msgstr ""
  2796. #: apt-pkg/deb/dpkgpm.cc:1071
  2797. msgid "Is stdout a terminal?"
  2798. msgstr ""
  2799. #: apt-pkg/deb/dpkgpm.cc:1559
  2800. msgid "Operation was interrupted before it could finish"
  2801. msgstr ""
  2802. #: apt-pkg/deb/dpkgpm.cc:1621
  2803. msgid "No apport report written because MaxReports is reached already"
  2804. msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nådd"
  2805. #. check if its not a follow up error
  2806. #: apt-pkg/deb/dpkgpm.cc:1626
  2807. msgid "dependency problems - leaving unconfigured"
  2808. msgstr "avhengighetsproblemer - lar den være uoppsatt"
  2809. #: apt-pkg/deb/dpkgpm.cc:1628
  2810. msgid ""
  2811. "No apport report written because the error message indicates its a followup "
  2812. "error from a previous failure."
  2813. msgstr ""
  2814. "Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en "
  2815. "følgefeil fra en tidligere feil."
  2816. #: apt-pkg/deb/dpkgpm.cc:1634
  2817. msgid ""
  2818. "No apport report written because the error message indicates a disk full "
  2819. "error"
  2820. msgstr ""
  2821. "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-"
  2822. "feil"
  2823. #: apt-pkg/deb/dpkgpm.cc:1641
  2824. msgid ""
  2825. "No apport report written because the error message indicates a out of memory "
  2826. "error"
  2827. msgstr ""
  2828. "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for "
  2829. "minne»-feil"
  2830. #: apt-pkg/deb/dpkgpm.cc:1648 apt-pkg/deb/dpkgpm.cc:1654
  2831. #, fuzzy
  2832. msgid ""
  2833. "No apport report written because the error message indicates an issue on the "
  2834. "local system"
  2835. msgstr ""
  2836. "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-"
  2837. "feil"
  2838. #: apt-pkg/deb/dpkgpm.cc:1675
  2839. msgid ""
  2840. "No apport report written because the error message indicates a dpkg I/O error"
  2841. msgstr ""
  2842. "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil"
  2843. #: apt-pkg/deb/debsystem.cc:84
  2844. #, c-format
  2845. msgid ""
  2846. "Unable to lock the administration directory (%s), is another process using "
  2847. "it?"
  2848. msgstr ""
  2849. "Klarte ikke låse den administrative mappen (%s). Bruker en annen prosess den?"
  2850. #: apt-pkg/deb/debsystem.cc:87
  2851. #, c-format
  2852. msgid "Unable to lock the administration directory (%s), are you root?"
  2853. msgstr "Klarte ikke låse den administrative mappen (%s). Er du root?"
  2854. #. TRANSLATORS: the %s contains the recovery command, usually
  2855. #. dpkg --configure -a
  2856. #: apt-pkg/deb/debsystem.cc:103
  2857. #, c-format
  2858. msgid ""
  2859. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2860. msgstr "dpkg ble avbrutt. Du må kjøre «%s» manuelt for å rette problemet,"
  2861. #: apt-pkg/deb/debsystem.cc:121
  2862. msgid "Not locked"
  2863. msgstr "Ikke låst"
  2864. #~ msgid ""
  2865. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  2866. #~ "seems to be corrupt."
  2867. #~ msgstr ""
  2868. #~ "Klarte ikke rette %s med mmap og med filoperasjonbruk - programrettelsen "
  2869. #~ "ser ut til å være korrupt."
  2870. #~ msgid ""
  2871. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  2872. #~ "seems to be corrupt."
  2873. #~ msgstr ""
  2874. #~ "Klarte ikke rette %s med mmap (men ingen mmap-spesifikk feil) - "
  2875. #~ "programrettelsen ser ut til å være korrupt."
  2876. #~ msgid "Note, selecting '%s' for task '%s'\n"
  2877. #~ msgstr "Merk, velger «%s» for oppgaven «%s»\n"
  2878. #~ msgid "Note, selecting '%s' for regex '%s'\n"
  2879. #~ msgstr "Merk, velger «%s» for det regulære uttrykket «%s»\n"
  2880. #~ msgid "Package %s is a virtual package provided by:\n"
  2881. #~ msgstr "Pakken %s er en virtuell pakke, som oppfylt av:\n"
  2882. #~ msgid " [Not candidate version]"
  2883. #~ msgstr " [Ikke versjonskandidat]"
  2884. #~ msgid "You should explicitly select one to install."
  2885. #~ msgstr "Du må velge en pakke som skal installeres."
  2886. #~ msgid ""
  2887. #~ "Package %s is not available, but is referred to by another package.\n"
  2888. #~ "This may mean that the package is missing, has been obsoleted, or\n"
  2889. #~ "is only available from another source\n"
  2890. #~ msgstr ""
  2891. #~ "Pakken %s er ikke tilgjengelig, men en annen pakke henviser til den.\n"
  2892. #~ "Dette kan bety at pakken mangler, er utgått, eller bare finnes \n"
  2893. #~ "tilgjengelig fra en annen kilde.\n"
  2894. #~ msgid "However the following packages replace it:"
  2895. #~ msgstr "Følgende pakker erstatter den imidlertid:"
  2896. #~ msgid "Package '%s' has no installation candidate"
  2897. #~ msgstr "Pakken «%s» har ingen installasjonskandidat"
  2898. #~ msgid "Virtual packages like '%s' can't be removed\n"
  2899. #~ msgstr "Virtuelle pakker som «%s» kan ikke fjernes\n"
  2900. #, fuzzy
  2901. #~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  2902. #~ msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
  2903. #, fuzzy
  2904. #~ msgid "Package '%s' is not installed, so not removed\n"
  2905. #~ msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
  2906. #~ msgid "Note, selecting '%s' instead of '%s'\n"
  2907. #~ msgstr "Merk, velger «%s» istedenfor «%s»\n"
  2908. #~ msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  2909. #~ msgstr ""
  2910. #~ "Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n"
  2911. #~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  2912. #~ msgstr ""
  2913. #~ "Hopper over %s siden den ikke er installert eller kun oppgraderinger er "
  2914. #~ "ønsket.\n"
  2915. #~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  2916. #~ msgstr ""
  2917. #~ "Det er ikke mulig å installere %s på nytt - den kan ikke nedlastes.\n"
  2918. #~ msgid "%s is already the newest version.\n"
  2919. #~ msgstr "%s er allerede nyeste versjon.\n"
  2920. #~ msgid "Selected version '%s' (%s) for '%s'\n"
  2921. #~ msgstr "Utvalgt versjon «%s» (%s) for «%s»\n"
  2922. #, fuzzy
  2923. #~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  2924. #~ msgstr "Utvalgt versjon «%s» (%s) for «%s»\n"
  2925. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  2926. #~ msgstr "Ignorer utilgjengelig målutgave «%s» av pakke «%s»"
  2927. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  2928. #~ msgstr ""
  2929. #~ "Dette er ikke et gyldig DEB-arkiv, det har ikke noe «%s»-, «%s»- eller "
  2930. #~ "«%s»-medlem"
  2931. #~ msgid "MD5Sum mismatch"
  2932. #~ msgstr "Feil MD5sum"
  2933. #~ msgid ""
  2934. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  2935. #~ "need to manually fix this package."
  2936. #~ msgstr ""
  2937. #~ "Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne "
  2938. #~ "denne pakken selv."
  2939. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2940. #~ msgstr ""
  2941. #~ "Klarte ikke skrive logg, openpty() feilet (/dev/pts ikke montert?)\n"
  2942. #~ msgid "Skipping nonexistent file %s"
  2943. #~ msgstr "Hopper over den ikke-eksisterende fila %s"
  2944. #~ msgid "Failed to remove %s"
  2945. #~ msgstr "Klarte ikke å fjerne %s"
  2946. #~ msgid "Unable to create %s"
  2947. #~ msgstr "Klarte ikke å opprette %s"
  2948. #~ msgid "Failed to stat %sinfo"
  2949. #~ msgstr "Klarte ikke å få statusen på %sinfo"
  2950. #~ msgid "The info and temp directories need to be on the same filesystem"
  2951. #~ msgstr ""
  2952. #~ "Infokatalogen og den midlertidige katalogen må være på det samme "
  2953. #~ "filsystemet"
  2954. #~ msgid "Failed to change to the admin dir %sinfo"
  2955. #~ msgstr "Klarte ikke å bytte til adminkatalogen %sinfo"
  2956. #~ msgid "Internal error getting a package name"
  2957. #~ msgstr "Intern feil ved henting av pakkenavn"
  2958. #~ msgid "Reading file listing"
  2959. #~ msgstr "Les filliste"
  2960. #~ msgid ""
  2961. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  2962. #~ "then make it empty and immediately re-install the same version of the "
  2963. #~ "package!"
  2964. #~ msgstr ""
  2965. #~ "Klarte ikke å åpne listefila «%sinfo/%s». Dersom du ikke kan gjenopprette "
  2966. #~ "denne fila, bør du opprette den som en tom fil og installere den samme "
  2967. #~ "versjonen av pakken på nytt."
  2968. #~ msgid "Failed reading the list file %sinfo/%s"
  2969. #~ msgstr "Klarte ikke å lese listefila %sinfo/%s"
  2970. #~ msgid "Internal error getting a node"
  2971. #~ msgstr "Intern feil ved henting av node"
  2972. #~ msgid "Failed to open the diversions file %sdiversions"
  2973. #~ msgstr "Klarte ikke å åpne avledningsfila %sdiversions"
  2974. #~ msgid "The diversion file is corrupted"
  2975. #~ msgstr "Avledningsfila er ødelagt"
  2976. #~ msgid "Invalid line in the diversion file: %s"
  2977. #~ msgstr "Ugyldig linje i avledningsfila: %s"
  2978. #~ msgid "Internal error adding a diversion"
  2979. #~ msgstr "Det oppsto en intern feil når avledningen ble lagt til"
  2980. #~ msgid "The pkg cache must be initialized first"
  2981. #~ msgstr "Pakkelageret må klargjøres først"
  2982. #~ msgid "Failed to find a Package: header, offset %lu"
  2983. #~ msgstr "Fant ikke «Package:»-linje, offset %lu"
  2984. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  2985. #~ msgstr "Ødelagt «ConfFile»-del i statusfila. Offset %lu"
  2986. #~ msgid "Error parsing MD5. Offset %lu"
  2987. #~ msgstr "Feil ved tolking av MD5. Offset %lu"
  2988. #~ msgid "Couldn't change to %s"
  2989. #~ msgstr "Klarte ikke å bytte til %s"
  2990. #~ msgid "Failed to locate a valid control file"
  2991. #~ msgstr "Fant ingen gyldig kontrollfil"
  2992. #~ msgid "Couldn't open pipe for %s"
  2993. #~ msgstr "Klarte ikke å åpne rør for %s"
  2994. #~ msgid "Read error from %s process"
  2995. #~ msgstr "Lesefeil fra %s-prosessen"
  2996. #~ msgid "Got a single header line over %u chars"
  2997. #~ msgstr "Fikk en enkel hodelinje over %u tegn"
  2998. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  2999. #~ msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg."
  3000. #~ msgid "Malformed override %s line %lu #1"
  3001. #~ msgstr "Ugyldig overstyring %s linje %lu #1"
  3002. #~ msgid "Malformed override %s line %lu #2"
  3003. #~ msgstr "Ugyldig overstyring %s linje %lu #2"
  3004. #~ msgid "Malformed override %s line %lu #3"
  3005. #~ msgstr "Ugyldig overstyring %s linje %lu #3"
  3006. #~ msgid "decompressor"
  3007. #~ msgstr "dekomprimering"
  3008. #~ msgid "read, still have %lu to read but none left"
  3009. #~ msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen"
  3010. #~ msgid "write, still have %lu to write but couldn't"
  3011. #~ msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å"
  3012. #~ msgid ""
  3013. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3014. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3015. #~ msgstr ""
  3016. #~ "Klarte ikke gjennomføre umiddelbar konfigurasjon av allerede utpakket "
  3017. #~ "«%s». Se man 5 apt.conf under APT::Immediate-Configure for detaljer."
  3018. #~ msgid "Error occurred while processing %s (NewPackage)"
  3019. #~ msgstr "Feil oppsto under behandling av %s (NewPackage)"
  3020. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3021. #~ msgstr "Feil oppsto under behandling av %s (UsePackage1)"
  3022. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3023. #~ msgstr "Feil oppsto under behandling av %s (NewFileDesc1)"
  3024. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3025. #~ msgstr "Feil oppsto under behandling av %s (UsePackage2)"
  3026. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3027. #~ msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
  3028. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3029. #~ msgstr "Feil oppsto under behandling av %s (NewVersion%d)"
  3030. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3031. #~ msgstr "Feil oppsto under behandling av %s (UsePackage3)"
  3032. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3033. #~ msgstr "Feil oppsto under behandling av %s (NewFileDesc2)"
  3034. #~ msgid "Error occurred while processing %s (FindPkg)"
  3035. #~ msgstr "Feil oppsto under behandling av %s (FindPkg)"
  3036. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3037. #~ msgstr "Feil oppsto under behandling av %s (CollectFileProvides)"
  3038. #~ msgid "Internal error, could not locate member"
  3039. #~ msgstr "Intern feil, fant ikke medlem"
  3040. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3041. #~ msgstr "Intern feil, gruppe «%s» har ingen installerbar pseudo-pakke"
  3042. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3043. #~ msgstr "Utgavefil har utgått, ignorerer %s (ugyldg siden %s)"
  3044. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3045. #~ msgstr "E: Argumentliste fra Acquire::gpgv::Options for lang. Avbryter."
  3046. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3047. #~ msgstr "Feil oppsto under behandling av %s (NewVersion2)"
  3048. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3049. #~ msgstr "Feil på %u i kildelista %s (selgers id)"
  3050. #~ msgid "Couldn't access keyring: '%s'"
  3051. #~ msgstr "Klarte ikke å slå opp i nøkkelring; «%s»"
  3052. #~ msgid "Could not patch file"
  3053. #~ msgstr "Kunne ikke åpne fila %s"
  3054. #~ msgid " %4i %s\n"
  3055. #~ msgstr " %4i %s\n"
  3056. #~ msgid "%4i %s\n"
  3057. #~ msgstr "%4i %s\n"
  3058. #~ msgid "Processing triggers for %s"
  3059. #~ msgstr "Behandler utløsere for %s"
  3060. #~ msgid "Dynamic MMap ran out of room"
  3061. #~ msgstr "Dynamisk MMap gikk tom for minne"
  3062. #~ msgid ""
  3063. #~ "Since you only requested a single operation it is extremely likely that\n"
  3064. #~ "the package is simply not installable and a bug report against\n"
  3065. #~ "that package should be filed."
  3066. #~ msgstr ""
  3067. #~ "Ettersom du bare bestilte et enkelt inngrep er det overveiende "
  3068. #~ "sannsynlig\n"
  3069. #~ "at pakken helt enkelt ikke kan installeres, og du bør fylle ut en "
  3070. #~ "feilmelding."
  3071. #~ msgid "Line %d too long (max %lu)"
  3072. #~ msgstr "Linje %d er for lang (maks %lu)"
  3073. #, fuzzy
  3074. #~ msgid "Line %d too long (max %d)"
  3075. #~ msgstr "Linje %d er for lang (maks %d)"
  3076. #, fuzzy
  3077. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  3078. #~ msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
  3079. #, fuzzy
  3080. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  3081. #~ msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
  3082. #, fuzzy
  3083. #~ msgid "Stored label: %s \n"
  3084. #~ msgstr "Lagret merkelapp: %s \n"
  3085. #, fuzzy
  3086. #~ msgid ""
  3087. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  3088. #~ "%i signatures\n"
  3089. #~ msgstr "Fant %i pakkeindekser, %i kildeindekser og %i signaturer\n"
  3090. #, fuzzy
  3091. #~ msgid "openpty failed\n"
  3092. #~ msgstr "Utvalget mislykkes"
  3093. #~ msgid "File date has changed %s"
  3094. #~ msgstr "Fildatoen er endret %s"
  3095. #~ msgid "Reading file list"
  3096. #~ msgstr "Leser filliste"
  3097. #~ msgid "Could not execute "
  3098. #~ msgstr "Får ikke låst %s"
  3099. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  3100. #~ msgstr "Ukjent selger ID «%s» i linje %u i kildelista %s"