nn.po 111 KB

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