nn.po 111 KB

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