nb.po 124 KB

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