nn.po 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528
  1. # translation of apt_nn.po to Norwegian nynorsk
  2. # translation of apt.po to Norwegian nynorsk
  3. # translation of nn.po to Norwegian Nynorsk
  4. # translation of apt.po to Norwegian Nynorsk
  5. # Gaute Hvoslef Kvalnes <gaute@verdsveven.com>, 2003.
  6. # Havard Korsvoll <korsvoll@skulelinux.no>, 2004, 2005.
  7. #
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: apt_nn\n"
  11. "Report-Msgid-Bugs-To: \n"
  12. "POT-Creation-Date: 2011-07-05 13:23+0100\n"
  13. "PO-Revision-Date: 2005-02-14 23:30+0100\n"
  14. "Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n"
  15. "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
  16. "Language: \n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=ISO-8859-1\n"
  19. "Content-Transfer-Encoding: 8bit\n"
  20. "X-Generator: KBabel 1.9.1\n"
  21. #: cmdline/apt-cache.cc:154
  22. #, c-format
  23. msgid "Package %s version %s has an unmet dep:\n"
  24. msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n"
  25. #: cmdline/apt-cache.cc:282
  26. msgid "Total package names: "
  27. msgstr "Tal på pakkenamn: "
  28. #: cmdline/apt-cache.cc:284
  29. #, fuzzy
  30. msgid "Total package structures: "
  31. msgstr "Tal på pakkenamn: "
  32. #: cmdline/apt-cache.cc:324
  33. msgid " Normal packages: "
  34. msgstr " Vanlege pakkar: "
  35. #: cmdline/apt-cache.cc:325
  36. msgid " Pure virtual packages: "
  37. msgstr " Reine virtuelle pakkar: "
  38. #: cmdline/apt-cache.cc:326
  39. msgid " Single virtual packages: "
  40. msgstr " Enkle virtuelle pakkar: "
  41. #: cmdline/apt-cache.cc:327
  42. msgid " Mixed virtual packages: "
  43. msgstr " Samansette virtuelle pakkar: "
  44. #: cmdline/apt-cache.cc:328
  45. msgid " Missing: "
  46. msgstr " Manglar: "
  47. #: cmdline/apt-cache.cc:330
  48. msgid "Total distinct versions: "
  49. msgstr "Tal på einskildversjonar: "
  50. #: cmdline/apt-cache.cc:332
  51. #, fuzzy
  52. msgid "Total distinct descriptions: "
  53. msgstr "Tal på einskildversjonar: "
  54. #: cmdline/apt-cache.cc:334
  55. msgid "Total dependencies: "
  56. msgstr "Tal på krav: "
  57. #: cmdline/apt-cache.cc:337
  58. msgid "Total ver/file relations: "
  59. msgstr "Tal på ver./fil-forhold: "
  60. #: cmdline/apt-cache.cc:339
  61. #, fuzzy
  62. msgid "Total Desc/File relations: "
  63. msgstr "Tal på ver./fil-forhold: "
  64. #: cmdline/apt-cache.cc:341
  65. msgid "Total Provides mappings: "
  66. msgstr "Tal på tilbyr-forhold: "
  67. #: cmdline/apt-cache.cc:353
  68. msgid "Total globbed strings: "
  69. msgstr "Tal på strengar med jokerteikn: "
  70. #: cmdline/apt-cache.cc:367
  71. msgid "Total dependency version space: "
  72. msgstr "Storleik på kravs- og versjonsrom: "
  73. #: cmdline/apt-cache.cc:372
  74. msgid "Total slack space: "
  75. msgstr "Slingringsmon: "
  76. #: cmdline/apt-cache.cc:380
  77. msgid "Total space accounted for: "
  78. msgstr "Brukt plass i alt: "
  79. #: cmdline/apt-cache.cc:511 cmdline/apt-cache.cc:1139
  80. #, c-format
  81. msgid "Package file %s is out of sync."
  82. msgstr "Pakkefila %s er ute av takt."
  83. #: cmdline/apt-cache.cc:589 cmdline/apt-cache.cc:1374
  84. #: cmdline/apt-cache.cc:1376 cmdline/apt-cache.cc:1453 cmdline/apt-mark.cc:37
  85. #: cmdline/apt-mark.cc:84 cmdline/apt-mark.cc:160
  86. msgid "No packages found"
  87. msgstr "Fann ingen pakkar"
  88. #: cmdline/apt-cache.cc:1218
  89. #, fuzzy
  90. msgid "You must give at least one search pattern"
  91. msgstr "Du må oppgi nøyaktig eitt mnster"
  92. #: cmdline/apt-cache.cc:1353
  93. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  94. msgstr ""
  95. #: cmdline/apt-cache.cc:1448 apt-pkg/cacheset.cc:440
  96. #, c-format
  97. msgid "Unable to locate package %s"
  98. msgstr "Finn ikkje pakken %s"
  99. #: cmdline/apt-cache.cc:1478
  100. msgid "Package files:"
  101. msgstr "Pakkefiler:"
  102. #: cmdline/apt-cache.cc:1485 cmdline/apt-cache.cc:1576
  103. msgid "Cache is out of sync, can't x-ref a package file"
  104. msgstr "Mellomlageret er ute av takt, kan ikkje x-referera ei pakkefil"
  105. #. Show any packages have explicit pins
  106. #: cmdline/apt-cache.cc:1499
  107. msgid "Pinned packages:"
  108. msgstr "Spikra pakkar:"
  109. #: cmdline/apt-cache.cc:1511 cmdline/apt-cache.cc:1556
  110. msgid "(not found)"
  111. msgstr "(ikkje funne)"
  112. #: cmdline/apt-cache.cc:1519
  113. msgid " Installed: "
  114. msgstr " Installert: "
  115. #: cmdline/apt-cache.cc:1520
  116. msgid " Candidate: "
  117. msgstr " Kandidat: "
  118. #: cmdline/apt-cache.cc:1538 cmdline/apt-cache.cc:1546
  119. msgid "(none)"
  120. msgstr "(ingen)"
  121. #: cmdline/apt-cache.cc:1553
  122. msgid " Package pin: "
  123. msgstr " Pakke spikra til: "
  124. #. Show the priority tables
  125. #: cmdline/apt-cache.cc:1562
  126. msgid " Version table:"
  127. msgstr " Versjonstabell:"
  128. #: cmdline/apt-cache.cc:1675 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:73
  129. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589
  130. #: cmdline/apt-get.cc:3122 cmdline/apt-mark.cc:264 cmdline/apt-sortpkgs.cc:144
  131. #, fuzzy, c-format
  132. msgid "%s %s for %s compiled on %s %s\n"
  133. msgstr "%s %s for %s %s kompilert på %s %s\n"
  134. #: cmdline/apt-cache.cc:1682
  135. #, fuzzy
  136. msgid ""
  137. "Usage: apt-cache [options] command\n"
  138. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  139. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  140. "\n"
  141. "apt-cache is a low-level tool used to query information\n"
  142. "from APT's binary cache files\n"
  143. "\n"
  144. "Commands:\n"
  145. " gencaches - Build both the package and source cache\n"
  146. " showpkg - Show some general information for a single package\n"
  147. " showsrc - Show source records\n"
  148. " stats - Show some basic statistics\n"
  149. " dump - Show the entire file in a terse form\n"
  150. " dumpavail - Print an available file to stdout\n"
  151. " unmet - Show unmet dependencies\n"
  152. " search - Search the package list for a regex pattern\n"
  153. " show - Show a readable record for the package\n"
  154. " depends - Show raw dependency information for a package\n"
  155. " rdepends - Show reverse dependency information for a package\n"
  156. " pkgnames - List the names of all packages in the system\n"
  157. " dotty - Generate package graphs for GraphViz\n"
  158. " xvcg - Generate package graphs for xvcg\n"
  159. " policy - Show policy settings\n"
  160. "\n"
  161. "Options:\n"
  162. " -h This help text.\n"
  163. " -p=? The package cache.\n"
  164. " -s=? The source cache.\n"
  165. " -q Disable progress indicator.\n"
  166. " -i Show only important deps for the unmet command.\n"
  167. " -c=? Read this configuration file\n"
  168. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  169. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  170. msgstr ""
  171. "Bruk: apt-cache [val] kommando\n"
  172. " apt-cache [val] add fil1 [fil2 ...]\n"
  173. " apt-cache [val] showpkg pakke1 [pakke2 ...]\n"
  174. " apt-cache [val] showsrc pakke1 [pakke2 ...]\n"
  175. "\n"
  176. "apt-cache er eit lågnivåverktøy som vert brukt til å handtera\n"
  177. "binærmellomlageret til APT, og til å henta informasjon frå det.\n"
  178. "\n"
  179. "Kommandoar:\n"
  180. " add - Legg ei fil til i kjeldelageret.\n"
  181. " gencaches - Bygg opp lagera for både pakkane og kjeldekoden.\n"
  182. " showpkg - Vis overordna informasjon om ein enkelt pakke.\n"
  183. " showsrc - Vis data om kjeldekoden.\n"
  184. " stats - Vis ein enkel statistikk.\n"
  185. " dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n"
  186. " dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n"
  187. " unmet - Vis krav som ikkje er oppfylte.\n"
  188. " search - Søk gjennom pakkelista etter eit regulært uttrykk.\n"
  189. " show - Vis ei oversikt over pakken.\n"
  190. " depends - Vis rå informasjon om krava til ein pakke.\n"
  191. " rdepends - Vis baklengs kravinformasjon for ein pakke\n"
  192. " pkgnames - Vis ei liste over alle pakkenamn.\n"
  193. " dotty - Lag pakkegrafar for GraphViz.\n"
  194. " xvcg - Lag pakkegrafar for xvcg\n"
  195. " policy - Vis regelinnstillingar.\n"
  196. "\n"
  197. "Val:\n"
  198. " -h Vis denne hjelpeteksten.\n"
  199. " -p=? Pakkelageret.\n"
  200. " -s=? Kjeldekodelageret.\n"
  201. " -q Ikkje vis framdriftsmålaren.\n"
  202. " -i Vis berre viktige krav for unmet-kommandoen.\n"
  203. " -c=? Les denne oppsettsfila.\n"
  204. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  205. "Du finn meir informasjon på manualsidene apt-cache(8) og apt.conf(5).\n"
  206. #: cmdline/apt-cdrom.cc:77
  207. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  208. msgstr ""
  209. #: cmdline/apt-cdrom.cc:92
  210. #, fuzzy
  211. msgid "Please insert a Disc in the drive and press enter"
  212. msgstr ""
  213. "Skifte av medum: Set inn plata merkt\n"
  214. " «%s»\n"
  215. "i stasjonen «%s» og trykk Enter.\n"
  216. #: cmdline/apt-cdrom.cc:127
  217. #, fuzzy, c-format
  218. msgid "Failed to mount '%s' to '%s'"
  219. msgstr "Klarte ikkje endra namnet på %s til %s"
  220. #: cmdline/apt-cdrom.cc:162
  221. msgid "Repeat this process for the rest of the CDs in your set."
  222. msgstr ""
  223. #: cmdline/apt-config.cc:44
  224. msgid "Arguments not in pairs"
  225. msgstr "Ikkje parvise argument"
  226. #: cmdline/apt-config.cc:79
  227. msgid ""
  228. "Usage: apt-config [options] command\n"
  229. "\n"
  230. "apt-config is a simple tool to read the APT config file\n"
  231. "\n"
  232. "Commands:\n"
  233. " shell - Shell mode\n"
  234. " dump - Show the configuration\n"
  235. "\n"
  236. "Options:\n"
  237. " -h This help text.\n"
  238. " -c=? Read this configuration file\n"
  239. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  240. msgstr ""
  241. "Bruk: apt-config [val] kommando\n"
  242. "\n"
  243. "apt-config er eit enkelt verktøy for å lesa oppsettsfila til APT.\n"
  244. "\n"
  245. "Kommandoar:\n"
  246. " shell - Skalmodus\n"
  247. " dump - Vis oppsettet\n"
  248. "\n"
  249. "Val:\n"
  250. " -h Vis denne hjelpeteksten.\n"
  251. " -c=? Les denne oppsettsfila.\n"
  252. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  253. #: cmdline/apt-extracttemplates.cc:98
  254. #, c-format
  255. msgid "%s not a valid DEB package."
  256. msgstr "%s er ingen gyldig DEB-pakke."
  257. #: cmdline/apt-extracttemplates.cc:232
  258. msgid ""
  259. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  260. "\n"
  261. "apt-extracttemplates is a tool to extract config and template info\n"
  262. "from debian packages\n"
  263. "\n"
  264. "Options:\n"
  265. " -h This help text\n"
  266. " -t Set the temp dir\n"
  267. " -c=? Read this configuration file\n"
  268. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  269. msgstr ""
  270. "Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
  271. "\n"
  272. "apt-extracttemplates er eit verktøy for å henta ut informasjon om\n"
  273. "oppsett og malar frå Debian-pakkar.\n"
  274. "\n"
  275. "Val:\n"
  276. " -h Vis denne hjelpeteksten\n"
  277. " -t Vel mellombels katalog\n"
  278. " -c=? Les denne innstillingsfila.\n"
  279. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  280. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1149
  281. #, c-format
  282. msgid "Unable to write to %s"
  283. msgstr "Klarte ikkje skriva til %s"
  284. #: cmdline/apt-extracttemplates.cc:309
  285. msgid "Cannot get debconf version. Is debconf installed?"
  286. msgstr "Finn ikkje debconf-versjonen. Er debconf installert?"
  287. #: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347
  288. msgid "Package extension list is too long"
  289. msgstr "Lista over pakkeutvidingar er for lang"
  290. #: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189
  291. #: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262
  292. #: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298
  293. #, c-format
  294. msgid "Error processing directory %s"
  295. msgstr "Feil ved lesing av katalogen %s"
  296. #: ftparchive/apt-ftparchive.cc:260
  297. msgid "Source extension list is too long"
  298. msgstr "Lista over kjeldeutvidingar er for lang"
  299. #: ftparchive/apt-ftparchive.cc:377
  300. msgid "Error writing header to contents file"
  301. msgstr "Feil ved skriving av topptekst til innhaldsfila"
  302. #: ftparchive/apt-ftparchive.cc:407
  303. #, c-format
  304. msgid "Error processing contents %s"
  305. msgstr "Feil ved lesing av %s"
  306. #: ftparchive/apt-ftparchive.cc:595
  307. #, fuzzy
  308. msgid ""
  309. "Usage: apt-ftparchive [options] command\n"
  310. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  311. " sources srcpath [overridefile [pathprefix]]\n"
  312. " contents path\n"
  313. " release path\n"
  314. " generate config [groups]\n"
  315. " clean config\n"
  316. "\n"
  317. "apt-ftparchive generates index files for Debian archives. It supports\n"
  318. "many styles of generation from fully automated to functional replacements\n"
  319. "for dpkg-scanpackages and dpkg-scansources\n"
  320. "\n"
  321. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  322. "Package file contains the contents of all the control fields from\n"
  323. "each package as well as the MD5 hash and filesize. An override file\n"
  324. "is supported to force the value of Priority and Section.\n"
  325. "\n"
  326. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  327. "The --source-override option can be used to specify a src override file\n"
  328. "\n"
  329. "The 'packages' and 'sources' command should be run in the root of the\n"
  330. "tree. BinaryPath should point to the base of the recursive search and \n"
  331. "override file should contain the override flags. Pathprefix is\n"
  332. "appended to the filename fields if present. Example usage from the \n"
  333. "Debian archive:\n"
  334. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  335. " dists/potato/main/binary-i386/Packages\n"
  336. "\n"
  337. "Options:\n"
  338. " -h This help text\n"
  339. " --md5 Control MD5 generation\n"
  340. " -s=? Source override file\n"
  341. " -q Quiet\n"
  342. " -d=? Select the optional caching database\n"
  343. " --no-delink Enable delinking debug mode\n"
  344. " --contents Control contents file generation\n"
  345. " -c=? Read this configuration file\n"
  346. " -o=? Set an arbitrary configuration option"
  347. msgstr ""
  348. "Bruk: apt-ftparchive [val] kommando\n"
  349. "Kommandoar: packages binærstig [overstyringsfil [stigprefiks]]\n"
  350. " sources kjeldesti [overstyringsfil [stiprefiks]]\n"
  351. " contents sti\n"
  352. " generate config [grupper]\n"
  353. " clean config\n"
  354. "\n"
  355. "apt-ftparchive opprettar indeksfiler for Debian-arkiv. Mange ulike\n"
  356. "måtar kan brukast, frå heilautomatiske til funksjonelle erstattingar\n"
  357. "for dpkg-scanpackages og dpkg-scansources.\n"
  358. "\n"
  359. "apt-ftparchive opprettar Package-filer frå eit tre med .debs-filer.\n"
  360. "Package-fila inneheld alle kontrollfelta frå kvar pakke i tillegg til\n"
  361. "MD5-nøkkel og filstorleik. Du kan bruka ei overstyringsfil for å tvinga\n"
  362. "gjennom verdiar for prioritet og kategori.\n"
  363. "\n"
  364. "apt-ftparchive kan på same måten oppretta Sources-filer frå eit tre\n"
  365. "med .dscs-filer. Du kan bruka ei overstyringsfil med --source-override.\n"
  366. "\n"
  367. "Kommandoane «packages» og «sources» skal køyrast i rota av katalogtreet.\n"
  368. "Binærstien skal peika til toppkatalogen i det rekursive søket, og\n"
  369. "overstyringsfila skal innehalda innstillingar for overstyring.\n"
  370. "Stiprefikset vert lagt til filnamnfelta dersom det er oppgjeve. Her er\n"
  371. "eit døme på bruk i Debian-arkivet:\n"
  372. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  373. " dists/potato/main/binary-i386/Packages\n"
  374. "\n"
  375. "Val:\n"
  376. " -h Vis denne hjelpeteksten.\n"
  377. " --md5 Styrer MD5-genereringa.\n"
  378. " -s=? Overstyringsfil for kjeldekode.\n"
  379. " -q Stille.\n"
  380. " -d=? Vel ein anna mellomlagerdatabase.\n"
  381. " --no-delink Bruk avlusingsmodus med delinking.\n"
  382. " --contents Styrer opprettinga av innhaldsfila.\n"
  383. " -c=? Les denne oppsettsfila.\n"
  384. " -o=? Set ei vilkårleg innstilling."
  385. #: ftparchive/apt-ftparchive.cc:801
  386. msgid "No selections matched"
  387. msgstr "Ingen utval passa"
  388. #: ftparchive/apt-ftparchive.cc:879
  389. #, c-format
  390. msgid "Some files are missing in the package file group `%s'"
  391. msgstr "Enkelte filer manglar i pakkefilgruppa %s"
  392. #: ftparchive/cachedb.cc:43
  393. #, c-format
  394. msgid "DB was corrupted, file renamed to %s.old"
  395. msgstr "Databasen er øydelagd. Filnamnet er endra til %s.old"
  396. #: ftparchive/cachedb.cc:61
  397. #, c-format
  398. msgid "DB is old, attempting to upgrade %s"
  399. msgstr "DB er for gammal, forsøkjer å oppgradere %s"
  400. #: ftparchive/cachedb.cc:72
  401. msgid ""
  402. "DB format is invalid. If you upgraded from an older version of apt, please "
  403. "remove and re-create the database."
  404. msgstr ""
  405. #: ftparchive/cachedb.cc:77
  406. #, c-format
  407. msgid "Unable to open DB file %s: %s"
  408. msgstr "Klarte ikkje opna DB-fila %s: %s"
  409. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  410. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  411. #, c-format
  412. msgid "Failed to stat %s"
  413. msgstr "Klarte ikkje få status til %s"
  414. #: ftparchive/cachedb.cc:242
  415. msgid "Archive has no control record"
  416. msgstr "Arkivet har ingen kontrollpost"
  417. #: ftparchive/cachedb.cc:448
  418. msgid "Unable to get a cursor"
  419. msgstr "Klarte ikkje få peikar"
  420. #: ftparchive/writer.cc:78
  421. #, c-format
  422. msgid "W: Unable to read directory %s\n"
  423. msgstr "Å: Klarte ikkje lesa katalogen %s\n"
  424. #: ftparchive/writer.cc:83
  425. #, c-format
  426. msgid "W: Unable to stat %s\n"
  427. msgstr "Å: Klarte ikkje få status til %s\n"
  428. #: ftparchive/writer.cc:139
  429. msgid "E: "
  430. msgstr "F: "
  431. #: ftparchive/writer.cc:141
  432. msgid "W: "
  433. msgstr "Å: "
  434. #: ftparchive/writer.cc:148
  435. msgid "E: Errors apply to file "
  436. msgstr "F: Det er feil ved fila "
  437. #: ftparchive/writer.cc:166 ftparchive/writer.cc:198
  438. #, c-format
  439. msgid "Failed to resolve %s"
  440. msgstr "Klarte ikkje slå opp %s"
  441. #: ftparchive/writer.cc:179
  442. msgid "Tree walking failed"
  443. msgstr "Treklatring mislukkast"
  444. #: ftparchive/writer.cc:206
  445. #, c-format
  446. msgid "Failed to open %s"
  447. msgstr "Klarte ikkje opna %s"
  448. #: ftparchive/writer.cc:265
  449. #, c-format
  450. msgid " DeLink %s [%s]\n"
  451. msgstr " DeLink %s [%s]\n"
  452. #: ftparchive/writer.cc:273
  453. #, c-format
  454. msgid "Failed to readlink %s"
  455. msgstr "Klarte ikkje lesa lenkja %s"
  456. #: ftparchive/writer.cc:277
  457. #, c-format
  458. msgid "Failed to unlink %s"
  459. msgstr "Klarte ikkje oppheva lenkja %s"
  460. #: ftparchive/writer.cc:284
  461. #, c-format
  462. msgid "*** Failed to link %s to %s"
  463. msgstr "*** Klarte ikkje lenkja %s til %s"
  464. #: ftparchive/writer.cc:294
  465. #, c-format
  466. msgid " DeLink limit of %sB hit.\n"
  467. msgstr " DeLink-grensa på %sB er nådd.\n"
  468. #: ftparchive/writer.cc:398
  469. msgid "Archive had no package field"
  470. msgstr "Arkivet har ikkje noko pakkefelt"
  471. #: ftparchive/writer.cc:406 ftparchive/writer.cc:703
  472. #, c-format
  473. msgid " %s has no override entry\n"
  474. msgstr " %s har inga overstyringsoppføring\n"
  475. #: ftparchive/writer.cc:472 ftparchive/writer.cc:811
  476. #, c-format
  477. msgid " %s maintainer is %s not %s\n"
  478. msgstr " %s-vedlikehaldaren er %s, ikkje %s\n"
  479. #: ftparchive/writer.cc:713
  480. #, fuzzy, c-format
  481. msgid " %s has no source override entry\n"
  482. msgstr " %s har inga overstyringsoppføring\n"
  483. #: ftparchive/writer.cc:717
  484. #, fuzzy, c-format
  485. msgid " %s has no binary override entry either\n"
  486. msgstr " %s har inga overstyringsoppføring\n"
  487. #: ftparchive/contents.cc:337 ftparchive/contents.cc:368
  488. msgid "realloc - Failed to allocate memory"
  489. msgstr "realloc - Klarte ikkje tildela minne"
  490. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  491. #, c-format
  492. msgid "Unable to open %s"
  493. msgstr "Klarte ikkje opna %s"
  494. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  495. #, c-format
  496. msgid "Malformed override %s line %lu #1"
  497. msgstr "Misforma overstyring %s linje %lu #1"
  498. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  499. #, c-format
  500. msgid "Malformed override %s line %lu #2"
  501. msgstr "Misforma overstyring %s linje %lu #2"
  502. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  503. #, c-format
  504. msgid "Malformed override %s line %lu #3"
  505. msgstr "Misforma overstyring %s linje %lu #3"
  506. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  507. #, c-format
  508. msgid "Failed to read the override file %s"
  509. msgstr "Klarte ikkje lesa overstyringsfila %s"
  510. #: ftparchive/multicompress.cc:67
  511. #, c-format
  512. msgid "Unknown compression algorithm '%s'"
  513. msgstr "Ukjend komprimeringsalgoritme %s"
  514. #: ftparchive/multicompress.cc:97
  515. #, c-format
  516. msgid "Compressed output %s needs a compression set"
  517. msgstr "Komprimert utdata %s treng eit komprimeringssett"
  518. #: ftparchive/multicompress.cc:165 methods/rsh.cc:91
  519. msgid "Failed to create IPC pipe to subprocess"
  520. msgstr "Klarte ikkje oppretta IPC-røyr til underprosessen"
  521. #: ftparchive/multicompress.cc:191
  522. msgid "Failed to create FILE*"
  523. msgstr "Klarte ikkje oppretta FILE*"
  524. #: ftparchive/multicompress.cc:194
  525. msgid "Failed to fork"
  526. msgstr "Klarte ikkje gafla"
  527. #: ftparchive/multicompress.cc:208
  528. msgid "Compress child"
  529. msgstr "Komprimer barn"
  530. #: ftparchive/multicompress.cc:231
  531. #, c-format
  532. msgid "Internal error, failed to create %s"
  533. msgstr "Intern feil, klarte ikkje oppretta %s"
  534. #: ftparchive/multicompress.cc:282
  535. msgid "Failed to create subprocess IPC"
  536. msgstr "Klarte ikkje oppretta underprosessen IPC"
  537. #: ftparchive/multicompress.cc:319
  538. msgid "Failed to exec compressor "
  539. msgstr "Klarte ikkje køyra komprimeringa "
  540. #: ftparchive/multicompress.cc:358
  541. msgid "decompressor"
  542. msgstr "dekomprimering"
  543. #: ftparchive/multicompress.cc:401
  544. msgid "IO to subprocess/file failed"
  545. msgstr "Klarte ikkje kommunisera med underprosess/fil"
  546. #: ftparchive/multicompress.cc:453
  547. msgid "Failed to read while computing MD5"
  548. msgstr "Klarte ikkje lesa under utrekning av MD5"
  549. #: ftparchive/multicompress.cc:470
  550. #, c-format
  551. msgid "Problem unlinking %s"
  552. msgstr "Problem ved oppheving av lenkje til %s"
  553. #: ftparchive/multicompress.cc:485 apt-inst/extract.cc:185
  554. #, c-format
  555. msgid "Failed to rename %s to %s"
  556. msgstr "Klarte ikkje endra namnet på %s til %s"
  557. #: cmdline/apt-get.cc:135
  558. msgid "Y"
  559. msgstr "J"
  560. #: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29
  561. #, c-format
  562. msgid "Regex compilation error - %s"
  563. msgstr "Regex-kompileringsfeil - %s"
  564. #: cmdline/apt-get.cc:252
  565. msgid "The following packages have unmet dependencies:"
  566. msgstr "Følgjande pakkar har krav som ikkje er oppfylte:"
  567. #: cmdline/apt-get.cc:342
  568. #, c-format
  569. msgid "but %s is installed"
  570. msgstr "men %s er installert"
  571. #: cmdline/apt-get.cc:344
  572. #, c-format
  573. msgid "but %s is to be installed"
  574. msgstr "men %s skal installerast"
  575. #: cmdline/apt-get.cc:351
  576. msgid "but it is not installable"
  577. msgstr "men lèt seg ikkje installera"
  578. #: cmdline/apt-get.cc:353
  579. msgid "but it is a virtual package"
  580. msgstr "men er ein virtuell pakke"
  581. #: cmdline/apt-get.cc:356
  582. msgid "but it is not installed"
  583. msgstr "men er ikkje installert"
  584. #: cmdline/apt-get.cc:356
  585. msgid "but it is not going to be installed"
  586. msgstr "men skal ikkje installerast"
  587. #: cmdline/apt-get.cc:361
  588. msgid " or"
  589. msgstr " eller"
  590. #: cmdline/apt-get.cc:390
  591. msgid "The following NEW packages will be installed:"
  592. msgstr "Dei følgjande NYE pakkane vil verta installerte:"
  593. #: cmdline/apt-get.cc:416
  594. msgid "The following packages will be REMOVED:"
  595. msgstr "Dei følgjande pakkane vil verta FJERNA:"
  596. #: cmdline/apt-get.cc:438
  597. msgid "The following packages have been kept back:"
  598. msgstr "Dei følgjande pakkane er haldne tilbake:"
  599. #: cmdline/apt-get.cc:459
  600. msgid "The following packages will be upgraded:"
  601. msgstr "Dei følgjande pakkane vil verta oppgraderte:"
  602. #: cmdline/apt-get.cc:480
  603. msgid "The following packages will be DOWNGRADED:"
  604. msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:"
  605. #: cmdline/apt-get.cc:500
  606. msgid "The following held packages will be changed:"
  607. msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:"
  608. #: cmdline/apt-get.cc:555
  609. #, c-format
  610. msgid "%s (due to %s) "
  611. msgstr "%s (fordi %s) "
  612. #: cmdline/apt-get.cc:563
  613. #, fuzzy
  614. msgid ""
  615. "WARNING: The following essential packages will be removed.\n"
  616. "This should NOT be done unless you know exactly what you are doing!"
  617. msgstr ""
  618. "ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n"
  619. "Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!"
  620. #: cmdline/apt-get.cc:594
  621. #, c-format
  622. msgid "%lu upgraded, %lu newly installed, "
  623. msgstr "%lu oppgraderte, %lu nyleg installerte, "
  624. #: cmdline/apt-get.cc:598
  625. #, c-format
  626. msgid "%lu reinstalled, "
  627. msgstr "%lu installerte på nytt, "
  628. #: cmdline/apt-get.cc:600
  629. #, c-format
  630. msgid "%lu downgraded, "
  631. msgstr "%lu nedgraderte, "
  632. #: cmdline/apt-get.cc:602
  633. #, c-format
  634. msgid "%lu to remove and %lu not upgraded.\n"
  635. msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n"
  636. #: cmdline/apt-get.cc:606
  637. #, c-format
  638. msgid "%lu not fully installed or removed.\n"
  639. msgstr "%lu ikkje fullstendig installerte eller fjerna.\n"
  640. #: cmdline/apt-get.cc:628
  641. #, fuzzy, c-format
  642. msgid "Note, selecting '%s' for task '%s'\n"
  643. msgstr "Merk, vel %s i staden for regex «%s»\n"
  644. #: cmdline/apt-get.cc:634
  645. #, fuzzy, c-format
  646. msgid "Note, selecting '%s' for regex '%s'\n"
  647. msgstr "Merk, vel %s i staden for regex «%s»\n"
  648. #: cmdline/apt-get.cc:651
  649. #, c-format
  650. msgid "Package %s is a virtual package provided by:\n"
  651. msgstr "Pakken %s er ein virtuell pakke, tilbydd av:\n"
  652. #: cmdline/apt-get.cc:662
  653. msgid " [Installed]"
  654. msgstr " [Installert]"
  655. #: cmdline/apt-get.cc:671
  656. #, fuzzy
  657. msgid " [Not candidate version]"
  658. msgstr "Kandidatversjonar"
  659. #: cmdline/apt-get.cc:673
  660. msgid "You should explicitly select one to install."
  661. msgstr "Du må velja ein som skal installerast."
  662. #: cmdline/apt-get.cc:676
  663. #, c-format
  664. msgid ""
  665. "Package %s is not available, but is referred to by another package.\n"
  666. "This may mean that the package is missing, has been obsoleted, or\n"
  667. "is only available from another source\n"
  668. msgstr ""
  669. "Det finst ingen tilgjengeleg versjon av pakken %s, men han er nemnt\n"
  670. "av ein annan pakke. Dette tyder at pakket manglar, er gjort overflødig\n"
  671. "eller er berre tilgjengeleg frå ei anna kjelde\n"
  672. #: cmdline/apt-get.cc:694
  673. msgid "However the following packages replace it:"
  674. msgstr "Dei følgjande pakkane kan brukast i staden:"
  675. #: cmdline/apt-get.cc:706
  676. #, fuzzy, c-format
  677. msgid "Package '%s' has no installation candidate"
  678. msgstr "Det finst ingen installasjonskandidat for pakken %s"
  679. #: cmdline/apt-get.cc:717
  680. #, c-format
  681. msgid "Virtual packages like '%s' can't be removed\n"
  682. msgstr ""
  683. #: cmdline/apt-get.cc:748
  684. #, fuzzy, c-format
  685. msgid "Note, selecting '%s' instead of '%s'\n"
  686. msgstr "Merk, vel %s i staden for %s\n"
  687. #: cmdline/apt-get.cc:778
  688. #, c-format
  689. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  690. msgstr ""
  691. "Hoppar over %s, for den er installert frå før og ikkje sett til "
  692. "oppgradering.\n"
  693. #: cmdline/apt-get.cc:782
  694. #, fuzzy, c-format
  695. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  696. msgstr ""
  697. "Hoppar over %s, for den er installert frå før og ikkje sett til "
  698. "oppgradering.\n"
  699. #: cmdline/apt-get.cc:794
  700. #, c-format
  701. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  702. msgstr "%s kan ikkje installerast på nytt, for pakken kan ikkje lastast ned.\n"
  703. #: cmdline/apt-get.cc:799
  704. #, c-format
  705. msgid "%s is already the newest version.\n"
  706. msgstr "Den nyaste versjonen av %s er installert frå før.\n"
  707. #: cmdline/apt-get.cc:818 cmdline/apt-get.cc:2080 cmdline/apt-mark.cc:59
  708. #, fuzzy, c-format
  709. msgid "%s set to manually installed.\n"
  710. msgstr "men %s skal installerast"
  711. #: cmdline/apt-get.cc:844
  712. #, fuzzy, c-format
  713. msgid "Selected version '%s' (%s) for '%s'\n"
  714. msgstr "Vald versjon %s (%s) for %s\n"
  715. #: cmdline/apt-get.cc:849
  716. #, fuzzy, c-format
  717. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  718. msgstr "Vald versjon %s (%s) for %s\n"
  719. #: cmdline/apt-get.cc:893
  720. #, c-format
  721. msgid "Package %s is not installed, so not removed\n"
  722. msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
  723. #: cmdline/apt-get.cc:971
  724. msgid "Correcting dependencies..."
  725. msgstr "Rettar på krav ..."
  726. #: cmdline/apt-get.cc:974
  727. msgid " failed."
  728. msgstr " mislukkast."
  729. #: cmdline/apt-get.cc:977
  730. msgid "Unable to correct dependencies"
  731. msgstr "Klarte ikkje retta på krav"
  732. #: cmdline/apt-get.cc:980
  733. msgid "Unable to minimize the upgrade set"
  734. msgstr "Klarte ikkje minimera oppgraderingsmengda"
  735. #: cmdline/apt-get.cc:982
  736. msgid " Done"
  737. msgstr " Ferdig"
  738. #: cmdline/apt-get.cc:986
  739. msgid "You might want to run 'apt-get -f install' to correct these."
  740. msgstr ""
  741. "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
  742. #: cmdline/apt-get.cc:989
  743. msgid "Unmet dependencies. Try using -f."
  744. msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»."
  745. #: cmdline/apt-get.cc:1014
  746. msgid "WARNING: The following packages cannot be authenticated!"
  747. msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane."
  748. #: cmdline/apt-get.cc:1018
  749. msgid "Authentication warning overridden.\n"
  750. msgstr ""
  751. #: cmdline/apt-get.cc:1025
  752. msgid "Install these packages without verification [y/N]? "
  753. msgstr "Installer desse pakkane utan verifikasjon [j/N]? "
  754. #: cmdline/apt-get.cc:1027
  755. msgid "Some packages could not be authenticated"
  756. msgstr "Nokre pakkar kunne ikkje bli autentisert"
  757. #: cmdline/apt-get.cc:1036 cmdline/apt-get.cc:1197
  758. msgid "There are problems and -y was used without --force-yes"
  759. msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»"
  760. #: cmdline/apt-get.cc:1077
  761. msgid "Internal error, InstallPackages was called with broken packages!"
  762. msgstr ""
  763. #: cmdline/apt-get.cc:1086
  764. msgid "Packages need to be removed but remove is disabled."
  765. msgstr "Nokre pakkar må fjernast, men fjerning er slått av."
  766. #: cmdline/apt-get.cc:1097
  767. #, fuzzy
  768. msgid "Internal error, Ordering didn't finish"
  769. msgstr "Intern feil ved tilleggjing av avleiing"
  770. #: cmdline/apt-get.cc:1135
  771. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  772. msgstr ""
  773. #. TRANSLATOR: The required space between number and unit is already included
  774. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  775. #: cmdline/apt-get.cc:1142
  776. #, c-format
  777. msgid "Need to get %sB/%sB of archives.\n"
  778. msgstr "Må henta %sB/%sB med arkiv.\n"
  779. #. TRANSLATOR: The required space between number and unit is already included
  780. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  781. #: cmdline/apt-get.cc:1147
  782. #, c-format
  783. msgid "Need to get %sB of archives.\n"
  784. msgstr "Må henta %sB med arkiv.\n"
  785. #. TRANSLATOR: The required space between number and unit is already included
  786. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  787. #: cmdline/apt-get.cc:1154
  788. #, fuzzy, c-format
  789. msgid "After this operation, %sB of additional disk space will be used.\n"
  790. msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n"
  791. #. TRANSLATOR: The required space between number and unit is already included
  792. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  793. #: cmdline/apt-get.cc:1159
  794. #, fuzzy, c-format
  795. msgid "After this operation, %sB disk space will be freed.\n"
  796. msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n"
  797. #: cmdline/apt-get.cc:1174 cmdline/apt-get.cc:1177 cmdline/apt-get.cc:2492
  798. #: cmdline/apt-get.cc:2495
  799. #, fuzzy, c-format
  800. msgid "Couldn't determine free space in %s"
  801. msgstr "Du har ikkje nok ledig plass i %s"
  802. #: cmdline/apt-get.cc:1187
  803. #, c-format
  804. msgid "You don't have enough free space in %s."
  805. msgstr "Du har ikkje nok ledig plass i %s."
  806. #: cmdline/apt-get.cc:1203 cmdline/apt-get.cc:1223
  807. msgid "Trivial Only specified but this is not a trivial operation."
  808. msgstr ""
  809. "«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling."
  810. #: cmdline/apt-get.cc:1205
  811. msgid "Yes, do as I say!"
  812. msgstr "Ja, gjer som eg seier!"
  813. #: cmdline/apt-get.cc:1207
  814. #, fuzzy, c-format
  815. msgid ""
  816. "You are about to do something potentially harmful.\n"
  817. "To continue type in the phrase '%s'\n"
  818. " ?] "
  819. msgstr ""
  820. "Du er i ferd med å utføra ei handling som kan vera skadeleg.\n"
  821. "For å halda fram, må du skriva nøyaktig «%s».\n"
  822. " ?] "
  823. #: cmdline/apt-get.cc:1213 cmdline/apt-get.cc:1232
  824. msgid "Abort."
  825. msgstr "Avbryt."
  826. #: cmdline/apt-get.cc:1228
  827. msgid "Do you want to continue [Y/n]? "
  828. msgstr "Vil du halda fram [J/n]? "
  829. #: cmdline/apt-get.cc:1300 cmdline/apt-get.cc:2557 apt-pkg/algorithms.cc:1410
  830. #, c-format
  831. msgid "Failed to fetch %s %s\n"
  832. msgstr "Klarte ikkje henta %s %s\n"
  833. #: cmdline/apt-get.cc:1318
  834. msgid "Some files failed to download"
  835. msgstr "Klarte ikkje henta nokre av filene"
  836. #: cmdline/apt-get.cc:1319 cmdline/apt-get.cc:2569
  837. msgid "Download complete and in download only mode"
  838. msgstr "Nedlastinga er ferdig i nedlastingsmodus"
  839. #: cmdline/apt-get.cc:1325
  840. msgid ""
  841. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  842. "missing?"
  843. msgstr ""
  844. "Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller "
  845. "«--fix-missing»."
  846. #: cmdline/apt-get.cc:1329
  847. msgid "--fix-missing and media swapping is not currently supported"
  848. msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida"
  849. #: cmdline/apt-get.cc:1334
  850. msgid "Unable to correct missing packages."
  851. msgstr "Klarte ikkje retta opp manglande pakkar."
  852. #: cmdline/apt-get.cc:1335
  853. msgid "Aborting install."
  854. msgstr "Avbryt installasjon."
  855. #: cmdline/apt-get.cc:1363
  856. msgid ""
  857. "The following package disappeared from your system as\n"
  858. "all files have been overwritten by other packages:"
  859. msgid_plural ""
  860. "The following packages disappeared from your system as\n"
  861. "all files have been overwritten by other packages:"
  862. msgstr[0] ""
  863. msgstr[1] ""
  864. #: cmdline/apt-get.cc:1367
  865. msgid "Note: This is done automatic and on purpose by dpkg."
  866. msgstr ""
  867. #: cmdline/apt-get.cc:1497
  868. #, c-format
  869. msgid "Ignore unavailable target release '%s' of package '%s'"
  870. msgstr ""
  871. #: cmdline/apt-get.cc:1529
  872. #, fuzzy, c-format
  873. msgid "Picking '%s' as source package instead of '%s'\n"
  874. msgstr "Klarte ikkje få status på kjeldepakkelista %s"
  875. #. if (VerTag.empty() == false && Last == 0)
  876. #: cmdline/apt-get.cc:1567
  877. #, c-format
  878. msgid "Ignore unavailable version '%s' of package '%s'"
  879. msgstr ""
  880. #: cmdline/apt-get.cc:1583
  881. msgid "The update command takes no arguments"
  882. msgstr "Oppdateringskommandoen tek ingen argument"
  883. #: cmdline/apt-get.cc:1645
  884. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  885. msgstr ""
  886. #: cmdline/apt-get.cc:1740
  887. msgid ""
  888. "Hmm, seems like the AutoRemover destroyed something which really\n"
  889. "shouldn't happen. Please file a bug report against apt."
  890. msgstr ""
  891. #.
  892. #. if (Packages == 1)
  893. #. {
  894. #. c1out << endl;
  895. #. c1out <<
  896. #. _("Since you only requested a single operation it is extremely likely that\n"
  897. #. "the package is simply not installable and a bug report against\n"
  898. #. "that package should be filed.") << endl;
  899. #. }
  900. #.
  901. #: cmdline/apt-get.cc:1743 cmdline/apt-get.cc:1913
  902. msgid "The following information may help to resolve the situation:"
  903. msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:"
  904. #: cmdline/apt-get.cc:1747
  905. #, fuzzy
  906. msgid "Internal Error, AutoRemover broke stuff"
  907. msgstr "Intern feil. AllUpgrade øydelagde noko"
  908. #: cmdline/apt-get.cc:1754
  909. #, fuzzy
  910. msgid ""
  911. "The following package was automatically installed and is no longer required:"
  912. msgid_plural ""
  913. "The following packages were automatically installed and are no longer "
  914. "required:"
  915. msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:"
  916. msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:"
  917. #: cmdline/apt-get.cc:1758
  918. #, fuzzy, c-format
  919. msgid "%lu package was automatically installed and is no longer required.\n"
  920. msgid_plural ""
  921. "%lu packages were automatically installed and are no longer required.\n"
  922. msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:"
  923. msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:"
  924. #: cmdline/apt-get.cc:1760
  925. msgid "Use 'apt-get autoremove' to remove them."
  926. msgstr ""
  927. #: cmdline/apt-get.cc:1779
  928. msgid "Internal error, AllUpgrade broke stuff"
  929. msgstr "Intern feil. AllUpgrade øydelagde noko"
  930. #: cmdline/apt-get.cc:1878
  931. msgid "You might want to run 'apt-get -f install' to correct these:"
  932. msgstr ""
  933. "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
  934. #: cmdline/apt-get.cc:1882
  935. msgid ""
  936. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  937. "solution)."
  938. msgstr ""
  939. "Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja "
  940. "ei løysing)."
  941. #: cmdline/apt-get.cc:1898
  942. msgid ""
  943. "Some packages could not be installed. This may mean that you have\n"
  944. "requested an impossible situation or if you are using the unstable\n"
  945. "distribution that some required packages have not yet been created\n"
  946. "or been moved out of Incoming."
  947. msgstr ""
  948. "Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n"
  949. "valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n"
  950. "distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n"
  951. "er laga enno eller at dei framleis ligg i «Incoming»."
  952. #: cmdline/apt-get.cc:1916
  953. msgid "Broken packages"
  954. msgstr "Øydelagde pakkar"
  955. #: cmdline/apt-get.cc:1942
  956. msgid "The following extra packages will be installed:"
  957. msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
  958. #: cmdline/apt-get.cc:2032
  959. msgid "Suggested packages:"
  960. msgstr "Føreslåtte pakkar:"
  961. #: cmdline/apt-get.cc:2033
  962. msgid "Recommended packages:"
  963. msgstr "Tilrådde pakkar"
  964. #: cmdline/apt-get.cc:2075
  965. #, c-format
  966. msgid "Couldn't find package %s"
  967. msgstr "Fann ikkje pakken %s"
  968. #: cmdline/apt-get.cc:2082 cmdline/apt-mark.cc:61
  969. #, fuzzy, c-format
  970. msgid "%s set to automatically installed.\n"
  971. msgstr "men %s skal installerast"
  972. #: cmdline/apt-get.cc:2090 cmdline/apt-mark.cc:105
  973. msgid ""
  974. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  975. "instead."
  976. msgstr ""
  977. #: cmdline/apt-get.cc:2106
  978. msgid "Calculating upgrade... "
  979. msgstr "Reknar ut oppgradering ... "
  980. #: cmdline/apt-get.cc:2109 methods/ftp.cc:707 methods/connect.cc:111
  981. msgid "Failed"
  982. msgstr "Mislukkast"
  983. #: cmdline/apt-get.cc:2114
  984. msgid "Done"
  985. msgstr "Ferdig"
  986. #: cmdline/apt-get.cc:2181 cmdline/apt-get.cc:2189
  987. #, fuzzy
  988. msgid "Internal error, problem resolver broke stuff"
  989. msgstr "Intern feil. AllUpgrade øydelagde noko"
  990. #: cmdline/apt-get.cc:2213 cmdline/apt-get.cc:2246
  991. msgid "Unable to lock the download directory"
  992. msgstr "Klarte ikkje låsa nedlastingskatalogen"
  993. #: cmdline/apt-get.cc:2297
  994. #, c-format
  995. msgid "Downloading %s %s"
  996. msgstr ""
  997. #: cmdline/apt-get.cc:2353
  998. msgid "Must specify at least one package to fetch source for"
  999. msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for"
  1000. #: cmdline/apt-get.cc:2394 cmdline/apt-get.cc:2690
  1001. #, c-format
  1002. msgid "Unable to find a source package for %s"
  1003. msgstr "Finn ingen kjeldepakke for %s"
  1004. #: cmdline/apt-get.cc:2411
  1005. #, c-format
  1006. msgid ""
  1007. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  1008. "%s\n"
  1009. msgstr ""
  1010. #: cmdline/apt-get.cc:2416
  1011. #, c-format
  1012. msgid ""
  1013. "Please use:\n"
  1014. "bzr get %s\n"
  1015. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  1016. msgstr ""
  1017. #: cmdline/apt-get.cc:2469
  1018. #, fuzzy, c-format
  1019. msgid "Skipping already downloaded file '%s'\n"
  1020. msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
  1021. #: cmdline/apt-get.cc:2506
  1022. #, c-format
  1023. msgid "You don't have enough free space in %s"
  1024. msgstr "Du har ikkje nok ledig plass i %s"
  1025. #. TRANSLATOR: The required space between number and unit is already included
  1026. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1027. #: cmdline/apt-get.cc:2515
  1028. #, c-format
  1029. msgid "Need to get %sB/%sB of source archives.\n"
  1030. msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n"
  1031. #. TRANSLATOR: The required space between number and unit is already included
  1032. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1033. #: cmdline/apt-get.cc:2520
  1034. #, c-format
  1035. msgid "Need to get %sB of source archives.\n"
  1036. msgstr "Må henta %sB med kjeldekodearkiv.\n"
  1037. #: cmdline/apt-get.cc:2526
  1038. #, c-format
  1039. msgid "Fetch source %s\n"
  1040. msgstr "Hent kjeldekode %s\n"
  1041. #: cmdline/apt-get.cc:2564
  1042. msgid "Failed to fetch some archives."
  1043. msgstr "Klarte ikkje henta nokre av arkiva."
  1044. #: cmdline/apt-get.cc:2595
  1045. #, c-format
  1046. msgid "Skipping unpack of already unpacked source in %s\n"
  1047. msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
  1048. #: cmdline/apt-get.cc:2607
  1049. #, c-format
  1050. msgid "Unpack command '%s' failed.\n"
  1051. msgstr "Utpakkingskommandoen «%s» mislukkast.\n"
  1052. #: cmdline/apt-get.cc:2608
  1053. #, c-format
  1054. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1055. msgstr ""
  1056. #: cmdline/apt-get.cc:2625
  1057. #, c-format
  1058. msgid "Build command '%s' failed.\n"
  1059. msgstr "Byggjekommandoen «%s» mislukkast.\n"
  1060. #: cmdline/apt-get.cc:2645
  1061. msgid "Child process failed"
  1062. msgstr "Barneprosessen mislukkast"
  1063. #: cmdline/apt-get.cc:2664
  1064. msgid "Must specify at least one package to check builddeps for"
  1065. msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for"
  1066. #: cmdline/apt-get.cc:2695
  1067. #, c-format
  1068. msgid "Unable to get build-dependency information for %s"
  1069. msgstr "Klarte ikkje henta byggjekrav for %s"
  1070. #: cmdline/apt-get.cc:2715
  1071. #, c-format
  1072. msgid "%s has no build depends.\n"
  1073. msgstr "%s har ingen byggjekrav.\n"
  1074. #: cmdline/apt-get.cc:2766
  1075. #, c-format
  1076. msgid ""
  1077. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1078. "found"
  1079. msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst"
  1080. #: cmdline/apt-get.cc:2819
  1081. #, c-format
  1082. msgid ""
  1083. "%s dependency for %s cannot be satisfied because no available versions of "
  1084. "package %s can satisfy version requirements"
  1085. msgstr ""
  1086. "Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon "
  1087. "tilgjengelege versjonar av pakken %s som oppfyller versjonskrava"
  1088. #: cmdline/apt-get.cc:2855
  1089. #, c-format
  1090. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1091. msgstr ""
  1092. "Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny"
  1093. #: cmdline/apt-get.cc:2882
  1094. #, c-format
  1095. msgid "Failed to satisfy %s dependency for %s: %s"
  1096. msgstr "Klarte ikkje oppfylla kravet %s for %s: %s"
  1097. #: cmdline/apt-get.cc:2898
  1098. #, c-format
  1099. msgid "Build-dependencies for %s could not be satisfied."
  1100. msgstr "Byggjekrav for %s kunne ikkje tilfredstillast."
  1101. #: cmdline/apt-get.cc:2903
  1102. msgid "Failed to process build dependencies"
  1103. msgstr "Klarte ikkje behandla byggjekrava"
  1104. #: cmdline/apt-get.cc:2996 cmdline/apt-get.cc:3008
  1105. #, fuzzy, c-format
  1106. msgid "Changelog for %s (%s)"
  1107. msgstr "Koplar til %s (%s)"
  1108. #: cmdline/apt-get.cc:3127
  1109. msgid "Supported modules:"
  1110. msgstr "Støtta modular:"
  1111. #: cmdline/apt-get.cc:3168
  1112. #, fuzzy
  1113. msgid ""
  1114. "Usage: apt-get [options] command\n"
  1115. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1116. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1117. "\n"
  1118. "apt-get is a simple command line interface for downloading and\n"
  1119. "installing packages. The most frequently used commands are update\n"
  1120. "and install.\n"
  1121. "\n"
  1122. "Commands:\n"
  1123. " update - Retrieve new lists of packages\n"
  1124. " upgrade - Perform an upgrade\n"
  1125. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1126. " remove - Remove packages\n"
  1127. " autoremove - Remove automatically all unused packages\n"
  1128. " purge - Remove packages and config files\n"
  1129. " source - Download source archives\n"
  1130. " build-dep - Configure build-dependencies for source packages\n"
  1131. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1132. " dselect-upgrade - Follow dselect selections\n"
  1133. " clean - Erase downloaded archive files\n"
  1134. " autoclean - Erase old downloaded archive files\n"
  1135. " check - Verify that there are no broken dependencies\n"
  1136. " changelog - Download and display the changelog for the given package\n"
  1137. " download - Download the binary package into the current directory\n"
  1138. "\n"
  1139. "Options:\n"
  1140. " -h This help text.\n"
  1141. " -q Loggable output - no progress indicator\n"
  1142. " -qq No output except for errors\n"
  1143. " -d Download only - do NOT install or unpack archives\n"
  1144. " -s No-act. Perform ordering simulation\n"
  1145. " -y Assume Yes to all queries and do not prompt\n"
  1146. " -f Attempt to correct a system with broken dependencies in place\n"
  1147. " -m Attempt to continue if archives are unlocatable\n"
  1148. " -u Show a list of upgraded packages as well\n"
  1149. " -b Build the source package after fetching it\n"
  1150. " -V Show verbose version numbers\n"
  1151. " -c=? Read this configuration file\n"
  1152. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1153. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1154. "pages for more information and options.\n"
  1155. " This APT has Super Cow Powers.\n"
  1156. msgstr ""
  1157. "Bruk: apt-get [val] kommando\n"
  1158. " apt-get [val] install|remove pakke1 [pakke2 ...]\n"
  1159. " apt-get [val] source pakke1 [pakke2 ...]\n"
  1160. "\n"
  1161. "apt-get er eit enkelt grensesnitt til bruk frå kommandolinja for å lasta\n"
  1162. "ned og installera pakkar. Dei vanlegaste kommandoane er «update» og\n"
  1163. "«install».\n"
  1164. "\n"
  1165. "Kommandoar:\n"
  1166. " update - Hent nye pakkelister.\n"
  1167. " upgrade - Utfør ei oppgradering.\n"
  1168. " install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo."
  1169. "deb)).\n"
  1170. " remove - Fjern pakkar.\n"
  1171. " source - Last ned kjeldekode frå arkiva.\n"
  1172. " build-dep - Oppfyll byggjekrava for kjeldepakkar.\n"
  1173. " dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n"
  1174. " dselect-upgrade - Følg råda frå «dselect».\n"
  1175. " clean - Slett nedlasta arkivfiler.\n"
  1176. " autoclean - Slett gamle, nedlasta arkivfiler.\n"
  1177. " check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n"
  1178. "\n"
  1179. "Val:\n"
  1180. " -h Vis denne hjelpeteksten.\n"
  1181. " -q Ikkje vis framdriftsmåtar, for bruk i loggar.\n"
  1182. " -qq Inga tilbakemelding - bortsett frå feilmeldingar.\n"
  1183. " -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n"
  1184. " -s Skuggespel, berre simulering av handlingane.\n"
  1185. " -y Svar ja på alle spørsmål utan å stoppa.\n"
  1186. " -f Prøv å halda fram sjølv om integritetskontrollen mislukkast.\n"
  1187. " -m Prøv å halda fram sjølv om nokre pakkar ikkje vert funne.\n"
  1188. " -u Ta med oppgraderte pakkar i lista som vert vist.\n"
  1189. " -b Bygg pakken etter at kjeldekoden er henta.\n"
  1190. " -V Vis fullstendige versjonsnummer.\n"
  1191. " -c=? Les denne innstillingsfila.\n"
  1192. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  1193. "Du finn meir informasjon og fleire kommandolinjeval på manualsidene\n"
  1194. "til apt-get(8), sources.list(5) og apt.conf(5).\n"
  1195. " APT har superku-krefter.\n"
  1196. #: cmdline/apt-get.cc:3330
  1197. msgid ""
  1198. "NOTE: This is only a simulation!\n"
  1199. " apt-get needs root privileges for real execution.\n"
  1200. " Keep also in mind that locking is deactivated,\n"
  1201. " so don't depend on the relevance to the real current situation!"
  1202. msgstr ""
  1203. #: cmdline/acqprogress.cc:57
  1204. msgid "Hit "
  1205. msgstr "Treff "
  1206. #: cmdline/acqprogress.cc:81
  1207. msgid "Get:"
  1208. msgstr "Hent:"
  1209. #: cmdline/acqprogress.cc:112
  1210. msgid "Ign "
  1211. msgstr "Ign "
  1212. #: cmdline/acqprogress.cc:116
  1213. msgid "Err "
  1214. msgstr "Feil "
  1215. #: cmdline/acqprogress.cc:137
  1216. #, c-format
  1217. msgid "Fetched %sB in %s (%sB/s)\n"
  1218. msgstr "Henta %sB på %s (%sB/s)\n"
  1219. #: cmdline/acqprogress.cc:227
  1220. #, c-format
  1221. msgid " [Working]"
  1222. msgstr " [Arbeider]"
  1223. #: cmdline/acqprogress.cc:283
  1224. #, c-format
  1225. msgid ""
  1226. "Media change: please insert the disc labeled\n"
  1227. " '%s'\n"
  1228. "in the drive '%s' and press enter\n"
  1229. msgstr ""
  1230. "Skifte av medum: Set inn plata merkt\n"
  1231. " «%s»\n"
  1232. "i stasjonen «%s» og trykk Enter.\n"
  1233. #: cmdline/apt-mark.cc:46
  1234. #, fuzzy, c-format
  1235. msgid "%s can not be marked as it is not installed.\n"
  1236. msgstr "men er ikkje installert"
  1237. #: cmdline/apt-mark.cc:52
  1238. #, fuzzy, c-format
  1239. msgid "%s was already set to manually installed.\n"
  1240. msgstr "men %s skal installerast"
  1241. #: cmdline/apt-mark.cc:54
  1242. #, fuzzy, c-format
  1243. msgid "%s was already set to automatically installed.\n"
  1244. msgstr "men %s skal installerast"
  1245. #: cmdline/apt-mark.cc:169
  1246. #, fuzzy, c-format
  1247. msgid "%s was already set on hold.\n"
  1248. msgstr "Den nyaste versjonen av %s er installert frå før.\n"
  1249. #: cmdline/apt-mark.cc:171
  1250. #, fuzzy, c-format
  1251. msgid "%s was already not hold.\n"
  1252. msgstr "Den nyaste versjonen av %s er installert frå før.\n"
  1253. #: cmdline/apt-mark.cc:185 cmdline/apt-mark.cc:207
  1254. #, fuzzy, c-format
  1255. msgid "%s set on hold.\n"
  1256. msgstr "men %s skal installerast"
  1257. #: cmdline/apt-mark.cc:187 cmdline/apt-mark.cc:212
  1258. #, fuzzy, c-format
  1259. msgid "Canceled hold on %s.\n"
  1260. msgstr "Klarte ikkje opna %s"
  1261. #: cmdline/apt-mark.cc:220
  1262. msgid "Executing dpkg failed. Are you root?"
  1263. msgstr ""
  1264. #: cmdline/apt-mark.cc:268
  1265. msgid ""
  1266. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1267. "\n"
  1268. "apt-mark is a simple command line interface for marking packages\n"
  1269. "as manual or automatical installed. It can also list marks.\n"
  1270. "\n"
  1271. "Commands:\n"
  1272. " auto - Mark the given packages as automatically installed\n"
  1273. " manual - Mark the given packages as manually installed\n"
  1274. "\n"
  1275. "Options:\n"
  1276. " -h This help text.\n"
  1277. " -q Loggable output - no progress indicator\n"
  1278. " -qq No output except for errors\n"
  1279. " -s No-act. Just prints what would be done.\n"
  1280. " -f read/write auto/manual marking in the given file\n"
  1281. " -c=? Read this configuration file\n"
  1282. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1283. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  1284. msgstr ""
  1285. #: cmdline/apt-sortpkgs.cc:86
  1286. msgid "Unknown package record!"
  1287. msgstr "Ukjend pakkeoppslag"
  1288. #: cmdline/apt-sortpkgs.cc:150
  1289. msgid ""
  1290. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1291. "\n"
  1292. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1293. "to indicate what kind of file it is.\n"
  1294. "\n"
  1295. "Options:\n"
  1296. " -h This help text\n"
  1297. " -s Use source file sorting\n"
  1298. " -c=? Read this configuration file\n"
  1299. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1300. msgstr ""
  1301. "Bruk: apt-sortpkgs [val] fil1 [fil2 ...]\n"
  1302. "\n"
  1303. "apt-sortpkgs er eit enkelt verktøy for å sortera pakkefiler. Innstillinga\n"
  1304. "-s vert brukt til å velja kva for ein type fil det er snakk om.\n"
  1305. "\n"
  1306. "Val:\n"
  1307. " -h Vis denne hjelpeteksten.\n"
  1308. " -s Bruk kjeldefilsortering.\n"
  1309. " -c=? Les denne oppsettsfila.\n"
  1310. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  1311. #: dselect/install:32
  1312. msgid "Bad default setting!"
  1313. msgstr "Dårleg standardinnstilling"
  1314. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1315. #: dselect/install:105 dselect/update:45
  1316. msgid "Press enter to continue."
  1317. msgstr "Trykk Enter for å halda fram."
  1318. #: dselect/install:91
  1319. msgid "Do you want to erase any previously downloaded .deb files?"
  1320. msgstr ""
  1321. #: dselect/install:101
  1322. #, fuzzy
  1323. msgid "Some errors occurred while unpacking. Packages that were installed"
  1324. msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no"
  1325. #: dselect/install:102
  1326. #, fuzzy
  1327. msgid "will be configured. This may result in duplicate errors"
  1328. msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av"
  1329. #: dselect/install:103
  1330. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1331. msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor"
  1332. #: dselect/install:104
  1333. msgid ""
  1334. "above this message are important. Please fix them and run [I]nstall again"
  1335. msgstr "er viktige. Rett opp dei feila og [i]nstaller på nytt."
  1336. #: dselect/update:30
  1337. msgid "Merging available information"
  1338. msgstr "Flettar informasjon om tilgjengelege pakkar"
  1339. #: apt-inst/contrib/extracttar.cc:114
  1340. msgid "Failed to create pipes"
  1341. msgstr "Klarte ikkje oppretta røyr"
  1342. #: apt-inst/contrib/extracttar.cc:141
  1343. msgid "Failed to exec gzip "
  1344. msgstr "Klarte ikkje køyra gzip "
  1345. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:208
  1346. msgid "Corrupted archive"
  1347. msgstr "Øydelagt arkiv"
  1348. #: apt-inst/contrib/extracttar.cc:193
  1349. msgid "Tar checksum failed, archive corrupted"
  1350. msgstr "Tar-sjekksummen mislukkast, arkivet er øydelagt"
  1351. #: apt-inst/contrib/extracttar.cc:300
  1352. #, c-format
  1353. msgid "Unknown TAR header type %u, member %s"
  1354. msgstr "Ukjend TAR-hovud type %u, medlem %s"
  1355. #: apt-inst/contrib/arfile.cc:70
  1356. msgid "Invalid archive signature"
  1357. msgstr "Ugyldig arkivsignatur"
  1358. #: apt-inst/contrib/arfile.cc:78
  1359. msgid "Error reading archive member header"
  1360. msgstr "Feil ved lesing av arkivmedlemshovud"
  1361. #: apt-inst/contrib/arfile.cc:90
  1362. #, fuzzy, c-format
  1363. msgid "Invalid archive member header %s"
  1364. msgstr "Ugyldig arkivmedlemshovud"
  1365. #: apt-inst/contrib/arfile.cc:102
  1366. msgid "Invalid archive member header"
  1367. msgstr "Ugyldig arkivmedlemshovud"
  1368. #: apt-inst/contrib/arfile.cc:128
  1369. msgid "Archive is too short"
  1370. msgstr "Arkivet er for kort"
  1371. #: apt-inst/contrib/arfile.cc:132
  1372. msgid "Failed to read the archive headers"
  1373. msgstr "Klarte ikkje lesa arkivhovuda"
  1374. #: apt-inst/filelist.cc:380
  1375. msgid "DropNode called on still linked node"
  1376. msgstr "DropNode vart kalla på ein node som framleis er lenkja"
  1377. #: apt-inst/filelist.cc:412
  1378. msgid "Failed to locate the hash element!"
  1379. msgstr "Fann ikkje nøkkelelementet."
  1380. #: apt-inst/filelist.cc:459
  1381. msgid "Failed to allocate diversion"
  1382. msgstr "Klarte ikkje tildela avleiing"
  1383. #: apt-inst/filelist.cc:464
  1384. msgid "Internal error in AddDiversion"
  1385. msgstr "Intern feil i AddDiversion"
  1386. #: apt-inst/filelist.cc:477
  1387. #, c-format
  1388. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1389. msgstr "Prøver å skriva over ei avleiing, %s -> %s og %s/%s"
  1390. #: apt-inst/filelist.cc:506
  1391. #, c-format
  1392. msgid "Double add of diversion %s -> %s"
  1393. msgstr "Dobbel tilleggjing av avleiing %s -> %s"
  1394. #: apt-inst/filelist.cc:549
  1395. #, c-format
  1396. msgid "Duplicate conf file %s/%s"
  1397. msgstr "Dobbel oppsettsfil %s/%s"
  1398. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:47 apt-inst/dirstream.cc:53
  1399. #, fuzzy, c-format
  1400. msgid "Failed to write file %s"
  1401. msgstr "Klarte ikkje skriva fila %s"
  1402. #: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106
  1403. #, c-format
  1404. msgid "Failed to close file %s"
  1405. msgstr "Klarte ikkje lukka fila %s"
  1406. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1407. #, c-format
  1408. msgid "The path %s is too long"
  1409. msgstr "Stigen %s er for lang"
  1410. #: apt-inst/extract.cc:124
  1411. #, c-format
  1412. msgid "Unpacking %s more than once"
  1413. msgstr "Pakkar ut %s meir enn éin gong"
  1414. #: apt-inst/extract.cc:134
  1415. #, c-format
  1416. msgid "The directory %s is diverted"
  1417. msgstr "Katalogen %s er avleidd"
  1418. #: apt-inst/extract.cc:144
  1419. #, c-format
  1420. msgid "The package is trying to write to the diversion target %s/%s"
  1421. msgstr "Pakken prøver å skriva til avleiingsmålet %s/%s"
  1422. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1423. msgid "The diversion path is too long"
  1424. msgstr "Avleiingsstigen er for lang"
  1425. #: apt-inst/extract.cc:240
  1426. #, c-format
  1427. msgid "The directory %s is being replaced by a non-directory"
  1428. msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog"
  1429. #: apt-inst/extract.cc:280
  1430. msgid "Failed to locate node in its hash bucket"
  1431. msgstr "Fann ikkje noden i nøkkelbøtta"
  1432. #: apt-inst/extract.cc:284
  1433. msgid "The path is too long"
  1434. msgstr "Stigen er for lang"
  1435. #: apt-inst/extract.cc:412
  1436. #, c-format
  1437. msgid "Overwrite package match with no version for %s"
  1438. msgstr "Skriv over pakketreff utan versjon for %s"
  1439. #: apt-inst/extract.cc:429
  1440. #, c-format
  1441. msgid "File %s/%s overwrites the one in the package %s"
  1442. msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s"
  1443. #. Only warn if there are no sources.list.d.
  1444. #. Only warn if there is no sources.list file.
  1445. #: apt-inst/extract.cc:462 apt-pkg/contrib/cdromutl.cc:179
  1446. #: apt-pkg/contrib/fileutl.cc:343 apt-pkg/sourcelist.cc:204
  1447. #: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100
  1448. #: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:338
  1449. #: methods/mirror.cc:91
  1450. #, c-format
  1451. msgid "Unable to read %s"
  1452. msgstr "Klarte ikkje lesa %s"
  1453. #: apt-inst/extract.cc:489
  1454. #, c-format
  1455. msgid "Unable to stat %s"
  1456. msgstr "Klarte ikkje få status til %s"
  1457. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1458. #, c-format
  1459. msgid "Failed to remove %s"
  1460. msgstr "Klarte ikkje fjerna %s"
  1461. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1462. #, c-format
  1463. msgid "Unable to create %s"
  1464. msgstr "Klarte ikkje oppretta %s"
  1465. #: apt-inst/deb/dpkgdb.cc:114
  1466. #, c-format
  1467. msgid "Failed to stat %sinfo"
  1468. msgstr "Klarte ikkje få status til %sinfo"
  1469. #: apt-inst/deb/dpkgdb.cc:119
  1470. msgid "The info and temp directories need to be on the same filesystem"
  1471. msgstr ""
  1472. "Infokatalogen og den mellombelse katalogen må vera på det same filsystemet"
  1473. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1048
  1474. #: apt-pkg/pkgcachegen.cc:1152 apt-pkg/pkgcachegen.cc:1158
  1475. #: apt-pkg/pkgcachegen.cc:1304
  1476. msgid "Reading package lists"
  1477. msgstr "Les pakkelister"
  1478. #: apt-inst/deb/dpkgdb.cc:176
  1479. #, c-format
  1480. msgid "Failed to change to the admin dir %sinfo"
  1481. msgstr "Klarte ikkje byta til adminkatalogen %sinfo"
  1482. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1483. #: apt-inst/deb/dpkgdb.cc:444
  1484. msgid "Internal error getting a package name"
  1485. msgstr "Intern feil ved henting av pakkenamn"
  1486. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1487. msgid "Reading file listing"
  1488. msgstr "Les filliste"
  1489. #: apt-inst/deb/dpkgdb.cc:212
  1490. #, c-format
  1491. msgid ""
  1492. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1493. "then make it empty and immediately re-install the same version of the "
  1494. "package!"
  1495. msgstr ""
  1496. "Klarte ikkje opna listefila «%sinfo/%s». Dersom du ikkje kan gjenoppretta "
  1497. "denne fila, bør du oppretta ho som ei tom fil og installera den same "
  1498. "versjonen av pakken på nytt."
  1499. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1500. #, c-format
  1501. msgid "Failed reading the list file %sinfo/%s"
  1502. msgstr "Klarte ikkje lesa listefila %sinfo/%s"
  1503. #: apt-inst/deb/dpkgdb.cc:262
  1504. msgid "Internal error getting a node"
  1505. msgstr "Intern feil ved henting av node"
  1506. #: apt-inst/deb/dpkgdb.cc:305
  1507. #, c-format
  1508. msgid "Failed to open the diversions file %sdiversions"
  1509. msgstr "Klarte ikkje opna avleiingsfila %sdiversions"
  1510. #: apt-inst/deb/dpkgdb.cc:320
  1511. msgid "The diversion file is corrupted"
  1512. msgstr "Avleiingsfila er øydelagd"
  1513. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1514. #: apt-inst/deb/dpkgdb.cc:337
  1515. #, c-format
  1516. msgid "Invalid line in the diversion file: %s"
  1517. msgstr "Ugyldig linje i avleiingsfila: %s"
  1518. #: apt-inst/deb/dpkgdb.cc:358
  1519. msgid "Internal error adding a diversion"
  1520. msgstr "Intern feil ved tilleggjing av avleiing"
  1521. #: apt-inst/deb/dpkgdb.cc:379
  1522. msgid "The pkg cache must be initialized first"
  1523. msgstr "Pakkelageret må først klargjerast"
  1524. #: apt-inst/deb/dpkgdb.cc:439
  1525. #, c-format
  1526. msgid "Failed to find a Package: header, offset %lu"
  1527. msgstr "Fann ikkje «Package:»-linja, offset %lu"
  1528. #: apt-inst/deb/dpkgdb.cc:461
  1529. #, c-format
  1530. msgid "Bad ConfFile section in the status file. Offset %lu"
  1531. msgstr "Øydelagd «ConfFile»-del i statusfila. Offset %lu"
  1532. #: apt-inst/deb/dpkgdb.cc:466
  1533. #, c-format
  1534. msgid "Error parsing MD5. Offset %lu"
  1535. msgstr "Feil ved tolking av MD5. Offset %lu"
  1536. #: apt-inst/deb/debfile.cc:39 apt-inst/deb/debfile.cc:44
  1537. #, c-format
  1538. msgid "This is not a valid DEB archive, missing '%s' member"
  1539. msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen"
  1540. #. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
  1541. #: apt-inst/deb/debfile.cc:53
  1542. #, fuzzy, c-format
  1543. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1544. msgstr ""
  1545. "Dette er ikkje eit gyldig DEB-arkiv, det har ingen «%s» eller «%s»-medlem"
  1546. #: apt-inst/deb/debfile.cc:113
  1547. #, c-format
  1548. msgid "Couldn't change to %s"
  1549. msgstr "Klarte ikkje byta til %s"
  1550. #: apt-inst/deb/debfile.cc:154
  1551. #, c-format
  1552. msgid "Internal error, could not locate member %s"
  1553. msgstr "Intern feil, fann ikkje medlemmen %s"
  1554. #: apt-inst/deb/debfile.cc:189
  1555. msgid "Failed to locate a valid control file"
  1556. msgstr "Fann ikkje noka gyldig kontrollfil"
  1557. #: apt-inst/deb/debfile.cc:274
  1558. msgid "Unparsable control file"
  1559. msgstr "Kontrollfila kan ikkje tolkast"
  1560. #: methods/bzip2.cc:60 methods/gzip.cc:52
  1561. msgid "Empty files can't be valid archives"
  1562. msgstr ""
  1563. #: methods/bzip2.cc:64
  1564. #, c-format
  1565. msgid "Couldn't open pipe for %s"
  1566. msgstr "Klarte ikkje opna røyr for %s"
  1567. #: methods/bzip2.cc:108
  1568. #, c-format
  1569. msgid "Read error from %s process"
  1570. msgstr "Lesefeil frå %s-prosessen"
  1571. #: methods/bzip2.cc:140 methods/bzip2.cc:149 methods/copy.cc:43
  1572. #: methods/gzip.cc:92 methods/gzip.cc:101 methods/rred.cc:524
  1573. #: methods/rred.cc:533
  1574. msgid "Failed to stat"
  1575. msgstr "Klarte ikkje få status"
  1576. #: methods/bzip2.cc:146 methods/copy.cc:80 methods/gzip.cc:98
  1577. #: methods/rred.cc:530
  1578. msgid "Failed to set modification time"
  1579. msgstr "Klarte ikkje setja endringstidspunkt"
  1580. #: methods/cdrom.cc:199
  1581. #, c-format
  1582. msgid "Unable to read the cdrom database %s"
  1583. msgstr "Klarte ikkje lesa CD-ROM-databasen %s"
  1584. #: methods/cdrom.cc:208
  1585. msgid ""
  1586. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1587. "cannot be used to add new CD-ROMs"
  1588. msgstr ""
  1589. "Bruk «apt-cdrom» for å gjera denne CD-plata tilgjengeleg for APT. Du kan "
  1590. "ikkje bruka «apt-get update» til å leggja til nye CD-plater."
  1591. #: methods/cdrom.cc:218
  1592. msgid "Wrong CD-ROM"
  1593. msgstr "Feil CD-plate"
  1594. #: methods/cdrom.cc:245
  1595. #, c-format
  1596. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1597. msgstr ""
  1598. "Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk."
  1599. #: methods/cdrom.cc:250
  1600. #, fuzzy
  1601. msgid "Disk not found."
  1602. msgstr "Fann ikkje fila"
  1603. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:265
  1604. msgid "File not found"
  1605. msgstr "Fann ikkje fila"
  1606. #: methods/file.cc:44
  1607. msgid "Invalid URI, local URIS must not start with //"
  1608. msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //"
  1609. #. Login must be before getpeername otherwise dante won't work.
  1610. #: methods/ftp.cc:168
  1611. msgid "Logging in"
  1612. msgstr "Loggar inn"
  1613. #: methods/ftp.cc:174
  1614. msgid "Unable to determine the peer name"
  1615. msgstr "Klarte ikkje avgjera namnet på motparten"
  1616. #: methods/ftp.cc:179
  1617. msgid "Unable to determine the local name"
  1618. msgstr "Klarte ikkje avgjera det lokale namnet"
  1619. #: methods/ftp.cc:210 methods/ftp.cc:238
  1620. #, c-format
  1621. msgid "The server refused the connection and said: %s"
  1622. msgstr "Tenaren nekta oss å kopla til, og sa: %s"
  1623. #: methods/ftp.cc:216
  1624. #, c-format
  1625. msgid "USER failed, server said: %s"
  1626. msgstr "USER mislukkast, tenaren sa: %s"
  1627. #: methods/ftp.cc:223
  1628. #, c-format
  1629. msgid "PASS failed, server said: %s"
  1630. msgstr "PASS mislukkast, tenaren sa: %s"
  1631. #: methods/ftp.cc:243
  1632. msgid ""
  1633. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1634. "is empty."
  1635. msgstr ""
  1636. "Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet "
  1637. "«Acquire::ftp::ProxyLogin» er tomt."
  1638. #: methods/ftp.cc:271
  1639. #, c-format
  1640. msgid "Login script command '%s' failed, server said: %s"
  1641. msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s"
  1642. #: methods/ftp.cc:297
  1643. #, c-format
  1644. msgid "TYPE failed, server said: %s"
  1645. msgstr "TYPE mislukkast, tenaren sa: %s"
  1646. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:184 methods/rsh.cc:227
  1647. msgid "Connection timeout"
  1648. msgstr "Tidsavbrot på samband"
  1649. #: methods/ftp.cc:341
  1650. msgid "Server closed the connection"
  1651. msgstr "Tenaren lukka sambandet"
  1652. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:820 methods/rsh.cc:191
  1653. msgid "Read error"
  1654. msgstr "Lesefeil"
  1655. #: methods/ftp.cc:351 methods/rsh.cc:198
  1656. msgid "A response overflowed the buffer."
  1657. msgstr "Eit svar flaumde over bufferen."
  1658. #: methods/ftp.cc:368 methods/ftp.cc:380
  1659. msgid "Protocol corruption"
  1660. msgstr "Protokolløydeleggjing"
  1661. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:862 methods/rsh.cc:233
  1662. msgid "Write error"
  1663. msgstr "Skrivefeil"
  1664. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1665. msgid "Could not create a socket"
  1666. msgstr "Klarte ikkje oppretta sokkel"
  1667. #: methods/ftp.cc:703
  1668. msgid "Could not connect data socket, connection timed out"
  1669. msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet"
  1670. #: methods/ftp.cc:709
  1671. msgid "Could not connect passive socket."
  1672. msgstr "Klarte ikkje kopla til passiv sokkel."
  1673. #: methods/ftp.cc:727
  1674. msgid "getaddrinfo was unable to get a listening socket"
  1675. msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel"
  1676. #: methods/ftp.cc:741
  1677. msgid "Could not bind a socket"
  1678. msgstr "Klarte ikkje binda til sokkel"
  1679. #: methods/ftp.cc:745
  1680. msgid "Could not listen on the socket"
  1681. msgstr "Klarte ikkje lytta til sokkel"
  1682. #: methods/ftp.cc:752
  1683. msgid "Could not determine the socket's name"
  1684. msgstr "Klarte ikkje avgjera sokkelnamnet"
  1685. #: methods/ftp.cc:784
  1686. msgid "Unable to send PORT command"
  1687. msgstr "Klarte ikkje senda PORT-kommandoen"
  1688. #: methods/ftp.cc:794
  1689. #, c-format
  1690. msgid "Unknown address family %u (AF_*)"
  1691. msgstr "Ukjend adressefamilie %u (AF_*)"
  1692. #: methods/ftp.cc:803
  1693. #, c-format
  1694. msgid "EPRT failed, server said: %s"
  1695. msgstr "EPRT mislukkast, tenaren sa: %s"
  1696. #: methods/ftp.cc:823
  1697. msgid "Data socket connect timed out"
  1698. msgstr "Tidsavbrot på tilkopling til datasokkel"
  1699. #: methods/ftp.cc:830
  1700. msgid "Unable to accept connection"
  1701. msgstr "Klarte ikkje godta tilkoplinga"
  1702. #: methods/ftp.cc:869 methods/http.cc:1023 methods/rsh.cc:303
  1703. msgid "Problem hashing file"
  1704. msgstr "Problem ved oppretting av nøkkel for fil"
  1705. #: methods/ftp.cc:882
  1706. #, c-format
  1707. msgid "Unable to fetch file, server said '%s'"
  1708. msgstr "Klarte ikkje henta fila, tenaren sa «%s»"
  1709. #: methods/ftp.cc:897 methods/rsh.cc:322
  1710. msgid "Data socket timed out"
  1711. msgstr "Tidsavbrot på datasokkelen"
  1712. #: methods/ftp.cc:927
  1713. #, c-format
  1714. msgid "Data transfer failed, server said '%s'"
  1715. msgstr "Dataoverføringa mislukkast, tenaren sa «%s»"
  1716. #. Get the files information
  1717. #: methods/ftp.cc:1004
  1718. msgid "Query"
  1719. msgstr "Spørjing"
  1720. #: methods/ftp.cc:1116
  1721. msgid "Unable to invoke "
  1722. msgstr "Klarte ikkje starta "
  1723. #: methods/connect.cc:71
  1724. #, c-format
  1725. msgid "Connecting to %s (%s)"
  1726. msgstr "Koplar til %s (%s)"
  1727. #: methods/connect.cc:82
  1728. #, c-format
  1729. msgid "[IP: %s %s]"
  1730. msgstr "[IP: %s %s]"
  1731. #: methods/connect.cc:89
  1732. #, c-format
  1733. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1734. msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)"
  1735. #: methods/connect.cc:95
  1736. #, c-format
  1737. msgid "Cannot initiate the connection to %s:%s (%s)."
  1738. msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)."
  1739. #: methods/connect.cc:103
  1740. #, c-format
  1741. msgid "Could not connect to %s:%s (%s), connection timed out"
  1742. msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet"
  1743. #: methods/connect.cc:121
  1744. #, c-format
  1745. msgid "Could not connect to %s:%s (%s)."
  1746. msgstr "Klarte ikkje kopla til %s:%s (%s)."
  1747. #. We say this mainly because the pause here is for the
  1748. #. ssh connection that is still going
  1749. #: methods/connect.cc:149 methods/rsh.cc:425
  1750. #, c-format
  1751. msgid "Connecting to %s"
  1752. msgstr "Koplar til %s"
  1753. #: methods/connect.cc:168 methods/connect.cc:187
  1754. #, c-format
  1755. msgid "Could not resolve '%s'"
  1756. msgstr "Klarte ikkje slå opp «%s»"
  1757. #: methods/connect.cc:193
  1758. #, c-format
  1759. msgid "Temporary failure resolving '%s'"
  1760. msgstr "Mellombels feil ved oppslag av «%s»"
  1761. #: methods/connect.cc:196
  1762. #, fuzzy, c-format
  1763. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1764. msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)"
  1765. #: methods/connect.cc:243
  1766. #, fuzzy, c-format
  1767. msgid "Unable to connect to %s:%s:"
  1768. msgstr "Klarte ikkje kopla til %s %s:"
  1769. #. TRANSLATOR: %s is the trusted keyring parts directory
  1770. #: methods/gpgv.cc:71
  1771. #, fuzzy, c-format
  1772. msgid "No keyring installed in %s."
  1773. msgstr "Avbryt installasjon."
  1774. #: methods/gpgv.cc:163
  1775. msgid ""
  1776. "Internal error: Good signature, but could not determine key fingerprint?!"
  1777. msgstr ""
  1778. #: methods/gpgv.cc:168
  1779. msgid "At least one invalid signature was encountered."
  1780. msgstr ""
  1781. #: methods/gpgv.cc:172
  1782. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1783. msgstr ""
  1784. #: methods/gpgv.cc:177
  1785. msgid "Unknown error executing gpgv"
  1786. msgstr ""
  1787. #: methods/gpgv.cc:211 methods/gpgv.cc:218
  1788. #, fuzzy
  1789. msgid "The following signatures were invalid:\n"
  1790. msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
  1791. #: methods/gpgv.cc:225
  1792. msgid ""
  1793. "The following signatures couldn't be verified because the public key is not "
  1794. "available:\n"
  1795. msgstr ""
  1796. #: methods/http.cc:385
  1797. msgid "Waiting for headers"
  1798. msgstr "Ventar på hovud"
  1799. #: methods/http.cc:531
  1800. #, c-format
  1801. msgid "Got a single header line over %u chars"
  1802. msgstr "Fekk ei enkel hovudlinje over %u teikn"
  1803. #: methods/http.cc:539
  1804. msgid "Bad header line"
  1805. msgstr "Øydelagd hovudlinje"
  1806. #: methods/http.cc:564 methods/http.cc:571
  1807. msgid "The HTTP server sent an invalid reply header"
  1808. msgstr "HTTP-tenaren sende eit ugyldig svarhovud"
  1809. #: methods/http.cc:600
  1810. msgid "The HTTP server sent an invalid Content-Length header"
  1811. msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud"
  1812. #: methods/http.cc:615
  1813. msgid "The HTTP server sent an invalid Content-Range header"
  1814. msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud"
  1815. #: methods/http.cc:617
  1816. msgid "This HTTP server has broken range support"
  1817. msgstr "Denne HTTP-tenaren har øydelagd støtte for område"
  1818. #: methods/http.cc:641
  1819. msgid "Unknown date format"
  1820. msgstr "Ukjend datoformat"
  1821. #: methods/http.cc:800
  1822. msgid "Select failed"
  1823. msgstr "Utvalet mislukkast"
  1824. #: methods/http.cc:805
  1825. msgid "Connection timed out"
  1826. msgstr "Tidsavbrot på sambandet"
  1827. #: methods/http.cc:828
  1828. msgid "Error writing to output file"
  1829. msgstr "Feil ved skriving til utfil"
  1830. #: methods/http.cc:859
  1831. msgid "Error writing to file"
  1832. msgstr "Feil ved skriving til fil"
  1833. #: methods/http.cc:887
  1834. msgid "Error writing to the file"
  1835. msgstr "Feil ved skriving til fila"
  1836. #: methods/http.cc:901
  1837. msgid "Error reading from server. Remote end closed connection"
  1838. msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
  1839. #: methods/http.cc:903
  1840. msgid "Error reading from server"
  1841. msgstr "Feil ved lesing frå tenaren"
  1842. #: methods/http.cc:1008 apt-pkg/contrib/mmap.cc:291
  1843. #, fuzzy
  1844. msgid "Failed to truncate file"
  1845. msgstr "Klarte ikkje skriva fila %s"
  1846. #: methods/http.cc:1183
  1847. msgid "Bad header data"
  1848. msgstr "Øydelagde hovuddata"
  1849. #: methods/http.cc:1200 methods/http.cc:1255
  1850. msgid "Connection failed"
  1851. msgstr "Sambandet mislukkast"
  1852. #: methods/http.cc:1347
  1853. msgid "Internal error"
  1854. msgstr "Intern feil"
  1855. #: apt-pkg/contrib/mmap.cc:77
  1856. msgid "Can't mmap an empty file"
  1857. msgstr "Kan ikkje utføra mmap på ei tom fil"
  1858. #: apt-pkg/contrib/mmap.cc:89
  1859. #, fuzzy, c-format
  1860. msgid "Couldn't duplicate file descriptor %i"
  1861. msgstr "Klarte ikkje opna røyr for %s"
  1862. #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:258
  1863. #, c-format
  1864. msgid "Couldn't make mmap of %lu bytes"
  1865. msgstr "Klarte ikkje laga mmap av %lu byte"
  1866. #: apt-pkg/contrib/mmap.cc:124
  1867. #, fuzzy
  1868. msgid "Unable to close mmap"
  1869. msgstr "Klarte ikkje opna %s"
  1870. #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180
  1871. #, fuzzy
  1872. msgid "Unable to synchronize mmap"
  1873. msgstr "Klarte ikkje starta "
  1874. #: apt-pkg/contrib/mmap.cc:310
  1875. #, c-format
  1876. msgid ""
  1877. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1878. "Current value: %lu. (man 5 apt.conf)"
  1879. msgstr ""
  1880. #: apt-pkg/contrib/mmap.cc:409
  1881. #, c-format
  1882. msgid ""
  1883. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1884. "reached."
  1885. msgstr ""
  1886. #: apt-pkg/contrib/mmap.cc:412
  1887. msgid ""
  1888. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1889. msgstr ""
  1890. #. d means days, h means hours, min means minutes, s means seconds
  1891. #: apt-pkg/contrib/strutl.cc:371
  1892. #, c-format
  1893. msgid "%lid %lih %limin %lis"
  1894. msgstr ""
  1895. #. h means hours, min means minutes, s means seconds
  1896. #: apt-pkg/contrib/strutl.cc:378
  1897. #, c-format
  1898. msgid "%lih %limin %lis"
  1899. msgstr ""
  1900. #. min means minutes, s means seconds
  1901. #: apt-pkg/contrib/strutl.cc:385
  1902. #, c-format
  1903. msgid "%limin %lis"
  1904. msgstr ""
  1905. #. s means seconds
  1906. #: apt-pkg/contrib/strutl.cc:390
  1907. #, c-format
  1908. msgid "%lis"
  1909. msgstr ""
  1910. #: apt-pkg/contrib/strutl.cc:1138
  1911. #, c-format
  1912. msgid "Selection %s not found"
  1913. msgstr "Fann ikkje utvalet %s"
  1914. #: apt-pkg/contrib/configuration.cc:452
  1915. #, c-format
  1916. msgid "Unrecognized type abbreviation: '%c'"
  1917. msgstr "Ukjend typeforkorting: «%c»"
  1918. #: apt-pkg/contrib/configuration.cc:510
  1919. #, c-format
  1920. msgid "Opening configuration file %s"
  1921. msgstr "Opnar oppsettsfila %s"
  1922. #: apt-pkg/contrib/configuration.cc:678
  1923. #, c-format
  1924. msgid "Syntax error %s:%u: Block starts with no name."
  1925. msgstr "Syntaksfeil %s:%u: Blokka startar utan namn."
  1926. #: apt-pkg/contrib/configuration.cc:697
  1927. #, c-format
  1928. msgid "Syntax error %s:%u: Malformed tag"
  1929. msgstr "Syntaksfeil %s:%u: Misforma tagg"
  1930. #: apt-pkg/contrib/configuration.cc:714
  1931. #, c-format
  1932. msgid "Syntax error %s:%u: Extra junk after value"
  1933. msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien"
  1934. #: apt-pkg/contrib/configuration.cc:754
  1935. #, c-format
  1936. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1937. msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået"
  1938. #: apt-pkg/contrib/configuration.cc:761
  1939. #, c-format
  1940. msgid "Syntax error %s:%u: Too many nested includes"
  1941. msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer"
  1942. #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
  1943. #, c-format
  1944. msgid "Syntax error %s:%u: Included from here"
  1945. msgstr "Syntaksfeil %s:%u: Inkludert herifrå"
  1946. #: apt-pkg/contrib/configuration.cc:774
  1947. #, c-format
  1948. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1949. msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta"
  1950. #: apt-pkg/contrib/configuration.cc:777
  1951. #, fuzzy, c-format
  1952. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1953. msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået"
  1954. #: apt-pkg/contrib/configuration.cc:827
  1955. #, c-format
  1956. msgid "Syntax error %s:%u: Extra junk at end of file"
  1957. msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila"
  1958. #: apt-pkg/contrib/progress.cc:153
  1959. #, c-format
  1960. msgid "%c%s... Error!"
  1961. msgstr "%c%s ... Feil"
  1962. #: apt-pkg/contrib/progress.cc:155
  1963. #, c-format
  1964. msgid "%c%s... Done"
  1965. msgstr "%c%s ... Ferdig"
  1966. #: apt-pkg/contrib/cmndline.cc:77
  1967. #, c-format
  1968. msgid "Command line option '%c' [from %s] is not known."
  1969. msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)."
  1970. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1971. #: apt-pkg/contrib/cmndline.cc:119
  1972. #, c-format
  1973. msgid "Command line option %s is not understood"
  1974. msgstr "Skjønar ikkje kommandolinjevalet %s"
  1975. #: apt-pkg/contrib/cmndline.cc:124
  1976. #, c-format
  1977. msgid "Command line option %s is not boolean"
  1978. msgstr "Kommandolinjevalet %s er ikkje boolsk"
  1979. #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
  1980. #, c-format
  1981. msgid "Option %s requires an argument."
  1982. msgstr "Valet %s krev eit argument."
  1983. #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206
  1984. #, c-format
  1985. msgid "Option %s: Configuration item specification must have an =<val>."
  1986. msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>."
  1987. #: apt-pkg/contrib/cmndline.cc:236
  1988. #, c-format
  1989. msgid "Option %s requires an integer argument, not '%s'"
  1990. msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»"
  1991. #: apt-pkg/contrib/cmndline.cc:267
  1992. #, c-format
  1993. msgid "Option '%s' is too long"
  1994. msgstr "Valet «%s» er for langt"
  1995. #: apt-pkg/contrib/cmndline.cc:300
  1996. #, c-format
  1997. msgid "Sense %s is not understood, try true or false."
  1998. msgstr "Skjønar ikkje %s. Prøv «true» eller «false»."
  1999. #: apt-pkg/contrib/cmndline.cc:350
  2000. #, c-format
  2001. msgid "Invalid operation %s"
  2002. msgstr "Ugyldig operasjon %s"
  2003. #: apt-pkg/contrib/cdromutl.cc:52
  2004. #, c-format
  2005. msgid "Unable to stat the mount point %s"
  2006. msgstr "Klarte ikkje få status til monteringspunktet %s"
  2007. #: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209
  2008. #: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39
  2009. #: methods/mirror.cc:97
  2010. #, c-format
  2011. msgid "Unable to change to %s"
  2012. msgstr "Klarte ikkje byta til %s"
  2013. #: apt-pkg/contrib/cdromutl.cc:220
  2014. msgid "Failed to stat the cdrom"
  2015. msgstr "Klarte ikkje få status til CD-ROM"
  2016. #: apt-pkg/contrib/fileutl.cc:168
  2017. #, c-format
  2018. msgid "Not using locking for read only lock file %s"
  2019. msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s"
  2020. #: apt-pkg/contrib/fileutl.cc:173
  2021. #, c-format
  2022. msgid "Could not open lock file %s"
  2023. msgstr "Klarte ikkje opna låsefila %s"
  2024. #: apt-pkg/contrib/fileutl.cc:191
  2025. #, c-format
  2026. msgid "Not using locking for nfs mounted lock file %s"
  2027. msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s"
  2028. #: apt-pkg/contrib/fileutl.cc:195
  2029. #, c-format
  2030. msgid "Could not get lock %s"
  2031. msgstr "Klarte ikkje låsa %s"
  2032. #: apt-pkg/contrib/fileutl.cc:335
  2033. #, c-format
  2034. msgid "List of files can't be created as '%s' is not a directory"
  2035. msgstr ""
  2036. #: apt-pkg/contrib/fileutl.cc:362
  2037. #, c-format
  2038. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2039. msgstr ""
  2040. #: apt-pkg/contrib/fileutl.cc:380
  2041. #, c-format
  2042. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2043. msgstr ""
  2044. #: apt-pkg/contrib/fileutl.cc:389
  2045. #, c-format
  2046. msgid ""
  2047. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2048. msgstr ""
  2049. #: apt-pkg/contrib/fileutl.cc:679
  2050. #, c-format
  2051. msgid "Waited for %s but it wasn't there"
  2052. msgstr "Venta på %s, men den fanst ikkje"
  2053. #: apt-pkg/contrib/fileutl.cc:691
  2054. #, c-format
  2055. msgid "Sub-process %s received a segmentation fault."
  2056. msgstr "Underprosessen %s mottok ein segmenteringsfeil."
  2057. #: apt-pkg/contrib/fileutl.cc:693
  2058. #, fuzzy, c-format
  2059. msgid "Sub-process %s received signal %u."
  2060. msgstr "Underprosessen %s mottok ein segmenteringsfeil."
  2061. #: apt-pkg/contrib/fileutl.cc:697
  2062. #, c-format
  2063. msgid "Sub-process %s returned an error code (%u)"
  2064. msgstr "Underprosessen %s returnerte ein feilkode (%u)"
  2065. #: apt-pkg/contrib/fileutl.cc:699
  2066. #, c-format
  2067. msgid "Sub-process %s exited unexpectedly"
  2068. msgstr "Underprosessen %s avslutta uventa"
  2069. #: apt-pkg/contrib/fileutl.cc:764
  2070. #, c-format
  2071. msgid "Could not open file %s"
  2072. msgstr "Klarte ikkje opna fila %s"
  2073. #: apt-pkg/contrib/fileutl.cc:781
  2074. #, fuzzy, c-format
  2075. msgid "Could not open file descriptor %d"
  2076. msgstr "Klarte ikkje opna røyr for %s"
  2077. #: apt-pkg/contrib/fileutl.cc:841
  2078. #, c-format
  2079. msgid "read, still have %lu to read but none left"
  2080. msgstr "lese, har framleis %lu att å lesa, men ingen att"
  2081. #: apt-pkg/contrib/fileutl.cc:874
  2082. #, c-format
  2083. msgid "write, still have %lu to write but couldn't"
  2084. msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje"
  2085. #: apt-pkg/contrib/fileutl.cc:1010
  2086. #, fuzzy, c-format
  2087. msgid "Problem closing the gzip file %s"
  2088. msgstr "Problem ved låsing av fila"
  2089. #: apt-pkg/contrib/fileutl.cc:1013
  2090. #, fuzzy, c-format
  2091. msgid "Problem closing the file %s"
  2092. msgstr "Problem ved låsing av fila"
  2093. #: apt-pkg/contrib/fileutl.cc:1018
  2094. #, fuzzy, c-format
  2095. msgid "Problem renaming the file %s to %s"
  2096. msgstr "Problem ved synkronisering av fila"
  2097. #: apt-pkg/contrib/fileutl.cc:1029
  2098. #, fuzzy, c-format
  2099. msgid "Problem unlinking the file %s"
  2100. msgstr "Problem ved oppheving av lenkje til fila"
  2101. #: apt-pkg/contrib/fileutl.cc:1042
  2102. msgid "Problem syncing the file"
  2103. msgstr "Problem ved synkronisering av fila"
  2104. #: apt-pkg/pkgcache.cc:145
  2105. msgid "Empty package cache"
  2106. msgstr "Tomt pakkelager"
  2107. #: apt-pkg/pkgcache.cc:151
  2108. msgid "The package cache file is corrupted"
  2109. msgstr "Pakkelagerfila er øydelagd"
  2110. #: apt-pkg/pkgcache.cc:156
  2111. msgid "The package cache file is an incompatible version"
  2112. msgstr "Versjonen til pakkelagerfila er ikkje kompatibel"
  2113. #: apt-pkg/pkgcache.cc:161
  2114. #, c-format
  2115. msgid "This APT does not support the versioning system '%s'"
  2116. msgstr "APT støttar ikkje versjonssystemet «%s»"
  2117. #: apt-pkg/pkgcache.cc:166
  2118. msgid "The package cache was built for a different architecture"
  2119. msgstr "Pakkelageret er bygd for ein annan arkitektur"
  2120. #: apt-pkg/pkgcache.cc:299
  2121. msgid "Depends"
  2122. msgstr "Krav"
  2123. #: apt-pkg/pkgcache.cc:299
  2124. msgid "PreDepends"
  2125. msgstr "Forkrav"
  2126. #: apt-pkg/pkgcache.cc:299
  2127. msgid "Suggests"
  2128. msgstr "Forslag"
  2129. #: apt-pkg/pkgcache.cc:300
  2130. msgid "Recommends"
  2131. msgstr "Tilrådingar"
  2132. #: apt-pkg/pkgcache.cc:300
  2133. msgid "Conflicts"
  2134. msgstr "Konflikt"
  2135. #: apt-pkg/pkgcache.cc:300
  2136. msgid "Replaces"
  2137. msgstr "Byter ut"
  2138. #: apt-pkg/pkgcache.cc:301
  2139. msgid "Obsoletes"
  2140. msgstr "Foreldar"
  2141. #: apt-pkg/pkgcache.cc:301
  2142. msgid "Breaks"
  2143. msgstr ""
  2144. #: apt-pkg/pkgcache.cc:301
  2145. msgid "Enhances"
  2146. msgstr ""
  2147. #: apt-pkg/pkgcache.cc:312
  2148. msgid "important"
  2149. msgstr "viktig"
  2150. #: apt-pkg/pkgcache.cc:312
  2151. msgid "required"
  2152. msgstr "påkravd"
  2153. #: apt-pkg/pkgcache.cc:312
  2154. msgid "standard"
  2155. msgstr "vanleg"
  2156. #: apt-pkg/pkgcache.cc:313
  2157. msgid "optional"
  2158. msgstr "valfri"
  2159. #: apt-pkg/pkgcache.cc:313
  2160. msgid "extra"
  2161. msgstr "tillegg"
  2162. #: apt-pkg/depcache.cc:125 apt-pkg/depcache.cc:154
  2163. msgid "Building dependency tree"
  2164. msgstr "Byggjer kravtre"
  2165. #: apt-pkg/depcache.cc:126
  2166. msgid "Candidate versions"
  2167. msgstr "Kandidatversjonar"
  2168. #: apt-pkg/depcache.cc:155
  2169. msgid "Dependency generation"
  2170. msgstr "Genererer kravforhold"
  2171. #: apt-pkg/depcache.cc:175 apt-pkg/depcache.cc:208 apt-pkg/depcache.cc:212
  2172. #, fuzzy
  2173. msgid "Reading state information"
  2174. msgstr "Flettar informasjon om tilgjengelege pakkar"
  2175. #: apt-pkg/depcache.cc:237
  2176. #, fuzzy, c-format
  2177. msgid "Failed to open StateFile %s"
  2178. msgstr "Klarte ikkje opna %s"
  2179. #: apt-pkg/depcache.cc:243
  2180. #, fuzzy, c-format
  2181. msgid "Failed to write temporary StateFile %s"
  2182. msgstr "Klarte ikkje skriva fila %s"
  2183. #: apt-pkg/tagfile.cc:102
  2184. #, c-format
  2185. msgid "Unable to parse package file %s (1)"
  2186. msgstr "Klarte ikkje tolka pakkefila %s (1)"
  2187. #: apt-pkg/tagfile.cc:189
  2188. #, c-format
  2189. msgid "Unable to parse package file %s (2)"
  2190. msgstr "Klarte ikkje tolka pakkefila %s (2)"
  2191. #: apt-pkg/sourcelist.cc:92
  2192. #, fuzzy, c-format
  2193. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2194. msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
  2195. #: apt-pkg/sourcelist.cc:95
  2196. #, fuzzy, c-format
  2197. msgid "Malformed line %lu in source list %s ([option] too short)"
  2198. msgstr "Misforma linje %lu i kjeldelista %s (dist)"
  2199. #: apt-pkg/sourcelist.cc:106
  2200. #, fuzzy, c-format
  2201. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2202. msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
  2203. #: apt-pkg/sourcelist.cc:112
  2204. #, fuzzy, c-format
  2205. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2206. msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
  2207. #: apt-pkg/sourcelist.cc:115
  2208. #, fuzzy, c-format
  2209. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2210. msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
  2211. #: apt-pkg/sourcelist.cc:128
  2212. #, c-format
  2213. msgid "Malformed line %lu in source list %s (URI)"
  2214. msgstr "Misforma linje %lu i kjeldelista %s (URI)"
  2215. #: apt-pkg/sourcelist.cc:130
  2216. #, c-format
  2217. msgid "Malformed line %lu in source list %s (dist)"
  2218. msgstr "Misforma linje %lu i kjeldelista %s (dist)"
  2219. #: apt-pkg/sourcelist.cc:133
  2220. #, c-format
  2221. msgid "Malformed line %lu in source list %s (URI parse)"
  2222. msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)"
  2223. #: apt-pkg/sourcelist.cc:139
  2224. #, c-format
  2225. msgid "Malformed line %lu in source list %s (absolute dist)"
  2226. msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)"
  2227. #: apt-pkg/sourcelist.cc:146
  2228. #, c-format
  2229. msgid "Malformed line %lu in source list %s (dist parse)"
  2230. msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
  2231. #: apt-pkg/sourcelist.cc:244
  2232. #, c-format
  2233. msgid "Opening %s"
  2234. msgstr "Opnar %s"
  2235. #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:444
  2236. #, c-format
  2237. msgid "Line %u too long in source list %s."
  2238. msgstr "Linja %u i kjeldelista %s er for lang."
  2239. #: apt-pkg/sourcelist.cc:281
  2240. #, c-format
  2241. msgid "Malformed line %u in source list %s (type)"
  2242. msgstr "Misforma linje %u i kjeldelista %s (type)"
  2243. #: apt-pkg/sourcelist.cc:285
  2244. #, fuzzy, c-format
  2245. msgid "Type '%s' is not known on line %u in source list %s"
  2246. msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s"
  2247. #: apt-pkg/packagemanager.cc:335 apt-pkg/packagemanager.cc:733
  2248. #, c-format
  2249. msgid ""
  2250. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2251. "under APT::Immediate-Configure for details. (%d)"
  2252. msgstr ""
  2253. #: apt-pkg/packagemanager.cc:548
  2254. #, c-format
  2255. msgid ""
  2256. "This installation run will require temporarily removing the essential "
  2257. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2258. "you really want to do it, activate the APT::Force-LoopBreak option."
  2259. msgstr ""
  2260. "Denne installasjonen vil verta nøydd til å mellombels fjerna den nødvendige "
  2261. "pakken %s på grunn av ei konflikt/forkrav-løkkje. Dette er ofte uheldig, men "
  2262. "om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-"
  2263. "LoopBreak»."
  2264. #: apt-pkg/packagemanager.cc:596
  2265. #, c-format
  2266. msgid ""
  2267. "Could not perform immediate configuration on already unpacked '%s'. Please "
  2268. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2269. msgstr ""
  2270. #: apt-pkg/pkgrecords.cc:32
  2271. #, c-format
  2272. msgid "Index file type '%s' is not supported"
  2273. msgstr "Indeksfiltypen «%s» er ikkje støtta"
  2274. #: apt-pkg/algorithms.cc:247
  2275. #, c-format
  2276. msgid ""
  2277. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2278. msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje."
  2279. #: apt-pkg/algorithms.cc:1158
  2280. msgid ""
  2281. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2282. "held packages."
  2283. msgstr ""
  2284. "Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar "
  2285. "som er haldne tilbake."
  2286. #: apt-pkg/algorithms.cc:1160
  2287. msgid "Unable to correct problems, you have held broken packages."
  2288. msgstr ""
  2289. "Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake."
  2290. #: apt-pkg/algorithms.cc:1436 apt-pkg/algorithms.cc:1438
  2291. #, fuzzy
  2292. msgid ""
  2293. "Some index files failed to download. They have been ignored, or old ones "
  2294. "used instead."
  2295. msgstr ""
  2296. "Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle "
  2297. "filer er brukte i staden."
  2298. #: apt-pkg/acquire.cc:79
  2299. #, fuzzy, c-format
  2300. msgid "List directory %spartial is missing."
  2301. msgstr "Listekatalogen %spartial manglar."
  2302. #: apt-pkg/acquire.cc:83
  2303. #, fuzzy, c-format
  2304. msgid "Archives directory %spartial is missing."
  2305. msgstr "Arkivkatalogen %spartial manglar."
  2306. #: apt-pkg/acquire.cc:91
  2307. #, fuzzy, c-format
  2308. msgid "Unable to lock directory %s"
  2309. msgstr "Klarte ikkje låsa listekatalogen"
  2310. #. only show the ETA if it makes sense
  2311. #. two days
  2312. #: apt-pkg/acquire.cc:857
  2313. #, c-format
  2314. msgid "Retrieving file %li of %li (%s remaining)"
  2315. msgstr ""
  2316. #: apt-pkg/acquire.cc:859
  2317. #, fuzzy, c-format
  2318. msgid "Retrieving file %li of %li"
  2319. msgstr "Les filliste"
  2320. #: apt-pkg/acquire-worker.cc:110
  2321. #, c-format
  2322. msgid "The method driver %s could not be found."
  2323. msgstr "Finn ikkje metodedrivaren %s."
  2324. #: apt-pkg/acquire-worker.cc:159
  2325. #, c-format
  2326. msgid "Method %s did not start correctly"
  2327. msgstr "Metoden %s starta ikkje rett"
  2328. #: apt-pkg/acquire-worker.cc:423
  2329. #, fuzzy, c-format
  2330. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2331. msgstr ""
  2332. "Skifte av medum: Set inn plata merkt\n"
  2333. " «%s»\n"
  2334. "i stasjonen «%s» og trykk Enter.\n"
  2335. #: apt-pkg/init.cc:143
  2336. #, c-format
  2337. msgid "Packaging system '%s' is not supported"
  2338. msgstr "Pakkesystemet «%s» er ikkje støtta"
  2339. #: apt-pkg/init.cc:159
  2340. msgid "Unable to determine a suitable packaging system type"
  2341. msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype"
  2342. #: apt-pkg/clean.cc:56
  2343. #, c-format
  2344. msgid "Unable to stat %s."
  2345. msgstr "Klarte ikkje få status på %s."
  2346. #: apt-pkg/srcrecords.cc:44
  2347. msgid "You must put some 'source' URIs in your sources.list"
  2348. msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list."
  2349. #: apt-pkg/cachefile.cc:84
  2350. msgid "The package lists or status file could not be parsed or opened."
  2351. msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila."
  2352. #: apt-pkg/cachefile.cc:88
  2353. msgid "You may want to run apt-get update to correct these problems"
  2354. msgstr ""
  2355. "Du vil kanskje prøva å retta på desse problema ved å køyra «apt-get update»."
  2356. #: apt-pkg/cachefile.cc:106
  2357. msgid "The list of sources could not be read."
  2358. msgstr "Kjeldelista kan ikkje lesast."
  2359. #: apt-pkg/policy.cc:375
  2360. #, fuzzy, c-format
  2361. msgid "Invalid record in the preferences file %s, no Package header"
  2362. msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud"
  2363. #: apt-pkg/policy.cc:397
  2364. #, c-format
  2365. msgid "Did not understand pin type %s"
  2366. msgstr "Skjønar ikkje spikringstypen %s"
  2367. #: apt-pkg/policy.cc:405
  2368. msgid "No priority (or zero) specified for pin"
  2369. msgstr "Ingen prioritet (eller null) oppgitt for spiker"
  2370. #: apt-pkg/pkgcachegen.cc:80
  2371. msgid "Cache has an incompatible versioning system"
  2372. msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem"
  2373. #: apt-pkg/pkgcachegen.cc:187
  2374. #, c-format
  2375. msgid "Error occurred while processing %s (NewPackage)"
  2376. msgstr "Feil ved behandling av %s (NewPackage)"
  2377. #: apt-pkg/pkgcachegen.cc:204
  2378. #, c-format
  2379. msgid "Error occurred while processing %s (UsePackage1)"
  2380. msgstr "Feil ved behandling av %s (UsePackage1)"
  2381. #: apt-pkg/pkgcachegen.cc:242
  2382. #, fuzzy, c-format
  2383. msgid "Error occurred while processing %s (NewFileDesc1)"
  2384. msgstr "Feil ved behandling av %s (NewFileVer1)"
  2385. #: apt-pkg/pkgcachegen.cc:274
  2386. #, c-format
  2387. msgid "Error occurred while processing %s (UsePackage2)"
  2388. msgstr "Feil ved behandling av %s (UsePackage2)"
  2389. #: apt-pkg/pkgcachegen.cc:278
  2390. #, c-format
  2391. msgid "Error occurred while processing %s (NewFileVer1)"
  2392. msgstr "Feil ved behandling av %s (NewFileVer1)"
  2393. #: apt-pkg/pkgcachegen.cc:295 apt-pkg/pkgcachegen.cc:305
  2394. #: apt-pkg/pkgcachegen.cc:313
  2395. #, fuzzy, c-format
  2396. msgid "Error occurred while processing %s (NewVersion%d)"
  2397. msgstr "Feil ved behandling av %s (NewVersion1)"
  2398. #: apt-pkg/pkgcachegen.cc:309
  2399. #, c-format
  2400. msgid "Error occurred while processing %s (UsePackage3)"
  2401. msgstr "Feil ved behandling av %s (UsePackage3)"
  2402. #: apt-pkg/pkgcachegen.cc:342
  2403. #, fuzzy, c-format
  2404. msgid "Error occurred while processing %s (NewFileDesc2)"
  2405. msgstr "Feil ved behandling av %s (NewFileVer1)"
  2406. #: apt-pkg/pkgcachegen.cc:348
  2407. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2408. msgstr "Jøss, du har overgått talet på pakkenamn som APT kan handtera."
  2409. #: apt-pkg/pkgcachegen.cc:351
  2410. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2411. msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
  2412. #: apt-pkg/pkgcachegen.cc:354
  2413. #, fuzzy
  2414. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2415. msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
  2416. #: apt-pkg/pkgcachegen.cc:357
  2417. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2418. msgstr "Jøss, du har overgått talet på krav som APT kan handtera."
  2419. #: apt-pkg/pkgcachegen.cc:386
  2420. #, c-format
  2421. msgid "Error occurred while processing %s (FindPkg)"
  2422. msgstr "Feil ved behandling av %s (FindPkg)"
  2423. #: apt-pkg/pkgcachegen.cc:400
  2424. #, c-format
  2425. msgid "Error occurred while processing %s (CollectFileProvides)"
  2426. msgstr "Feil ved behandling av %s (CollectFileProvides)"
  2427. #: apt-pkg/pkgcachegen.cc:406
  2428. #, c-format
  2429. msgid "Package %s %s was not found while processing file dependencies"
  2430. msgstr "Fann ikkje pakken %s %s ved behandling av filkrav"
  2431. #: apt-pkg/pkgcachegen.cc:960
  2432. #, c-format
  2433. msgid "Couldn't stat source package list %s"
  2434. msgstr "Klarte ikkje få status på kjeldepakkelista %s"
  2435. #: apt-pkg/pkgcachegen.cc:1065
  2436. msgid "Collecting File Provides"
  2437. msgstr "Samlar inn filtilbod"
  2438. #: apt-pkg/pkgcachegen.cc:1243 apt-pkg/pkgcachegen.cc:1250
  2439. msgid "IO Error saving source cache"
  2440. msgstr "IU-feil ved lagring av kjeldelager"
  2441. #: apt-pkg/acquire-item.cc:135
  2442. #, c-format
  2443. msgid "rename failed, %s (%s -> %s)."
  2444. msgstr "endring av namn mislukkast, %s (%s -> %s)."
  2445. #: apt-pkg/acquire-item.cc:636
  2446. msgid "MD5Sum mismatch"
  2447. msgstr "Feil MD5-sum"
  2448. #: apt-pkg/acquire-item.cc:900 apt-pkg/acquire-item.cc:1846
  2449. #: apt-pkg/acquire-item.cc:1989
  2450. #, fuzzy
  2451. msgid "Hash Sum mismatch"
  2452. msgstr "Feil MD5-sum"
  2453. #: apt-pkg/acquire-item.cc:1388
  2454. #, c-format
  2455. msgid ""
  2456. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2457. "or malformed file)"
  2458. msgstr ""
  2459. #: apt-pkg/acquire-item.cc:1403
  2460. #, fuzzy, c-format
  2461. msgid "Unable to find hash sum for '%s' in Release file"
  2462. msgstr "Klarte ikkje tolka pakkefila %s (1)"
  2463. #: apt-pkg/acquire-item.cc:1439
  2464. msgid "There is no public key available for the following key IDs:\n"
  2465. msgstr ""
  2466. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2467. #. the time since then the file is invalid - formated in the same way as in
  2468. #. the download progress display (e.g. 7d 3h 42min 1s)
  2469. #: apt-pkg/acquire-item.cc:1476
  2470. #, c-format
  2471. msgid "Release file expired, ignoring %s (invalid since %s)"
  2472. msgstr ""
  2473. #: apt-pkg/acquire-item.cc:1497
  2474. #, c-format
  2475. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2476. msgstr ""
  2477. #: apt-pkg/acquire-item.cc:1530
  2478. #, c-format
  2479. msgid ""
  2480. "A error occurred during the signature verification. The repository is not "
  2481. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2482. msgstr ""
  2483. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2484. #: apt-pkg/acquire-item.cc:1540 apt-pkg/acquire-item.cc:1545
  2485. #, c-format
  2486. msgid "GPG error: %s: %s"
  2487. msgstr ""
  2488. #: apt-pkg/acquire-item.cc:1637
  2489. #, c-format
  2490. msgid ""
  2491. "I wasn't able to locate a file for the %s package. This might mean you need "
  2492. "to manually fix this package. (due to missing arch)"
  2493. msgstr ""
  2494. "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv "
  2495. "(fordi arkitekturen manglar)."
  2496. #: apt-pkg/acquire-item.cc:1696
  2497. #, c-format
  2498. msgid ""
  2499. "I wasn't able to locate a file for the %s package. This might mean you need "
  2500. "to manually fix this package."
  2501. msgstr ""
  2502. "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv."
  2503. #: apt-pkg/acquire-item.cc:1751
  2504. #, c-format
  2505. msgid ""
  2506. "The package index files are corrupted. No Filename: field for package %s."
  2507. msgstr ""
  2508. "Pakkeindeksfilene er øydelagde. Feltet «Filename:» manglar for pakken %s."
  2509. #: apt-pkg/acquire-item.cc:1838
  2510. msgid "Size mismatch"
  2511. msgstr "Feil storleik"
  2512. #: apt-pkg/indexrecords.cc:53
  2513. #, fuzzy, c-format
  2514. msgid "Unable to parse Release file %s"
  2515. msgstr "Klarte ikkje tolka pakkefila %s (1)"
  2516. #: apt-pkg/indexrecords.cc:63
  2517. #, fuzzy, c-format
  2518. msgid "No sections in Release file %s"
  2519. msgstr "Merk, vel %s i staden for %s\n"
  2520. #: apt-pkg/indexrecords.cc:97
  2521. #, c-format
  2522. msgid "No Hash entry in Release file %s"
  2523. msgstr ""
  2524. #: apt-pkg/indexrecords.cc:110
  2525. #, fuzzy, c-format
  2526. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2527. msgstr "Ugyldig linje i avleiingsfila: %s"
  2528. #: apt-pkg/indexrecords.cc:125
  2529. #, fuzzy, c-format
  2530. msgid "Invalid 'Date' entry in Release file %s"
  2531. msgstr "Klarte ikkje tolka pakkefila %s (1)"
  2532. #: apt-pkg/vendorlist.cc:71
  2533. #, c-format
  2534. msgid "Vendor block %s contains no fingerprint"
  2535. msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk"
  2536. #: apt-pkg/cdrom.cc:525
  2537. #, c-format
  2538. msgid ""
  2539. "Using CD-ROM mount point %s\n"
  2540. "Mounting CD-ROM\n"
  2541. msgstr ""
  2542. "Brukar monteringspunktet %s for CD-ROM\n"
  2543. "Monterer CD-ROM\n"
  2544. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:631
  2545. msgid "Identifying.. "
  2546. msgstr "Identifiserer ... "
  2547. #: apt-pkg/cdrom.cc:562
  2548. #, c-format
  2549. msgid "Stored label: %s\n"
  2550. msgstr "Lagra etikett: %s \n"
  2551. #: apt-pkg/cdrom.cc:571 apt-pkg/cdrom.cc:847
  2552. #, fuzzy
  2553. msgid "Unmounting CD-ROM...\n"
  2554. msgstr "Avmonterer CD-ROM ..."
  2555. #: apt-pkg/cdrom.cc:591
  2556. #, c-format
  2557. msgid "Using CD-ROM mount point %s\n"
  2558. msgstr "Brukar monteringspunktet %s for CD-ROM\n"
  2559. #: apt-pkg/cdrom.cc:609
  2560. msgid "Unmounting CD-ROM\n"
  2561. msgstr "Avmonterer CD-ROM\n"
  2562. #: apt-pkg/cdrom.cc:614
  2563. msgid "Waiting for disc...\n"
  2564. msgstr "Ventar på disk ...\n"
  2565. #: apt-pkg/cdrom.cc:623
  2566. msgid "Mounting CD-ROM...\n"
  2567. msgstr "Monterer CD-ROM ...\n"
  2568. #: apt-pkg/cdrom.cc:642
  2569. msgid "Scanning disc for index files..\n"
  2570. msgstr "Leitar etter indeksfiler på disken ...\n"
  2571. #: apt-pkg/cdrom.cc:684
  2572. #, fuzzy, c-format
  2573. msgid ""
  2574. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2575. "%zu signatures\n"
  2576. msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
  2577. #: apt-pkg/cdrom.cc:695
  2578. msgid ""
  2579. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2580. "wrong architecture?"
  2581. msgstr ""
  2582. #: apt-pkg/cdrom.cc:722
  2583. #, fuzzy, c-format
  2584. msgid "Found label '%s'\n"
  2585. msgstr "Lagra etikett: %s \n"
  2586. #: apt-pkg/cdrom.cc:751
  2587. msgid "That is not a valid name, try again.\n"
  2588. msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n"
  2589. #: apt-pkg/cdrom.cc:768
  2590. #, c-format
  2591. msgid ""
  2592. "This disc is called: \n"
  2593. "'%s'\n"
  2594. msgstr ""
  2595. "Disken vert kalla: \n"
  2596. "«%s»\n"
  2597. #: apt-pkg/cdrom.cc:770
  2598. msgid "Copying package lists..."
  2599. msgstr "Kopierer pakkelister ..."
  2600. #: apt-pkg/cdrom.cc:797
  2601. msgid "Writing new source list\n"
  2602. msgstr "Skriv ny kjeldeliste\n"
  2603. #: apt-pkg/cdrom.cc:805
  2604. msgid "Source list entries for this disc are:\n"
  2605. msgstr "Kjeldelisteoppføringar for denne disken er:\n"
  2606. #: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:909
  2607. #, c-format
  2608. msgid "Wrote %i records.\n"
  2609. msgstr "Skreiv %i postar.\n"
  2610. #: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:911
  2611. #, c-format
  2612. msgid "Wrote %i records with %i missing files.\n"
  2613. msgstr "Skreiv %i postar med %i manglande filer.\n"
  2614. #: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:914
  2615. #, c-format
  2616. msgid "Wrote %i records with %i mismatched files\n"
  2617. msgstr "Skreiv %i postar med %i filer som ikkje passa\n"
  2618. #: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:917
  2619. #, c-format
  2620. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2621. msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n"
  2622. #: apt-pkg/indexcopy.cc:537
  2623. #, fuzzy, c-format
  2624. msgid "Skipping nonexistent file %s"
  2625. msgstr "Opnar oppsettsfila %s"
  2626. #: apt-pkg/indexcopy.cc:543
  2627. #, c-format
  2628. msgid "Can't find authentication record for: %s"
  2629. msgstr ""
  2630. #: apt-pkg/indexcopy.cc:549
  2631. #, fuzzy, c-format
  2632. msgid "Hash mismatch for: %s"
  2633. msgstr "Feil MD5-sum"
  2634. #: apt-pkg/cacheset.cc:337
  2635. #, c-format
  2636. msgid "Release '%s' for '%s' was not found"
  2637. msgstr "Fann ikkje utgåva «%s» av «%s»"
  2638. #: apt-pkg/cacheset.cc:340
  2639. #, c-format
  2640. msgid "Version '%s' for '%s' was not found"
  2641. msgstr "Fann ikkje versjonen «%s» av «%s»"
  2642. #: apt-pkg/cacheset.cc:447
  2643. #, fuzzy, c-format
  2644. msgid "Couldn't find task '%s'"
  2645. msgstr "Fann ikkje pakken %s"
  2646. #: apt-pkg/cacheset.cc:454
  2647. #, fuzzy, c-format
  2648. msgid "Couldn't find any package by regex '%s'"
  2649. msgstr "Fann ikkje pakken %s"
  2650. #: apt-pkg/cacheset.cc:467
  2651. #, c-format
  2652. msgid "Can't select versions from package '%s' as it is purely virtual"
  2653. msgstr ""
  2654. #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483
  2655. #, c-format
  2656. msgid ""
  2657. "Can't select installed nor candidate version from package '%s' as it has "
  2658. "neither of them"
  2659. msgstr ""
  2660. #: apt-pkg/cacheset.cc:491
  2661. #, c-format
  2662. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2663. msgstr ""
  2664. #: apt-pkg/cacheset.cc:499
  2665. #, c-format
  2666. msgid "Can't select candidate version from package %s as it has no candidate"
  2667. msgstr ""
  2668. #: apt-pkg/cacheset.cc:507
  2669. #, c-format
  2670. msgid "Can't select installed version from package %s as it is not installed"
  2671. msgstr ""
  2672. #: apt-pkg/deb/dpkgpm.cc:54
  2673. #, fuzzy, c-format
  2674. msgid "Installing %s"
  2675. msgstr " Installert: "
  2676. #: apt-pkg/deb/dpkgpm.cc:55 apt-pkg/deb/dpkgpm.cc:848
  2677. #, fuzzy, c-format
  2678. msgid "Configuring %s"
  2679. msgstr "Koplar til %s"
  2680. #: apt-pkg/deb/dpkgpm.cc:56 apt-pkg/deb/dpkgpm.cc:855
  2681. #, fuzzy, c-format
  2682. msgid "Removing %s"
  2683. msgstr "Opnar %s"
  2684. #: apt-pkg/deb/dpkgpm.cc:57
  2685. #, fuzzy, c-format
  2686. msgid "Completely removing %s"
  2687. msgstr "Klarte ikkje fjerna %s"
  2688. #: apt-pkg/deb/dpkgpm.cc:58
  2689. #, c-format
  2690. msgid "Noting disappearance of %s"
  2691. msgstr ""
  2692. #: apt-pkg/deb/dpkgpm.cc:59
  2693. #, c-format
  2694. msgid "Running post-installation trigger %s"
  2695. msgstr ""
  2696. #. FIXME: use a better string after freeze
  2697. #: apt-pkg/deb/dpkgpm.cc:654
  2698. #, fuzzy, c-format
  2699. msgid "Directory '%s' missing"
  2700. msgstr "Listekatalogen %spartial manglar."
  2701. #: apt-pkg/deb/dpkgpm.cc:669 apt-pkg/deb/dpkgpm.cc:689
  2702. #, fuzzy, c-format
  2703. msgid "Could not open file '%s'"
  2704. msgstr "Klarte ikkje opna fila %s"
  2705. #: apt-pkg/deb/dpkgpm.cc:841
  2706. #, fuzzy, c-format
  2707. msgid "Preparing %s"
  2708. msgstr "Opnar %s"
  2709. #: apt-pkg/deb/dpkgpm.cc:842
  2710. #, fuzzy, c-format
  2711. msgid "Unpacking %s"
  2712. msgstr "Opnar %s"
  2713. #: apt-pkg/deb/dpkgpm.cc:847
  2714. #, fuzzy, c-format
  2715. msgid "Preparing to configure %s"
  2716. msgstr "Opnar oppsettsfila %s"
  2717. #: apt-pkg/deb/dpkgpm.cc:849
  2718. #, fuzzy, c-format
  2719. msgid "Installed %s"
  2720. msgstr " Installert: "
  2721. #: apt-pkg/deb/dpkgpm.cc:854
  2722. #, c-format
  2723. msgid "Preparing for removal of %s"
  2724. msgstr ""
  2725. #: apt-pkg/deb/dpkgpm.cc:856
  2726. #, fuzzy, c-format
  2727. msgid "Removed %s"
  2728. msgstr "Tilrådingar"
  2729. #: apt-pkg/deb/dpkgpm.cc:861
  2730. #, fuzzy, c-format
  2731. msgid "Preparing to completely remove %s"
  2732. msgstr "Opnar oppsettsfila %s"
  2733. #: apt-pkg/deb/dpkgpm.cc:862
  2734. #, fuzzy, c-format
  2735. msgid "Completely removed %s"
  2736. msgstr "Klarte ikkje fjerna %s"
  2737. #: apt-pkg/deb/dpkgpm.cc:1082
  2738. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2739. msgstr ""
  2740. #: apt-pkg/deb/dpkgpm.cc:1113
  2741. msgid "Running dpkg"
  2742. msgstr ""
  2743. #: apt-pkg/deb/dpkgpm.cc:1338
  2744. msgid "No apport report written because MaxReports is reached already"
  2745. msgstr ""
  2746. #. check if its not a follow up error
  2747. #: apt-pkg/deb/dpkgpm.cc:1343
  2748. msgid "dependency problems - leaving unconfigured"
  2749. msgstr ""
  2750. #: apt-pkg/deb/dpkgpm.cc:1345
  2751. msgid ""
  2752. "No apport report written because the error message indicates its a followup "
  2753. "error from a previous failure."
  2754. msgstr ""
  2755. #: apt-pkg/deb/dpkgpm.cc:1351
  2756. msgid ""
  2757. "No apport report written because the error message indicates a disk full "
  2758. "error"
  2759. msgstr ""
  2760. #: apt-pkg/deb/dpkgpm.cc:1357
  2761. msgid ""
  2762. "No apport report written because the error message indicates a out of memory "
  2763. "error"
  2764. msgstr ""
  2765. #: apt-pkg/deb/dpkgpm.cc:1364
  2766. msgid ""
  2767. "No apport report written because the error message indicates a dpkg I/O error"
  2768. msgstr ""
  2769. #: apt-pkg/deb/debsystem.cc:69
  2770. #, c-format
  2771. msgid ""
  2772. "Unable to lock the administration directory (%s), is another process using "
  2773. "it?"
  2774. msgstr ""
  2775. #: apt-pkg/deb/debsystem.cc:72
  2776. #, fuzzy, c-format
  2777. msgid "Unable to lock the administration directory (%s), are you root?"
  2778. msgstr "Klarte ikkje låsa listekatalogen"
  2779. #. TRANSLATORS: the %s contains the recovery command, usually
  2780. #. dpkg --configure -a
  2781. #: apt-pkg/deb/debsystem.cc:88
  2782. #, c-format
  2783. msgid ""
  2784. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2785. msgstr ""
  2786. #: apt-pkg/deb/debsystem.cc:106
  2787. msgid "Not locked"
  2788. msgstr ""
  2789. #. FIXME: fallback to a default mirror here instead
  2790. #. and provide a config option to define that default
  2791. #: methods/mirror.cc:260
  2792. #, c-format
  2793. msgid "No mirror file '%s' found "
  2794. msgstr ""
  2795. #. FIXME: fallback to a default mirror here instead
  2796. #. and provide a config option to define that default
  2797. #: methods/mirror.cc:267
  2798. #, fuzzy, c-format
  2799. msgid "Can not read mirror file '%s'"
  2800. msgstr "Klarte ikkje opna fila %s"
  2801. #: methods/mirror.cc:422
  2802. #, c-format
  2803. msgid "[Mirror: %s]"
  2804. msgstr ""
  2805. #: methods/rred.cc:503
  2806. #, c-format
  2807. msgid ""
  2808. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2809. "to be corrupt."
  2810. msgstr ""
  2811. #: methods/rred.cc:508
  2812. #, c-format
  2813. msgid ""
  2814. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2815. "to be corrupt."
  2816. msgstr ""
  2817. #: methods/rsh.cc:330
  2818. msgid "Connection closed prematurely"
  2819. msgstr "Sambandet vart uventa stengd"
  2820. #~ msgid "Internal error, could not locate member"
  2821. #~ msgstr "Intern feil, fann ikkje medlem"
  2822. #~ msgid "Error occurred while processing %s (NewVersion2)"
  2823. #~ msgstr "Feil ved behandling av %s (NewVersion2)"
  2824. #~ msgid "Malformed line %u in source list %s (vendor id)"
  2825. #~ msgstr "Misforma linje %u i kjeldelista %s (utgjevar-ID)"
  2826. #, fuzzy
  2827. #~ msgid "Couldn't access keyring: '%s'"
  2828. #~ msgstr "Klarte ikkje slå opp «%s»"
  2829. #, fuzzy
  2830. #~ msgid "Could not patch file"
  2831. #~ msgstr "Klarte ikkje opna fila %s"
  2832. #~ msgid " %4i %s\n"
  2833. #~ msgstr " %4i %s\n"
  2834. #~ msgid "%4i %s\n"
  2835. #~ msgstr "%4i %s\n"
  2836. #, fuzzy
  2837. #~ msgid "Processing triggers for %s"
  2838. #~ msgstr "Feil ved lesing av katalogen %s"
  2839. #~ msgid ""
  2840. #~ "Since you only requested a single operation it is extremely likely that\n"
  2841. #~ "the package is simply not installable and a bug report against\n"
  2842. #~ "that package should be filed."
  2843. #~ msgstr ""
  2844. #~ "Sidan du berre har valt ein enkel operasjon, er det svært sannsynleg at\n"
  2845. #~ "pakken rett og slett ikkje lèt seg installera. I såfall bør du senda\n"
  2846. #~ "feilmelding."
  2847. #, fuzzy
  2848. #~ msgid "Line %d too long (max %lu)"
  2849. #~ msgstr "Linja %d er for lang (maks %d)"
  2850. #, fuzzy
  2851. #~ msgid "Line %d too long (max %d)"
  2852. #~ msgstr "Linja %d er for lang (maks %d)"
  2853. #, fuzzy
  2854. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2855. #~ msgstr "Feil ved behandling av %s (NewFileVer1)"
  2856. #, fuzzy
  2857. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2858. #~ msgstr "Feil ved behandling av %s (NewFileVer1)"
  2859. #, fuzzy
  2860. #~ msgid "Stored label: %s \n"
  2861. #~ msgstr "Lagra etikett: %s \n"
  2862. #, fuzzy
  2863. #~ msgid ""
  2864. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  2865. #~ "%i signatures\n"
  2866. #~ msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
  2867. #, fuzzy
  2868. #~ msgid "openpty failed\n"
  2869. #~ msgstr "Utvalet mislukkast"
  2870. #~ msgid "File date has changed %s"
  2871. #~ msgstr "Fildatoen er endra %s"
  2872. #~ msgid "Reading file list"
  2873. #~ msgstr "Les filliste"
  2874. #, fuzzy
  2875. #~ msgid "Could not execute "
  2876. #~ msgstr "Klarte ikkje låsa %s"
  2877. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2878. #~ msgstr "Ukjend utgjevar-ID «%s» i linja %u i kjeldelista %s"