nn.po 87 KB

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