nb.po 115 KB

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