nb.po 117 KB

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