nn.po 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054
  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-09-26 11:38+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:797 cmdline/apt-cache.cc:1021
  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:1221
  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:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  126. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  127. #: cmdline/apt-get.cc:2651 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:1725
  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:77
  206. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  207. msgstr ""
  208. #: cmdline/apt-cdrom.cc:92
  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:114
  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:830
  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:1720
  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:669
  640. msgid "Correcting dependencies..."
  641. msgstr "Rettar på krav ..."
  642. #: cmdline/apt-get.cc:672
  643. msgid " failed."
  644. msgstr " mislukkast."
  645. #: cmdline/apt-get.cc:675
  646. msgid "Unable to correct dependencies"
  647. msgstr "Klarte ikkje retta på krav"
  648. #: cmdline/apt-get.cc:678
  649. msgid "Unable to minimize the upgrade set"
  650. msgstr "Klarte ikkje minimera oppgraderingsmengda"
  651. #: cmdline/apt-get.cc:680
  652. msgid " Done"
  653. msgstr " Ferdig"
  654. #: cmdline/apt-get.cc:684
  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:687
  658. msgid "Unmet dependencies. Try using -f."
  659. msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»."
  660. #: cmdline/apt-get.cc:712
  661. msgid "WARNING: The following packages cannot be authenticated!"
  662. msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane."
  663. #: cmdline/apt-get.cc:716
  664. msgid "Authentication warning overridden.\n"
  665. msgstr ""
  666. #: cmdline/apt-get.cc:723
  667. msgid "Install these packages without verification [y/N]? "
  668. msgstr "Installer desse pakkane utan verifikasjon [j/N]? "
  669. #: cmdline/apt-get.cc:725
  670. msgid "Some packages could not be authenticated"
  671. msgstr "Nokre pakkar kunne ikkje bli autentisert"
  672. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886
  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:775
  676. msgid "Internal error, InstallPackages was called with broken packages!"
  677. msgstr ""
  678. #: cmdline/apt-get.cc:784
  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:795
  682. #, fuzzy
  683. msgid "Internal error, Ordering didn't finish"
  684. msgstr "Intern feil ved tilleggjing av avleiing"
  685. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095
  686. msgid "Unable to lock the download directory"
  687. msgstr "Klarte ikkje låsa nedlastingskatalogen"
  688. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392
  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:836
  693. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  694. msgstr ""
  695. #: cmdline/apt-get.cc:841
  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:844
  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:849
  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:852
  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:866 cmdline/apt-get.cc:2238
  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:876
  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:892 cmdline/apt-get.cc:912
  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:894
  724. msgid "Yes, do as I say!"
  725. msgstr "Ja, gjer som eg seier!"
  726. #: cmdline/apt-get.cc:896
  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:902 cmdline/apt-get.cc:921
  737. msgid "Abort."
  738. msgstr "Avbryt."
  739. #: cmdline/apt-get.cc:917
  740. msgid "Do you want to continue [Y/n]? "
  741. msgstr "Vil du halda fram [J/n]? "
  742. #: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389
  743. #, c-format
  744. msgid "Failed to fetch %s %s\n"
  745. msgstr "Klarte ikkje henta %s %s\n"
  746. #: cmdline/apt-get.cc:1007
  747. msgid "Some files failed to download"
  748. msgstr "Klarte ikkje henta nokre av filene"
  749. #: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298
  750. msgid "Download complete and in download only mode"
  751. msgstr "Nedlastinga er ferdig i nedlastingsmodus"
  752. #: cmdline/apt-get.cc:1014
  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:1018
  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:1023
  763. msgid "Unable to correct missing packages."
  764. msgstr "Klarte ikkje retta opp manglande pakkar."
  765. #: cmdline/apt-get.cc:1024
  766. msgid "Aborting install."
  767. msgstr "Avbryt installasjon."
  768. #: cmdline/apt-get.cc:1082
  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:1093
  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:1111
  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:1122
  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:1134
  787. msgid " [Installed]"
  788. msgstr " [Installert]"
  789. #: cmdline/apt-get.cc:1139
  790. msgid "You should explicitly select one to install."
  791. msgstr "Du må velja ein som skal installerast."
  792. #: cmdline/apt-get.cc:1144
  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:1163
  803. msgid "However the following packages replace it:"
  804. msgstr "Dei følgjande pakkane kan brukast i staden:"
  805. #: cmdline/apt-get.cc:1166
  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:1186
  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:1194
  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:1223
  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:1225
  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:1231
  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:1348
  830. #, c-format
  831. msgid "No source package '%s' picking '%s' instead\n"
  832. msgstr ""
  833. #: cmdline/apt-get.cc:1385
  834. msgid "The update command takes no arguments"
  835. msgstr "Oppdateringskommandoen tek ingen argument"
  836. #: cmdline/apt-get.cc:1398
  837. msgid "Unable to lock the list directory"
  838. msgstr "Klarte ikkje låsa listekatalogen"
  839. #: cmdline/apt-get.cc:1454
  840. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  841. msgstr ""
  842. #: cmdline/apt-get.cc:1503
  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:1505
  849. #, fuzzy, c-format
  850. msgid "%lu packages were automatically installed and are no longer required.\n"
  851. msgstr "Dei følgjande NYE pakkane vil verta installerte:"
  852. #: cmdline/apt-get.cc:1506
  853. msgid "Use 'apt-get autoremove' to remove them."
  854. msgstr ""
  855. #: cmdline/apt-get.cc:1511
  856. msgid ""
  857. "Hmm, seems like the AutoRemover destroyed something which really\n"
  858. "shouldn't happen. Please file a bug report against apt."
  859. msgstr ""
  860. #.
  861. #. if (Packages == 1)
  862. #. {
  863. #. c1out << endl;
  864. #. c1out <<
  865. #. _("Since you only requested a single operation it is extremely likely that\n"
  866. #. "the package is simply not installable and a bug report against\n"
  867. #. "that package should be filed.") << endl;
  868. #. }
  869. #.
  870. #: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804
  871. msgid "The following information may help to resolve the situation:"
  872. msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:"
  873. #: cmdline/apt-get.cc:1518
  874. #, fuzzy
  875. msgid "Internal Error, AutoRemover broke stuff"
  876. msgstr "Intern feil. AllUpgrade øydelagde noko"
  877. #: cmdline/apt-get.cc:1537
  878. msgid "Internal error, AllUpgrade broke stuff"
  879. msgstr "Intern feil. AllUpgrade øydelagde noko"
  880. #: cmdline/apt-get.cc:1592
  881. #, fuzzy, c-format
  882. msgid "Couldn't find task %s"
  883. msgstr "Fann ikkje pakken %s"
  884. #: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743
  885. #, c-format
  886. msgid "Couldn't find package %s"
  887. msgstr "Fann ikkje pakken %s"
  888. #: cmdline/apt-get.cc:1730
  889. #, c-format
  890. msgid "Note, selecting %s for regex '%s'\n"
  891. msgstr "Merk, vel %s i staden for regex «%s»\n"
  892. #: cmdline/apt-get.cc:1761
  893. #, fuzzy, c-format
  894. msgid "%s set to manually installed.\n"
  895. msgstr "men %s skal installerast"
  896. #: cmdline/apt-get.cc:1774
  897. msgid "You might want to run `apt-get -f install' to correct these:"
  898. msgstr "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
  899. #: cmdline/apt-get.cc:1777
  900. msgid ""
  901. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  902. "solution)."
  903. msgstr ""
  904. "Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja "
  905. "ei løysing)."
  906. #: cmdline/apt-get.cc:1789
  907. msgid ""
  908. "Some packages could not be installed. This may mean that you have\n"
  909. "requested an impossible situation or if you are using the unstable\n"
  910. "distribution that some required packages have not yet been created\n"
  911. "or been moved out of Incoming."
  912. msgstr ""
  913. "Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n"
  914. "valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n"
  915. "distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n"
  916. "er laga enno eller at dei framleis ligg i «Incoming»."
  917. #: cmdline/apt-get.cc:1807
  918. msgid "Broken packages"
  919. msgstr "Øydelagde pakkar"
  920. #: cmdline/apt-get.cc:1836
  921. msgid "The following extra packages will be installed:"
  922. msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
  923. #: cmdline/apt-get.cc:1925
  924. msgid "Suggested packages:"
  925. msgstr "Føreslåtte pakkar:"
  926. #: cmdline/apt-get.cc:1926
  927. msgid "Recommended packages:"
  928. msgstr "Tilrådde pakkar"
  929. #: cmdline/apt-get.cc:1955
  930. msgid "Calculating upgrade... "
  931. msgstr "Reknar ut oppgradering ... "
  932. #: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112
  933. msgid "Failed"
  934. msgstr "Mislukkast"
  935. #: cmdline/apt-get.cc:1963
  936. msgid "Done"
  937. msgstr "Ferdig"
  938. #: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038
  939. #, fuzzy
  940. msgid "Internal error, problem resolver broke stuff"
  941. msgstr "Intern feil. AllUpgrade øydelagde noko"
  942. #: cmdline/apt-get.cc:2138
  943. msgid "Must specify at least one package to fetch source for"
  944. msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for"
  945. #: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410
  946. #, c-format
  947. msgid "Unable to find a source package for %s"
  948. msgstr "Finn ingen kjeldepakke for %s"
  949. #: cmdline/apt-get.cc:2217
  950. #, fuzzy, c-format
  951. msgid "Skipping already downloaded file '%s'\n"
  952. msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
  953. #: cmdline/apt-get.cc:2248
  954. #, c-format
  955. msgid "You don't have enough free space in %s"
  956. msgstr "Du har ikkje nok ledig plass i %s"
  957. #: cmdline/apt-get.cc:2254
  958. #, c-format
  959. msgid "Need to get %sB/%sB of source archives.\n"
  960. msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n"
  961. #: cmdline/apt-get.cc:2257
  962. #, c-format
  963. msgid "Need to get %sB of source archives.\n"
  964. msgstr "Må henta %sB med kjeldekodearkiv.\n"
  965. #: cmdline/apt-get.cc:2263
  966. #, c-format
  967. msgid "Fetch source %s\n"
  968. msgstr "Hent kjeldekode %s\n"
  969. #: cmdline/apt-get.cc:2294
  970. msgid "Failed to fetch some archives."
  971. msgstr "Klarte ikkje henta nokre av arkiva."
  972. #: cmdline/apt-get.cc:2322
  973. #, c-format
  974. msgid "Skipping unpack of already unpacked source in %s\n"
  975. msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
  976. #: cmdline/apt-get.cc:2334
  977. #, c-format
  978. msgid "Unpack command '%s' failed.\n"
  979. msgstr "Utpakkingskommandoen «%s» mislukkast.\n"
  980. #: cmdline/apt-get.cc:2335
  981. #, c-format
  982. msgid "Check if the 'dpkg-dev' package is installed.\n"
  983. msgstr ""
  984. #: cmdline/apt-get.cc:2352
  985. #, c-format
  986. msgid "Build command '%s' failed.\n"
  987. msgstr "Byggjekommandoen «%s» mislukkast.\n"
  988. #: cmdline/apt-get.cc:2371
  989. msgid "Child process failed"
  990. msgstr "Barneprosessen mislukkast"
  991. #: cmdline/apt-get.cc:2387
  992. msgid "Must specify at least one package to check builddeps for"
  993. msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for"
  994. #: cmdline/apt-get.cc:2415
  995. #, c-format
  996. msgid "Unable to get build-dependency information for %s"
  997. msgstr "Klarte ikkje henta byggjekrav for %s"
  998. #: cmdline/apt-get.cc:2435
  999. #, c-format
  1000. msgid "%s has no build depends.\n"
  1001. msgstr "%s har ingen byggjekrav.\n"
  1002. #: cmdline/apt-get.cc:2487
  1003. #, c-format
  1004. msgid ""
  1005. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1006. "found"
  1007. msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst"
  1008. #: cmdline/apt-get.cc:2540
  1009. #, c-format
  1010. msgid ""
  1011. "%s dependency for %s cannot be satisfied because no available versions of "
  1012. "package %s can satisfy version requirements"
  1013. msgstr ""
  1014. "Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon "
  1015. "tilgjengelege versjonar av pakken %s som oppfyller versjonskrava"
  1016. #: cmdline/apt-get.cc:2576
  1017. #, c-format
  1018. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1019. msgstr ""
  1020. "Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny"
  1021. #: cmdline/apt-get.cc:2603
  1022. #, c-format
  1023. msgid "Failed to satisfy %s dependency for %s: %s"
  1024. msgstr "Klarte ikkje oppfylla kravet %s for %s: %s"
  1025. #: cmdline/apt-get.cc:2619
  1026. #, c-format
  1027. msgid "Build-dependencies for %s could not be satisfied."
  1028. msgstr "Byggjekrav for %s kunne ikkje tilfredstillast."
  1029. #: cmdline/apt-get.cc:2624
  1030. msgid "Failed to process build dependencies"
  1031. msgstr "Klarte ikkje behandla byggjekrava"
  1032. #: cmdline/apt-get.cc:2656
  1033. msgid "Supported modules:"
  1034. msgstr "Støtta modular:"
  1035. #: cmdline/apt-get.cc:2697
  1036. #, fuzzy
  1037. msgid ""
  1038. "Usage: apt-get [options] command\n"
  1039. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1040. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1041. "\n"
  1042. "apt-get is a simple command line interface for downloading and\n"
  1043. "installing packages. The most frequently used commands are update\n"
  1044. "and install.\n"
  1045. "\n"
  1046. "Commands:\n"
  1047. " update - Retrieve new lists of packages\n"
  1048. " upgrade - Perform an upgrade\n"
  1049. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1050. " remove - Remove packages\n"
  1051. " autoremove - Remove automatically all unused packages\n"
  1052. " purge - Remove packages and config files\n"
  1053. " source - Download source archives\n"
  1054. " build-dep - Configure build-dependencies for source packages\n"
  1055. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1056. " dselect-upgrade - Follow dselect selections\n"
  1057. " clean - Erase downloaded archive files\n"
  1058. " autoclean - Erase old downloaded archive files\n"
  1059. " check - Verify that there are no broken dependencies\n"
  1060. "\n"
  1061. "Options:\n"
  1062. " -h This help text.\n"
  1063. " -q Loggable output - no progress indicator\n"
  1064. " -qq No output except for errors\n"
  1065. " -d Download only - do NOT install or unpack archives\n"
  1066. " -s No-act. Perform ordering simulation\n"
  1067. " -y Assume Yes to all queries and do not prompt\n"
  1068. " -f Attempt to correct a system with broken dependencies in place\n"
  1069. " -m Attempt to continue if archives are unlocatable\n"
  1070. " -u Show a list of upgraded packages as well\n"
  1071. " -b Build the source package after fetching it\n"
  1072. " -V Show verbose version numbers\n"
  1073. " -c=? Read this configuration file\n"
  1074. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1075. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1076. "pages for more information and options.\n"
  1077. " This APT has Super Cow Powers.\n"
  1078. msgstr ""
  1079. "Bruk: apt-get [val] kommando\n"
  1080. " apt-get [val] install|remove pakke1 [pakke2 ...]\n"
  1081. " apt-get [val] source pakke1 [pakke2 ...]\n"
  1082. "\n"
  1083. "apt-get er eit enkelt grensesnitt til bruk frå kommandolinja for å lasta\n"
  1084. "ned og installera pakkar. Dei vanlegaste kommandoane er «update» og\n"
  1085. "«install».\n"
  1086. "\n"
  1087. "Kommandoar:\n"
  1088. " update - Hent nye pakkelister.\n"
  1089. " upgrade - Utfør ei oppgradering.\n"
  1090. " install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo."
  1091. "deb)).\n"
  1092. " remove - Fjern pakkar.\n"
  1093. " source - Last ned kjeldekode frå arkiva.\n"
  1094. " build-dep - Oppfyll byggjekrava for kjeldepakkar.\n"
  1095. " dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n"
  1096. " dselect-upgrade - Følg råda frå «dselect».\n"
  1097. " clean - Slett nedlasta arkivfiler.\n"
  1098. " autoclean - Slett gamle, nedlasta arkivfiler.\n"
  1099. " check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n"
  1100. "\n"
  1101. "Val:\n"
  1102. " -h Vis denne hjelpeteksten.\n"
  1103. " -q Ikkje vis framdriftsmåtar, for bruk i loggar.\n"
  1104. " -qq Inga tilbakemelding - bortsett frå feilmeldingar.\n"
  1105. " -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n"
  1106. " -s Skuggespel, berre simulering av handlingane.\n"
  1107. " -y Svar ja på alle spørsmål utan å stoppa.\n"
  1108. " -f Prøv å halda fram sjølv om integritetskontrollen mislukkast.\n"
  1109. " -m Prøv å halda fram sjølv om nokre pakkar ikkje vert funne.\n"
  1110. " -u Ta med oppgraderte pakkar i lista som vert vist.\n"
  1111. " -b Bygg pakken etter at kjeldekoden er henta.\n"
  1112. " -V Vis fullstendige versjonsnummer.\n"
  1113. " -c=? Les denne innstillingsfila.\n"
  1114. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  1115. "Du finn meir informasjon og fleire kommandolinjeval på manualsidene\n"
  1116. "til apt-get(8), sources.list(5) og apt.conf(5).\n"
  1117. " APT har superku-krefter.\n"
  1118. #: cmdline/apt-get.cc:2864
  1119. msgid ""
  1120. "NOTE: This is only a simulation!\n"
  1121. " apt-get needs root privileges for real execution.\n"
  1122. " Keep also in mind that locking is deactivated,\n"
  1123. " so don't depend on the relevance to the real current situation!"
  1124. msgstr ""
  1125. #: cmdline/acqprogress.cc:55
  1126. msgid "Hit "
  1127. msgstr "Treff "
  1128. #: cmdline/acqprogress.cc:79
  1129. msgid "Get:"
  1130. msgstr "Hent:"
  1131. #: cmdline/acqprogress.cc:110
  1132. msgid "Ign "
  1133. msgstr "Ign "
  1134. #: cmdline/acqprogress.cc:114
  1135. msgid "Err "
  1136. msgstr "Feil "
  1137. #: cmdline/acqprogress.cc:135
  1138. #, c-format
  1139. msgid "Fetched %sB in %s (%sB/s)\n"
  1140. msgstr "Henta %sB på %s (%sB/s)\n"
  1141. #: cmdline/acqprogress.cc:225
  1142. #, c-format
  1143. msgid " [Working]"
  1144. msgstr " [Arbeider]"
  1145. #: cmdline/acqprogress.cc:271
  1146. #, c-format
  1147. msgid ""
  1148. "Media change: please insert the disc labeled\n"
  1149. " '%s'\n"
  1150. "in the drive '%s' and press enter\n"
  1151. msgstr ""
  1152. "Skifte av medum: Set inn plata merkt\n"
  1153. " «%s»\n"
  1154. "i stasjonen «%s» og trykk Enter.\n"
  1155. #: cmdline/apt-sortpkgs.cc:86
  1156. msgid "Unknown package record!"
  1157. msgstr "Ukjend pakkeoppslag"
  1158. #: cmdline/apt-sortpkgs.cc:150
  1159. msgid ""
  1160. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1161. "\n"
  1162. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1163. "to indicate what kind of file it is.\n"
  1164. "\n"
  1165. "Options:\n"
  1166. " -h This help text\n"
  1167. " -s Use source file sorting\n"
  1168. " -c=? Read this configuration file\n"
  1169. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1170. msgstr ""
  1171. "Bruk: apt-sortpkgs [val] fil1 [fil2 ...]\n"
  1172. "\n"
  1173. "apt-sortpkgs er eit enkelt verktøy for å sortera pakkefiler. Innstillinga\n"
  1174. "-s vert brukt til å velja kva for ein type fil det er snakk om.\n"
  1175. "\n"
  1176. "Val:\n"
  1177. " -h Vis denne hjelpeteksten.\n"
  1178. " -s Bruk kjeldefilsortering.\n"
  1179. " -c=? Les denne oppsettsfila.\n"
  1180. " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
  1181. #: dselect/install:32
  1182. msgid "Bad default setting!"
  1183. msgstr "Dårleg standardinnstilling"
  1184. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1185. #: dselect/install:105 dselect/update:45
  1186. msgid "Press enter to continue."
  1187. msgstr "Trykk Enter for å halda fram."
  1188. #: dselect/install:91
  1189. msgid "Do you want to erase any previously downloaded .deb files?"
  1190. msgstr ""
  1191. #: dselect/install:101
  1192. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1193. msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no"
  1194. #: dselect/install:102
  1195. msgid "packages that were installed. This may result in duplicate errors"
  1196. msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av"
  1197. #: dselect/install:103
  1198. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1199. msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor"
  1200. #: dselect/install:104
  1201. msgid ""
  1202. "above this message are important. Please fix them and run [I]nstall again"
  1203. msgstr "er viktige. Rett opp dei feila og [i]nstaller på nytt."
  1204. #: dselect/update:30
  1205. msgid "Merging available information"
  1206. msgstr "Flettar informasjon om tilgjengelege pakkar"
  1207. #: apt-inst/contrib/extracttar.cc:114
  1208. msgid "Failed to create pipes"
  1209. msgstr "Klarte ikkje oppretta røyr"
  1210. #: apt-inst/contrib/extracttar.cc:141
  1211. msgid "Failed to exec gzip "
  1212. msgstr "Klarte ikkje køyra gzip "
  1213. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1214. msgid "Corrupted archive"
  1215. msgstr "Øydelagt arkiv"
  1216. #: apt-inst/contrib/extracttar.cc:193
  1217. msgid "Tar checksum failed, archive corrupted"
  1218. msgstr "Tar-sjekksummen mislukkast, arkivet er øydelagt"
  1219. #: apt-inst/contrib/extracttar.cc:296
  1220. #, c-format
  1221. msgid "Unknown TAR header type %u, member %s"
  1222. msgstr "Ukjend TAR-hovud type %u, medlem %s"
  1223. #: apt-inst/contrib/arfile.cc:70
  1224. msgid "Invalid archive signature"
  1225. msgstr "Ugyldig arkivsignatur"
  1226. #: apt-inst/contrib/arfile.cc:78
  1227. msgid "Error reading archive member header"
  1228. msgstr "Feil ved lesing av arkivmedlemshovud"
  1229. #: apt-inst/contrib/arfile.cc:90
  1230. #, fuzzy, c-format
  1231. msgid "Invalid archive member header %s"
  1232. msgstr "Ugyldig arkivmedlemshovud"
  1233. #: apt-inst/contrib/arfile.cc:102
  1234. msgid "Invalid archive member header"
  1235. msgstr "Ugyldig arkivmedlemshovud"
  1236. #: apt-inst/contrib/arfile.cc:128
  1237. msgid "Archive is too short"
  1238. msgstr "Arkivet er for kort"
  1239. #: apt-inst/contrib/arfile.cc:132
  1240. msgid "Failed to read the archive headers"
  1241. msgstr "Klarte ikkje lesa arkivhovuda"
  1242. #: apt-inst/filelist.cc:380
  1243. msgid "DropNode called on still linked node"
  1244. msgstr "DropNode vart kalla på ein node som framleis er lenkja"
  1245. #: apt-inst/filelist.cc:412
  1246. msgid "Failed to locate the hash element!"
  1247. msgstr "Fann ikkje nøkkelelementet."
  1248. #: apt-inst/filelist.cc:459
  1249. msgid "Failed to allocate diversion"
  1250. msgstr "Klarte ikkje tildela avleiing"
  1251. #: apt-inst/filelist.cc:464
  1252. msgid "Internal error in AddDiversion"
  1253. msgstr "Intern feil i AddDiversion"
  1254. #: apt-inst/filelist.cc:477
  1255. #, c-format
  1256. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1257. msgstr "Prøver å skriva over ei avleiing, %s -> %s og %s/%s"
  1258. #: apt-inst/filelist.cc:506
  1259. #, c-format
  1260. msgid "Double add of diversion %s -> %s"
  1261. msgstr "Dobbel tilleggjing av avleiing %s -> %s"
  1262. #: apt-inst/filelist.cc:549
  1263. #, c-format
  1264. msgid "Duplicate conf file %s/%s"
  1265. msgstr "Dobbel oppsettsfil %s/%s"
  1266. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1267. #, fuzzy, c-format
  1268. msgid "Failed to write file %s"
  1269. msgstr "Klarte ikkje skriva fila %s"
  1270. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1271. #, c-format
  1272. msgid "Failed to close file %s"
  1273. msgstr "Klarte ikkje lukka fila %s"
  1274. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1275. #, c-format
  1276. msgid "The path %s is too long"
  1277. msgstr "Stigen %s er for lang"
  1278. #: apt-inst/extract.cc:124
  1279. #, c-format
  1280. msgid "Unpacking %s more than once"
  1281. msgstr "Pakkar ut %s meir enn éin gong"
  1282. #: apt-inst/extract.cc:134
  1283. #, c-format
  1284. msgid "The directory %s is diverted"
  1285. msgstr "Katalogen %s er avleidd"
  1286. #: apt-inst/extract.cc:144
  1287. #, c-format
  1288. msgid "The package is trying to write to the diversion target %s/%s"
  1289. msgstr "Pakken prøver å skriva til avleiingsmålet %s/%s"
  1290. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1291. msgid "The diversion path is too long"
  1292. msgstr "Avleiingsstigen er for lang"
  1293. #: apt-inst/extract.cc:240
  1294. #, c-format
  1295. msgid "The directory %s is being replaced by a non-directory"
  1296. msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog"
  1297. #: apt-inst/extract.cc:280
  1298. msgid "Failed to locate node in its hash bucket"
  1299. msgstr "Fann ikkje noden i nøkkelbøtta"
  1300. #: apt-inst/extract.cc:284
  1301. msgid "The path is too long"
  1302. msgstr "Stigen er for lang"
  1303. #: apt-inst/extract.cc:414
  1304. #, c-format
  1305. msgid "Overwrite package match with no version for %s"
  1306. msgstr "Skriv over pakketreff utan versjon for %s"
  1307. #: apt-inst/extract.cc:431
  1308. #, c-format
  1309. msgid "File %s/%s overwrites the one in the package %s"
  1310. msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s"
  1311. #. Only warn if there are no sources.list.d.
  1312. #. Only warn if there is no sources.list file.
  1313. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843
  1314. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1315. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1316. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1317. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1318. #, c-format
  1319. msgid "Unable to read %s"
  1320. msgstr "Klarte ikkje lesa %s"
  1321. #: apt-inst/extract.cc:491
  1322. #, c-format
  1323. msgid "Unable to stat %s"
  1324. msgstr "Klarte ikkje få status til %s"
  1325. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1326. #, c-format
  1327. msgid "Failed to remove %s"
  1328. msgstr "Klarte ikkje fjerna %s"
  1329. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1330. #, c-format
  1331. msgid "Unable to create %s"
  1332. msgstr "Klarte ikkje oppretta %s"
  1333. #: apt-inst/deb/dpkgdb.cc:114
  1334. #, c-format
  1335. msgid "Failed to stat %sinfo"
  1336. msgstr "Klarte ikkje få status til %sinfo"
  1337. #: apt-inst/deb/dpkgdb.cc:119
  1338. msgid "The info and temp directories need to be on the same filesystem"
  1339. msgstr ""
  1340. "Infokatalogen og den mellombelse katalogen må vera på det same filsystemet"
  1341. #. Build the status cache
  1342. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1343. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1344. #: apt-pkg/pkgcachegen.cc:961
  1345. msgid "Reading package lists"
  1346. msgstr "Les pakkelister"
  1347. #: apt-inst/deb/dpkgdb.cc:176
  1348. #, c-format
  1349. msgid "Failed to change to the admin dir %sinfo"
  1350. msgstr "Klarte ikkje byta til adminkatalogen %sinfo"
  1351. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1352. #: apt-inst/deb/dpkgdb.cc:444
  1353. msgid "Internal error getting a package name"
  1354. msgstr "Intern feil ved henting av pakkenamn"
  1355. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1356. msgid "Reading file listing"
  1357. msgstr "Les filliste"
  1358. #: apt-inst/deb/dpkgdb.cc:212
  1359. #, c-format
  1360. msgid ""
  1361. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1362. "then make it empty and immediately re-install the same version of the "
  1363. "package!"
  1364. msgstr ""
  1365. "Klarte ikkje opna listefila «%sinfo/%s». Dersom du ikkje kan gjenoppretta "
  1366. "denne fila, bør du oppretta ho som ei tom fil og installera den same "
  1367. "versjonen av pakken på nytt."
  1368. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1369. #, c-format
  1370. msgid "Failed reading the list file %sinfo/%s"
  1371. msgstr "Klarte ikkje lesa listefila %sinfo/%s"
  1372. #: apt-inst/deb/dpkgdb.cc:262
  1373. msgid "Internal error getting a node"
  1374. msgstr "Intern feil ved henting av node"
  1375. #: apt-inst/deb/dpkgdb.cc:305
  1376. #, c-format
  1377. msgid "Failed to open the diversions file %sdiversions"
  1378. msgstr "Klarte ikkje opna avleiingsfila %sdiversions"
  1379. #: apt-inst/deb/dpkgdb.cc:320
  1380. msgid "The diversion file is corrupted"
  1381. msgstr "Avleiingsfila er øydelagd"
  1382. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1383. #: apt-inst/deb/dpkgdb.cc:337
  1384. #, c-format
  1385. msgid "Invalid line in the diversion file: %s"
  1386. msgstr "Ugyldig linje i avleiingsfila: %s"
  1387. #: apt-inst/deb/dpkgdb.cc:358
  1388. msgid "Internal error adding a diversion"
  1389. msgstr "Intern feil ved tilleggjing av avleiing"
  1390. #: apt-inst/deb/dpkgdb.cc:379
  1391. msgid "The pkg cache must be initialized first"
  1392. msgstr "Pakkelageret må først klargjerast"
  1393. #: apt-inst/deb/dpkgdb.cc:439
  1394. #, c-format
  1395. msgid "Failed to find a Package: header, offset %lu"
  1396. msgstr "Fann ikkje «Package:»-linja, offset %lu"
  1397. #: apt-inst/deb/dpkgdb.cc:461
  1398. #, c-format
  1399. msgid "Bad ConfFile section in the status file. Offset %lu"
  1400. msgstr "Øydelagd «ConfFile»-del i statusfila. Offset %lu"
  1401. #: apt-inst/deb/dpkgdb.cc:466
  1402. #, c-format
  1403. msgid "Error parsing MD5. Offset %lu"
  1404. msgstr "Feil ved tolking av MD5. Offset %lu"
  1405. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1406. #, c-format
  1407. msgid "This is not a valid DEB archive, missing '%s' member"
  1408. msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen"
  1409. #: apt-inst/deb/debfile.cc:50
  1410. #, fuzzy, c-format
  1411. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1412. msgstr ""
  1413. "Dette er ikkje eit gyldig DEB-arkiv, det har ingen «%s» eller «%s»-medlem"
  1414. #: apt-inst/deb/debfile.cc:110
  1415. #, c-format
  1416. msgid "Couldn't change to %s"
  1417. msgstr "Klarte ikkje byta til %s"
  1418. #: apt-inst/deb/debfile.cc:140
  1419. msgid "Internal error, could not locate member"
  1420. msgstr "Intern feil, fann ikkje medlem"
  1421. #: apt-inst/deb/debfile.cc:173
  1422. msgid "Failed to locate a valid control file"
  1423. msgstr "Fann ikkje noka gyldig kontrollfil"
  1424. #: apt-inst/deb/debfile.cc:258
  1425. msgid "Unparsable control file"
  1426. msgstr "Kontrollfila kan ikkje tolkast"
  1427. #: methods/cdrom.cc:200
  1428. #, c-format
  1429. msgid "Unable to read the cdrom database %s"
  1430. msgstr "Klarte ikkje lesa CD-ROM-databasen %s"
  1431. #: methods/cdrom.cc:209
  1432. msgid ""
  1433. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1434. "cannot be used to add new CD-ROMs"
  1435. msgstr ""
  1436. "Bruk «apt-cdrom» for å gjera denne CD-plata tilgjengeleg for APT. Du kan "
  1437. "ikkje bruka «apt-get update» til å leggja til nye CD-plater."
  1438. #: methods/cdrom.cc:219
  1439. msgid "Wrong CD-ROM"
  1440. msgstr "Feil CD-plate"
  1441. #: methods/cdrom.cc:245
  1442. #, c-format
  1443. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1444. msgstr ""
  1445. "Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk."
  1446. #: methods/cdrom.cc:250
  1447. #, fuzzy
  1448. msgid "Disk not found."
  1449. msgstr "Fann ikkje fila"
  1450. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1451. msgid "File not found"
  1452. msgstr "Fann ikkje fila"
  1453. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1454. #: methods/rred.cc:234 methods/rred.cc:243
  1455. msgid "Failed to stat"
  1456. msgstr "Klarte ikkje få status"
  1457. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1458. msgid "Failed to set modification time"
  1459. msgstr "Klarte ikkje setja endringstidspunkt"
  1460. #: methods/file.cc:44
  1461. msgid "Invalid URI, local URIS must not start with //"
  1462. msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //"
  1463. #. Login must be before getpeername otherwise dante won't work.
  1464. #: methods/ftp.cc:167
  1465. msgid "Logging in"
  1466. msgstr "Loggar inn"
  1467. #: methods/ftp.cc:173
  1468. msgid "Unable to determine the peer name"
  1469. msgstr "Klarte ikkje avgjera namnet på motparten"
  1470. #: methods/ftp.cc:178
  1471. msgid "Unable to determine the local name"
  1472. msgstr "Klarte ikkje avgjera det lokale namnet"
  1473. #: methods/ftp.cc:209 methods/ftp.cc:237
  1474. #, c-format
  1475. msgid "The server refused the connection and said: %s"
  1476. msgstr "Tenaren nekta oss å kopla til, og sa: %s"
  1477. #: methods/ftp.cc:215
  1478. #, c-format
  1479. msgid "USER failed, server said: %s"
  1480. msgstr "USER mislukkast, tenaren sa: %s"
  1481. #: methods/ftp.cc:222
  1482. #, c-format
  1483. msgid "PASS failed, server said: %s"
  1484. msgstr "PASS mislukkast, tenaren sa: %s"
  1485. #: methods/ftp.cc:242
  1486. msgid ""
  1487. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1488. "is empty."
  1489. msgstr ""
  1490. "Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet "
  1491. "«Acquire::ftp::ProxyLogin» er tomt."
  1492. #: methods/ftp.cc:270
  1493. #, c-format
  1494. msgid "Login script command '%s' failed, server said: %s"
  1495. msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s"
  1496. #: methods/ftp.cc:296
  1497. #, c-format
  1498. msgid "TYPE failed, server said: %s"
  1499. msgstr "TYPE mislukkast, tenaren sa: %s"
  1500. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1501. msgid "Connection timeout"
  1502. msgstr "Tidsavbrot på samband"
  1503. #: methods/ftp.cc:340
  1504. msgid "Server closed the connection"
  1505. msgstr "Tenaren lukka sambandet"
  1506. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1507. msgid "Read error"
  1508. msgstr "Lesefeil"
  1509. #: methods/ftp.cc:350 methods/rsh.cc:197
  1510. msgid "A response overflowed the buffer."
  1511. msgstr "Eit svar flaumde over bufferen."
  1512. #: methods/ftp.cc:367 methods/ftp.cc:379
  1513. msgid "Protocol corruption"
  1514. msgstr "Protokolløydeleggjing"
  1515. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1516. msgid "Write error"
  1517. msgstr "Skrivefeil"
  1518. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1519. msgid "Could not create a socket"
  1520. msgstr "Klarte ikkje oppretta sokkel"
  1521. #: methods/ftp.cc:703
  1522. msgid "Could not connect data socket, connection timed out"
  1523. msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet"
  1524. #: methods/ftp.cc:709
  1525. msgid "Could not connect passive socket."
  1526. msgstr "Klarte ikkje kopla til passiv sokkel."
  1527. #: methods/ftp.cc:727
  1528. msgid "getaddrinfo was unable to get a listening socket"
  1529. msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel"
  1530. #: methods/ftp.cc:741
  1531. msgid "Could not bind a socket"
  1532. msgstr "Klarte ikkje binda til sokkel"
  1533. #: methods/ftp.cc:745
  1534. msgid "Could not listen on the socket"
  1535. msgstr "Klarte ikkje lytta til sokkel"
  1536. #: methods/ftp.cc:752
  1537. msgid "Could not determine the socket's name"
  1538. msgstr "Klarte ikkje avgjera sokkelnamnet"
  1539. #: methods/ftp.cc:784
  1540. msgid "Unable to send PORT command"
  1541. msgstr "Klarte ikkje senda PORT-kommandoen"
  1542. #: methods/ftp.cc:794
  1543. #, c-format
  1544. msgid "Unknown address family %u (AF_*)"
  1545. msgstr "Ukjend adressefamilie %u (AF_*)"
  1546. #: methods/ftp.cc:803
  1547. #, c-format
  1548. msgid "EPRT failed, server said: %s"
  1549. msgstr "EPRT mislukkast, tenaren sa: %s"
  1550. #: methods/ftp.cc:823
  1551. msgid "Data socket connect timed out"
  1552. msgstr "Tidsavbrot på tilkopling til datasokkel"
  1553. #: methods/ftp.cc:830
  1554. msgid "Unable to accept connection"
  1555. msgstr "Klarte ikkje godta tilkoplinga"
  1556. #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303
  1557. msgid "Problem hashing file"
  1558. msgstr "Problem ved oppretting av nøkkel for fil"
  1559. #: methods/ftp.cc:882
  1560. #, c-format
  1561. msgid "Unable to fetch file, server said '%s'"
  1562. msgstr "Klarte ikkje henta fila, tenaren sa «%s»"
  1563. #: methods/ftp.cc:897 methods/rsh.cc:322
  1564. msgid "Data socket timed out"
  1565. msgstr "Tidsavbrot på datasokkelen"
  1566. #: methods/ftp.cc:927
  1567. #, c-format
  1568. msgid "Data transfer failed, server said '%s'"
  1569. msgstr "Dataoverføringa mislukkast, tenaren sa «%s»"
  1570. #. Get the files information
  1571. #: methods/ftp.cc:1002
  1572. msgid "Query"
  1573. msgstr "Spørjing"
  1574. #: methods/ftp.cc:1114
  1575. msgid "Unable to invoke "
  1576. msgstr "Klarte ikkje starta "
  1577. #: methods/connect.cc:70
  1578. #, c-format
  1579. msgid "Connecting to %s (%s)"
  1580. msgstr "Koplar til %s (%s)"
  1581. #: methods/connect.cc:81
  1582. #, c-format
  1583. msgid "[IP: %s %s]"
  1584. msgstr "[IP: %s %s]"
  1585. #: methods/connect.cc:90
  1586. #, c-format
  1587. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1588. msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)"
  1589. #: methods/connect.cc:96
  1590. #, c-format
  1591. msgid "Cannot initiate the connection to %s:%s (%s)."
  1592. msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)."
  1593. #: methods/connect.cc:104
  1594. #, c-format
  1595. msgid "Could not connect to %s:%s (%s), connection timed out"
  1596. msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet"
  1597. #: methods/connect.cc:119
  1598. #, c-format
  1599. msgid "Could not connect to %s:%s (%s)."
  1600. msgstr "Klarte ikkje kopla til %s:%s (%s)."
  1601. #. We say this mainly because the pause here is for the
  1602. #. ssh connection that is still going
  1603. #: methods/connect.cc:147 methods/rsh.cc:425
  1604. #, c-format
  1605. msgid "Connecting to %s"
  1606. msgstr "Koplar til %s"
  1607. #: methods/connect.cc:165 methods/connect.cc:184
  1608. #, c-format
  1609. msgid "Could not resolve '%s'"
  1610. msgstr "Klarte ikkje slå opp «%s»"
  1611. #: methods/connect.cc:190
  1612. #, c-format
  1613. msgid "Temporary failure resolving '%s'"
  1614. msgstr "Mellombels feil ved oppslag av «%s»"
  1615. #: methods/connect.cc:193
  1616. #, c-format
  1617. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1618. msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)"
  1619. #: methods/connect.cc:240
  1620. #, c-format
  1621. msgid "Unable to connect to %s %s:"
  1622. msgstr "Klarte ikkje kopla til %s %s:"
  1623. #: methods/gpgv.cc:71
  1624. #, fuzzy, c-format
  1625. msgid "Couldn't access keyring: '%s'"
  1626. msgstr "Klarte ikkje slå opp «%s»"
  1627. #: methods/gpgv.cc:107
  1628. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1629. msgstr ""
  1630. #: methods/gpgv.cc:223
  1631. msgid ""
  1632. "Internal error: Good signature, but could not determine key fingerprint?!"
  1633. msgstr ""
  1634. #: methods/gpgv.cc:228
  1635. msgid "At least one invalid signature was encountered."
  1636. msgstr ""
  1637. #: methods/gpgv.cc:232
  1638. #, c-format
  1639. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1640. msgstr ""
  1641. #: methods/gpgv.cc:237
  1642. msgid "Unknown error executing gpgv"
  1643. msgstr ""
  1644. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1645. #, fuzzy
  1646. msgid "The following signatures were invalid:\n"
  1647. msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
  1648. #: methods/gpgv.cc:285
  1649. msgid ""
  1650. "The following signatures couldn't be verified because the public key is not "
  1651. "available:\n"
  1652. msgstr ""
  1653. #: methods/gzip.cc:64
  1654. #, c-format
  1655. msgid "Couldn't open pipe for %s"
  1656. msgstr "Klarte ikkje opna røyr for %s"
  1657. #: methods/gzip.cc:109
  1658. #, c-format
  1659. msgid "Read error from %s process"
  1660. msgstr "Lesefeil frå %s-prosessen"
  1661. #: methods/http.cc:384
  1662. msgid "Waiting for headers"
  1663. msgstr "Ventar på hovud"
  1664. #: methods/http.cc:530
  1665. #, c-format
  1666. msgid "Got a single header line over %u chars"
  1667. msgstr "Fekk ei enkel hovudlinje over %u teikn"
  1668. #: methods/http.cc:538
  1669. msgid "Bad header line"
  1670. msgstr "Øydelagd hovudlinje"
  1671. #: methods/http.cc:557 methods/http.cc:564
  1672. msgid "The HTTP server sent an invalid reply header"
  1673. msgstr "HTTP-tenaren sende eit ugyldig svarhovud"
  1674. #: methods/http.cc:593
  1675. msgid "The HTTP server sent an invalid Content-Length header"
  1676. msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud"
  1677. #: methods/http.cc:608
  1678. msgid "The HTTP server sent an invalid Content-Range header"
  1679. msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud"
  1680. #: methods/http.cc:610
  1681. msgid "This HTTP server has broken range support"
  1682. msgstr "Denne HTTP-tenaren har øydelagd støtte for område"
  1683. #: methods/http.cc:634
  1684. msgid "Unknown date format"
  1685. msgstr "Ukjend datoformat"
  1686. #: methods/http.cc:787
  1687. msgid "Select failed"
  1688. msgstr "Utvalet mislukkast"
  1689. #: methods/http.cc:792
  1690. msgid "Connection timed out"
  1691. msgstr "Tidsavbrot på sambandet"
  1692. #: methods/http.cc:815
  1693. msgid "Error writing to output file"
  1694. msgstr "Feil ved skriving til utfil"
  1695. #: methods/http.cc:846
  1696. msgid "Error writing to file"
  1697. msgstr "Feil ved skriving til fil"
  1698. #: methods/http.cc:874
  1699. msgid "Error writing to the file"
  1700. msgstr "Feil ved skriving til fila"
  1701. #: methods/http.cc:888
  1702. msgid "Error reading from server. Remote end closed connection"
  1703. msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
  1704. #: methods/http.cc:890
  1705. msgid "Error reading from server"
  1706. msgstr "Feil ved lesing frå tenaren"
  1707. #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215
  1708. #, fuzzy
  1709. msgid "Failed to truncate file"
  1710. msgstr "Klarte ikkje skriva fila %s"
  1711. #: methods/http.cc:1146
  1712. msgid "Bad header data"
  1713. msgstr "Øydelagde hovuddata"
  1714. #: methods/http.cc:1163 methods/http.cc:1218
  1715. msgid "Connection failed"
  1716. msgstr "Sambandet mislukkast"
  1717. #: methods/http.cc:1310
  1718. msgid "Internal error"
  1719. msgstr "Intern feil"
  1720. #: apt-pkg/contrib/mmap.cc:76
  1721. msgid "Can't mmap an empty file"
  1722. msgstr "Kan ikkje utføra mmap på ei tom fil"
  1723. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187
  1724. #, c-format
  1725. msgid "Couldn't make mmap of %lu bytes"
  1726. msgstr "Klarte ikkje laga mmap av %lu byte"
  1727. #: apt-pkg/contrib/mmap.cc:234
  1728. #, c-format
  1729. msgid ""
  1730. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1731. "Current value: %lu. (man 5 apt.conf)"
  1732. msgstr ""
  1733. #. d means days, h means hours, min means minutes, s means seconds
  1734. #: apt-pkg/contrib/strutl.cc:346
  1735. #, c-format
  1736. msgid "%lid %lih %limin %lis"
  1737. msgstr ""
  1738. #. h means hours, min means minutes, s means seconds
  1739. #: apt-pkg/contrib/strutl.cc:353
  1740. #, c-format
  1741. msgid "%lih %limin %lis"
  1742. msgstr ""
  1743. #. min means minutes, s means seconds
  1744. #: apt-pkg/contrib/strutl.cc:360
  1745. #, c-format
  1746. msgid "%limin %lis"
  1747. msgstr ""
  1748. #. s means seconds
  1749. #: apt-pkg/contrib/strutl.cc:365
  1750. #, c-format
  1751. msgid "%lis"
  1752. msgstr ""
  1753. #: apt-pkg/contrib/strutl.cc:1040
  1754. #, c-format
  1755. msgid "Selection %s not found"
  1756. msgstr "Fann ikkje utvalet %s"
  1757. #: apt-pkg/contrib/configuration.cc:458
  1758. #, c-format
  1759. msgid "Unrecognized type abbreviation: '%c'"
  1760. msgstr "Ukjend typeforkorting: «%c»"
  1761. #: apt-pkg/contrib/configuration.cc:516
  1762. #, c-format
  1763. msgid "Opening configuration file %s"
  1764. msgstr "Opnar oppsettsfila %s"
  1765. #: apt-pkg/contrib/configuration.cc:684
  1766. #, c-format
  1767. msgid "Syntax error %s:%u: Block starts with no name."
  1768. msgstr "Syntaksfeil %s:%u: Blokka startar utan namn."
  1769. #: apt-pkg/contrib/configuration.cc:703
  1770. #, c-format
  1771. msgid "Syntax error %s:%u: Malformed tag"
  1772. msgstr "Syntaksfeil %s:%u: Misforma tagg"
  1773. #: apt-pkg/contrib/configuration.cc:720
  1774. #, c-format
  1775. msgid "Syntax error %s:%u: Extra junk after value"
  1776. msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien"
  1777. #: apt-pkg/contrib/configuration.cc:760
  1778. #, c-format
  1779. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1780. msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået"
  1781. #: apt-pkg/contrib/configuration.cc:767
  1782. #, c-format
  1783. msgid "Syntax error %s:%u: Too many nested includes"
  1784. msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer"
  1785. #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776
  1786. #, c-format
  1787. msgid "Syntax error %s:%u: Included from here"
  1788. msgstr "Syntaksfeil %s:%u: Inkludert herifrå"
  1789. #: apt-pkg/contrib/configuration.cc:780
  1790. #, c-format
  1791. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1792. msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta"
  1793. #: apt-pkg/contrib/configuration.cc:831
  1794. #, c-format
  1795. msgid "Syntax error %s:%u: Extra junk at end of file"
  1796. msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila"
  1797. #: apt-pkg/contrib/progress.cc:153
  1798. #, c-format
  1799. msgid "%c%s... Error!"
  1800. msgstr "%c%s ... Feil"
  1801. #: apt-pkg/contrib/progress.cc:155
  1802. #, c-format
  1803. msgid "%c%s... Done"
  1804. msgstr "%c%s ... Ferdig"
  1805. #: apt-pkg/contrib/cmndline.cc:77
  1806. #, c-format
  1807. msgid "Command line option '%c' [from %s] is not known."
  1808. msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)."
  1809. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1810. #: apt-pkg/contrib/cmndline.cc:119
  1811. #, c-format
  1812. msgid "Command line option %s is not understood"
  1813. msgstr "Skjønar ikkje kommandolinjevalet %s"
  1814. #: apt-pkg/contrib/cmndline.cc:124
  1815. #, c-format
  1816. msgid "Command line option %s is not boolean"
  1817. msgstr "Kommandolinjevalet %s er ikkje boolsk"
  1818. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1819. #, c-format
  1820. msgid "Option %s requires an argument."
  1821. msgstr "Valet %s krev eit argument."
  1822. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1823. #, c-format
  1824. msgid "Option %s: Configuration item specification must have an =<val>."
  1825. msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>."
  1826. #: apt-pkg/contrib/cmndline.cc:234
  1827. #, c-format
  1828. msgid "Option %s requires an integer argument, not '%s'"
  1829. msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»"
  1830. #: apt-pkg/contrib/cmndline.cc:265
  1831. #, c-format
  1832. msgid "Option '%s' is too long"
  1833. msgstr "Valet «%s» er for langt"
  1834. #: apt-pkg/contrib/cmndline.cc:298
  1835. #, c-format
  1836. msgid "Sense %s is not understood, try true or false."
  1837. msgstr "Skjønar ikkje %s. Prøv «true» eller «false»."
  1838. #: apt-pkg/contrib/cmndline.cc:348
  1839. #, c-format
  1840. msgid "Invalid operation %s"
  1841. msgstr "Ugyldig operasjon %s"
  1842. #: apt-pkg/contrib/cdromutl.cc:52
  1843. #, c-format
  1844. msgid "Unable to stat the mount point %s"
  1845. msgstr "Klarte ikkje få status til monteringspunktet %s"
  1846. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1847. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1848. #, c-format
  1849. msgid "Unable to change to %s"
  1850. msgstr "Klarte ikkje byta til %s"
  1851. #: apt-pkg/contrib/cdromutl.cc:195
  1852. msgid "Failed to stat the cdrom"
  1853. msgstr "Klarte ikkje få status til CD-ROM"
  1854. #: apt-pkg/contrib/fileutl.cc:149
  1855. #, c-format
  1856. msgid "Not using locking for read only lock file %s"
  1857. msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s"
  1858. #: apt-pkg/contrib/fileutl.cc:154
  1859. #, c-format
  1860. msgid "Could not open lock file %s"
  1861. msgstr "Klarte ikkje opna låsefila %s"
  1862. #: apt-pkg/contrib/fileutl.cc:172
  1863. #, c-format
  1864. msgid "Not using locking for nfs mounted lock file %s"
  1865. msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s"
  1866. #: apt-pkg/contrib/fileutl.cc:176
  1867. #, c-format
  1868. msgid "Could not get lock %s"
  1869. msgstr "Klarte ikkje låsa %s"
  1870. #: apt-pkg/contrib/fileutl.cc:444
  1871. #, c-format
  1872. msgid "Waited for %s but it wasn't there"
  1873. msgstr "Venta på %s, men den fanst ikkje"
  1874. #: apt-pkg/contrib/fileutl.cc:456
  1875. #, c-format
  1876. msgid "Sub-process %s received a segmentation fault."
  1877. msgstr "Underprosessen %s mottok ein segmenteringsfeil."
  1878. #: apt-pkg/contrib/fileutl.cc:458
  1879. #, fuzzy, c-format
  1880. msgid "Sub-process %s received signal %u."
  1881. msgstr "Underprosessen %s mottok ein segmenteringsfeil."
  1882. #: apt-pkg/contrib/fileutl.cc:462
  1883. #, c-format
  1884. msgid "Sub-process %s returned an error code (%u)"
  1885. msgstr "Underprosessen %s returnerte ein feilkode (%u)"
  1886. #: apt-pkg/contrib/fileutl.cc:464
  1887. #, c-format
  1888. msgid "Sub-process %s exited unexpectedly"
  1889. msgstr "Underprosessen %s avslutta uventa"
  1890. #: apt-pkg/contrib/fileutl.cc:508
  1891. #, c-format
  1892. msgid "Could not open file %s"
  1893. msgstr "Klarte ikkje opna fila %s"
  1894. #: apt-pkg/contrib/fileutl.cc:564
  1895. #, c-format
  1896. msgid "read, still have %lu to read but none left"
  1897. msgstr "lese, har framleis %lu att å lesa, men ingen att"
  1898. #: apt-pkg/contrib/fileutl.cc:594
  1899. #, c-format
  1900. msgid "write, still have %lu to write but couldn't"
  1901. msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje"
  1902. #: apt-pkg/contrib/fileutl.cc:669
  1903. msgid "Problem closing the file"
  1904. msgstr "Problem ved låsing av fila"
  1905. #: apt-pkg/contrib/fileutl.cc:675
  1906. msgid "Problem unlinking the file"
  1907. msgstr "Problem ved oppheving av lenkje til fila"
  1908. #: apt-pkg/contrib/fileutl.cc:686
  1909. msgid "Problem syncing the file"
  1910. msgstr "Problem ved synkronisering av fila"
  1911. #: apt-pkg/pkgcache.cc:133
  1912. msgid "Empty package cache"
  1913. msgstr "Tomt pakkelager"
  1914. #: apt-pkg/pkgcache.cc:139
  1915. msgid "The package cache file is corrupted"
  1916. msgstr "Pakkelagerfila er øydelagd"
  1917. #: apt-pkg/pkgcache.cc:144
  1918. msgid "The package cache file is an incompatible version"
  1919. msgstr "Versjonen til pakkelagerfila er ikkje kompatibel"
  1920. #: apt-pkg/pkgcache.cc:149
  1921. #, c-format
  1922. msgid "This APT does not support the versioning system '%s'"
  1923. msgstr "APT støttar ikkje versjonssystemet «%s»"
  1924. #: apt-pkg/pkgcache.cc:154
  1925. msgid "The package cache was built for a different architecture"
  1926. msgstr "Pakkelageret er bygd for ein annan arkitektur"
  1927. #: apt-pkg/pkgcache.cc:225
  1928. msgid "Depends"
  1929. msgstr "Krav"
  1930. #: apt-pkg/pkgcache.cc:225
  1931. msgid "PreDepends"
  1932. msgstr "Forkrav"
  1933. #: apt-pkg/pkgcache.cc:225
  1934. msgid "Suggests"
  1935. msgstr "Forslag"
  1936. #: apt-pkg/pkgcache.cc:226
  1937. msgid "Recommends"
  1938. msgstr "Tilrådingar"
  1939. #: apt-pkg/pkgcache.cc:226
  1940. msgid "Conflicts"
  1941. msgstr "Konflikt"
  1942. #: apt-pkg/pkgcache.cc:226
  1943. msgid "Replaces"
  1944. msgstr "Byter ut"
  1945. #: apt-pkg/pkgcache.cc:227
  1946. msgid "Obsoletes"
  1947. msgstr "Foreldar"
  1948. #: apt-pkg/pkgcache.cc:227
  1949. msgid "Breaks"
  1950. msgstr ""
  1951. #: apt-pkg/pkgcache.cc:227
  1952. msgid "Enhances"
  1953. msgstr ""
  1954. #: apt-pkg/pkgcache.cc:238
  1955. msgid "important"
  1956. msgstr "viktig"
  1957. #: apt-pkg/pkgcache.cc:238
  1958. msgid "required"
  1959. msgstr "påkravd"
  1960. #: apt-pkg/pkgcache.cc:238
  1961. msgid "standard"
  1962. msgstr "vanleg"
  1963. #: apt-pkg/pkgcache.cc:239
  1964. msgid "optional"
  1965. msgstr "valfri"
  1966. #: apt-pkg/pkgcache.cc:239
  1967. msgid "extra"
  1968. msgstr "tillegg"
  1969. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  1970. msgid "Building dependency tree"
  1971. msgstr "Byggjer kravtre"
  1972. #: apt-pkg/depcache.cc:124
  1973. msgid "Candidate versions"
  1974. msgstr "Kandidatversjonar"
  1975. #: apt-pkg/depcache.cc:153
  1976. msgid "Dependency generation"
  1977. msgstr "Genererer kravforhold"
  1978. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  1979. #, fuzzy
  1980. msgid "Reading state information"
  1981. msgstr "Flettar informasjon om tilgjengelege pakkar"
  1982. #: apt-pkg/depcache.cc:223
  1983. #, fuzzy, c-format
  1984. msgid "Failed to open StateFile %s"
  1985. msgstr "Klarte ikkje opna %s"
  1986. #: apt-pkg/depcache.cc:229
  1987. #, fuzzy, c-format
  1988. msgid "Failed to write temporary StateFile %s"
  1989. msgstr "Klarte ikkje skriva fila %s"
  1990. #: apt-pkg/tagfile.cc:102
  1991. #, c-format
  1992. msgid "Unable to parse package file %s (1)"
  1993. msgstr "Klarte ikkje tolka pakkefila %s (1)"
  1994. #: apt-pkg/tagfile.cc:189
  1995. #, c-format
  1996. msgid "Unable to parse package file %s (2)"
  1997. msgstr "Klarte ikkje tolka pakkefila %s (2)"
  1998. #: apt-pkg/sourcelist.cc:90
  1999. #, c-format
  2000. msgid "Malformed line %lu in source list %s (URI)"
  2001. msgstr "Misforma linje %lu i kjeldelista %s (URI)"
  2002. #: apt-pkg/sourcelist.cc:92
  2003. #, c-format
  2004. msgid "Malformed line %lu in source list %s (dist)"
  2005. msgstr "Misforma linje %lu i kjeldelista %s (dist)"
  2006. #: apt-pkg/sourcelist.cc:95
  2007. #, c-format
  2008. msgid "Malformed line %lu in source list %s (URI parse)"
  2009. msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)"
  2010. #: apt-pkg/sourcelist.cc:101
  2011. #, c-format
  2012. msgid "Malformed line %lu in source list %s (absolute dist)"
  2013. msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)"
  2014. #: apt-pkg/sourcelist.cc:108
  2015. #, c-format
  2016. msgid "Malformed line %lu in source list %s (dist parse)"
  2017. msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
  2018. #: apt-pkg/sourcelist.cc:206
  2019. #, c-format
  2020. msgid "Opening %s"
  2021. msgstr "Opnar %s"
  2022. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2023. #, c-format
  2024. msgid "Line %u too long in source list %s."
  2025. msgstr "Linja %u i kjeldelista %s er for lang."
  2026. #: apt-pkg/sourcelist.cc:243
  2027. #, c-format
  2028. msgid "Malformed line %u in source list %s (type)"
  2029. msgstr "Misforma linje %u i kjeldelista %s (type)"
  2030. #: apt-pkg/sourcelist.cc:247
  2031. #, fuzzy, c-format
  2032. msgid "Type '%s' is not known on line %u in source list %s"
  2033. msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s"
  2034. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2035. #, c-format
  2036. msgid "Malformed line %u in source list %s (vendor id)"
  2037. msgstr "Misforma linje %u i kjeldelista %s (utgjevar-ID)"
  2038. #: apt-pkg/packagemanager.cc:436
  2039. #, c-format
  2040. msgid ""
  2041. "This installation run will require temporarily removing the essential "
  2042. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2043. "you really want to do it, activate the APT::Force-LoopBreak option."
  2044. msgstr ""
  2045. "Denne installasjonen vil verta nøydd til å mellombels fjerna den nødvendige "
  2046. "pakken %s på grunn av ei konflikt/forkrav-løkkje. Dette er ofte uheldig, men "
  2047. "om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-"
  2048. "LoopBreak»."
  2049. #: apt-pkg/pkgrecords.cc:32
  2050. #, c-format
  2051. msgid "Index file type '%s' is not supported"
  2052. msgstr "Indeksfiltypen «%s» er ikkje støtta"
  2053. #: apt-pkg/algorithms.cc:248
  2054. #, c-format
  2055. msgid ""
  2056. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2057. msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje."
  2058. #: apt-pkg/algorithms.cc:1138
  2059. msgid ""
  2060. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2061. "held packages."
  2062. msgstr ""
  2063. "Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar "
  2064. "som er haldne tilbake."
  2065. #: apt-pkg/algorithms.cc:1140
  2066. msgid "Unable to correct problems, you have held broken packages."
  2067. msgstr ""
  2068. "Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake."
  2069. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2070. msgid ""
  2071. "Some index files failed to download, they have been ignored, or old ones "
  2072. "used instead."
  2073. msgstr ""
  2074. "Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle "
  2075. "filer er brukte i staden."
  2076. #: apt-pkg/acquire.cc:60
  2077. #, c-format
  2078. msgid "Lists directory %spartial is missing."
  2079. msgstr "Listekatalogen %spartial manglar."
  2080. #: apt-pkg/acquire.cc:64
  2081. #, c-format
  2082. msgid "Archive directory %spartial is missing."
  2083. msgstr "Arkivkatalogen %spartial manglar."
  2084. #. only show the ETA if it makes sense
  2085. #. two days
  2086. #: apt-pkg/acquire.cc:826
  2087. #, c-format
  2088. msgid "Retrieving file %li of %li (%s remaining)"
  2089. msgstr ""
  2090. #: apt-pkg/acquire.cc:828
  2091. #, fuzzy, c-format
  2092. msgid "Retrieving file %li of %li"
  2093. msgstr "Les filliste"
  2094. #: apt-pkg/acquire-worker.cc:110
  2095. #, c-format
  2096. msgid "The method driver %s could not be found."
  2097. msgstr "Finn ikkje metodedrivaren %s."
  2098. #: apt-pkg/acquire-worker.cc:159
  2099. #, c-format
  2100. msgid "Method %s did not start correctly"
  2101. msgstr "Metoden %s starta ikkje rett"
  2102. #: apt-pkg/acquire-worker.cc:413
  2103. #, fuzzy, c-format
  2104. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2105. msgstr ""
  2106. "Skifte av medum: Set inn plata merkt\n"
  2107. " «%s»\n"
  2108. "i stasjonen «%s» og trykk Enter.\n"
  2109. #: apt-pkg/init.cc:132
  2110. #, c-format
  2111. msgid "Packaging system '%s' is not supported"
  2112. msgstr "Pakkesystemet «%s» er ikkje støtta"
  2113. #: apt-pkg/init.cc:148
  2114. msgid "Unable to determine a suitable packaging system type"
  2115. msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype"
  2116. #: apt-pkg/clean.cc:56
  2117. #, c-format
  2118. msgid "Unable to stat %s."
  2119. msgstr "Klarte ikkje få status på %s."
  2120. #: apt-pkg/srcrecords.cc:44
  2121. msgid "You must put some 'source' URIs in your sources.list"
  2122. msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list."
  2123. #: apt-pkg/cachefile.cc:71
  2124. msgid "The package lists or status file could not be parsed or opened."
  2125. msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila."
  2126. #: apt-pkg/cachefile.cc:75
  2127. msgid "You may want to run apt-get update to correct these problems"
  2128. msgstr ""
  2129. "Du vil kanskje prøva å retta på desse problema ved å køyra «apt-get update»."
  2130. #: apt-pkg/policy.cc:347
  2131. #, fuzzy, c-format
  2132. msgid "Invalid record in the preferences file %s, no Package header"
  2133. msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud"
  2134. #: apt-pkg/policy.cc:369
  2135. #, c-format
  2136. msgid "Did not understand pin type %s"
  2137. msgstr "Skjønar ikkje spikringstypen %s"
  2138. #: apt-pkg/policy.cc:377
  2139. msgid "No priority (or zero) specified for pin"
  2140. msgstr "Ingen prioritet (eller null) oppgitt for spiker"
  2141. #: apt-pkg/pkgcachegen.cc:74
  2142. msgid "Cache has an incompatible versioning system"
  2143. msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem"
  2144. #: apt-pkg/pkgcachegen.cc:117
  2145. #, c-format
  2146. msgid "Error occurred while processing %s (NewPackage)"
  2147. msgstr "Feil ved behandling av %s (NewPackage)"
  2148. #: apt-pkg/pkgcachegen.cc:132
  2149. #, c-format
  2150. msgid "Error occurred while processing %s (UsePackage1)"
  2151. msgstr "Feil ved behandling av %s (UsePackage1)"
  2152. #: apt-pkg/pkgcachegen.cc:166
  2153. #, fuzzy, c-format
  2154. msgid "Error occurred while processing %s (NewFileDesc1)"
  2155. msgstr "Feil ved behandling av %s (NewFileVer1)"
  2156. #: apt-pkg/pkgcachegen.cc:191
  2157. #, c-format
  2158. msgid "Error occurred while processing %s (UsePackage2)"
  2159. msgstr "Feil ved behandling av %s (UsePackage2)"
  2160. #: apt-pkg/pkgcachegen.cc:195
  2161. #, c-format
  2162. msgid "Error occurred while processing %s (NewFileVer1)"
  2163. msgstr "Feil ved behandling av %s (NewFileVer1)"
  2164. #: apt-pkg/pkgcachegen.cc:226
  2165. #, c-format
  2166. msgid "Error occurred while processing %s (NewVersion1)"
  2167. msgstr "Feil ved behandling av %s (NewVersion1)"
  2168. #: apt-pkg/pkgcachegen.cc:230
  2169. #, c-format
  2170. msgid "Error occurred while processing %s (UsePackage3)"
  2171. msgstr "Feil ved behandling av %s (UsePackage3)"
  2172. #: apt-pkg/pkgcachegen.cc:234
  2173. #, c-format
  2174. msgid "Error occurred while processing %s (NewVersion2)"
  2175. msgstr "Feil ved behandling av %s (NewVersion2)"
  2176. #: apt-pkg/pkgcachegen.cc:258
  2177. #, fuzzy, c-format
  2178. msgid "Error occurred while processing %s (NewFileDesc2)"
  2179. msgstr "Feil ved behandling av %s (NewFileVer1)"
  2180. #: apt-pkg/pkgcachegen.cc:264
  2181. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2182. msgstr "Jøss, du har overgått talet på pakkenamn som APT kan handtera."
  2183. #: apt-pkg/pkgcachegen.cc:267
  2184. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2185. msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
  2186. #: apt-pkg/pkgcachegen.cc:270
  2187. #, fuzzy
  2188. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2189. msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
  2190. #: apt-pkg/pkgcachegen.cc:273
  2191. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2192. msgstr "Jøss, du har overgått talet på krav som APT kan handtera."
  2193. #: apt-pkg/pkgcachegen.cc:301
  2194. #, c-format
  2195. msgid "Error occurred while processing %s (FindPkg)"
  2196. msgstr "Feil ved behandling av %s (FindPkg)"
  2197. #: apt-pkg/pkgcachegen.cc:314
  2198. #, c-format
  2199. msgid "Error occurred while processing %s (CollectFileProvides)"
  2200. msgstr "Feil ved behandling av %s (CollectFileProvides)"
  2201. #: apt-pkg/pkgcachegen.cc:320
  2202. #, c-format
  2203. msgid "Package %s %s was not found while processing file dependencies"
  2204. msgstr "Fann ikkje pakken %s %s ved behandling av filkrav"
  2205. #: apt-pkg/pkgcachegen.cc:693
  2206. #, c-format
  2207. msgid "Couldn't stat source package list %s"
  2208. msgstr "Klarte ikkje få status på kjeldepakkelista %s"
  2209. #: apt-pkg/pkgcachegen.cc:778
  2210. msgid "Collecting File Provides"
  2211. msgstr "Samlar inn filtilbod"
  2212. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2213. msgid "IO Error saving source cache"
  2214. msgstr "IU-feil ved lagring av kjeldelager"
  2215. #: apt-pkg/acquire-item.cc:128
  2216. #, c-format
  2217. msgid "rename failed, %s (%s -> %s)."
  2218. msgstr "endring av namn mislukkast, %s (%s -> %s)."
  2219. #: apt-pkg/acquire-item.cc:395
  2220. msgid "MD5Sum mismatch"
  2221. msgstr "Feil MD5-sum"
  2222. #: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411
  2223. #, fuzzy
  2224. msgid "Hash Sum mismatch"
  2225. msgstr "Feil MD5-sum"
  2226. #: apt-pkg/acquire-item.cc:1106
  2227. msgid "There is no public key available for the following key IDs:\n"
  2228. msgstr ""
  2229. #: apt-pkg/acquire-item.cc:1216
  2230. #, c-format
  2231. msgid ""
  2232. "I wasn't able to locate a file for the %s package. This might mean you need "
  2233. "to manually fix this package. (due to missing arch)"
  2234. msgstr ""
  2235. "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv "
  2236. "(fordi arkitekturen manglar)."
  2237. #: apt-pkg/acquire-item.cc:1275
  2238. #, c-format
  2239. msgid ""
  2240. "I wasn't able to locate file for the %s package. This might mean you need to "
  2241. "manually fix this package."
  2242. msgstr ""
  2243. "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv."
  2244. #: apt-pkg/acquire-item.cc:1316
  2245. #, c-format
  2246. msgid ""
  2247. "The package index files are corrupted. No Filename: field for package %s."
  2248. msgstr ""
  2249. "Pakkeindeksfilene er øydelagde. Feltet «Filename:» manglar for pakken %s."
  2250. #: apt-pkg/acquire-item.cc:1403
  2251. msgid "Size mismatch"
  2252. msgstr "Feil storleik"
  2253. #: apt-pkg/indexrecords.cc:40
  2254. #, fuzzy, c-format
  2255. msgid "Unable to parse Release file %s"
  2256. msgstr "Klarte ikkje tolka pakkefila %s (1)"
  2257. #: apt-pkg/indexrecords.cc:47
  2258. #, fuzzy, c-format
  2259. msgid "No sections in Release file %s"
  2260. msgstr "Merk, vel %s i staden for %s\n"
  2261. #: apt-pkg/indexrecords.cc:81
  2262. #, c-format
  2263. msgid "No Hash entry in Release file %s"
  2264. msgstr ""
  2265. #: apt-pkg/vendorlist.cc:66
  2266. #, c-format
  2267. msgid "Vendor block %s contains no fingerprint"
  2268. msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk"
  2269. #: apt-pkg/cdrom.cc:525
  2270. #, c-format
  2271. msgid ""
  2272. "Using CD-ROM mount point %s\n"
  2273. "Mounting CD-ROM\n"
  2274. msgstr ""
  2275. "Brukar monteringspunktet %s for CD-ROM\n"
  2276. "Monterer CD-ROM\n"
  2277. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2278. msgid "Identifying.. "
  2279. msgstr "Identifiserer ... "
  2280. #: apt-pkg/cdrom.cc:559
  2281. #, c-format
  2282. msgid "Stored label: %s\n"
  2283. msgstr "Lagra etikett: %s \n"
  2284. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2285. #, fuzzy
  2286. msgid "Unmounting CD-ROM...\n"
  2287. msgstr "Avmonterer CD-ROM ..."
  2288. #: apt-pkg/cdrom.cc:585
  2289. #, c-format
  2290. msgid "Using CD-ROM mount point %s\n"
  2291. msgstr "Brukar monteringspunktet %s for CD-ROM\n"
  2292. #: apt-pkg/cdrom.cc:603
  2293. msgid "Unmounting CD-ROM\n"
  2294. msgstr "Avmonterer CD-ROM\n"
  2295. #: apt-pkg/cdrom.cc:607
  2296. msgid "Waiting for disc...\n"
  2297. msgstr "Ventar på disk ...\n"
  2298. #. Mount the new CDROM
  2299. #: apt-pkg/cdrom.cc:615
  2300. msgid "Mounting CD-ROM...\n"
  2301. msgstr "Monterer CD-ROM ...\n"
  2302. #: apt-pkg/cdrom.cc:633
  2303. msgid "Scanning disc for index files..\n"
  2304. msgstr "Leitar etter indeksfiler på disken ...\n"
  2305. #: apt-pkg/cdrom.cc:673
  2306. #, fuzzy, c-format
  2307. msgid ""
  2308. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2309. "zu signatures\n"
  2310. msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
  2311. #: apt-pkg/cdrom.cc:684
  2312. msgid ""
  2313. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2314. "wrong architecture?"
  2315. msgstr ""
  2316. #: apt-pkg/cdrom.cc:710
  2317. #, fuzzy, c-format
  2318. msgid "Found label '%s'\n"
  2319. msgstr "Lagra etikett: %s \n"
  2320. #: apt-pkg/cdrom.cc:739
  2321. msgid "That is not a valid name, try again.\n"
  2322. msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n"
  2323. #: apt-pkg/cdrom.cc:755
  2324. #, c-format
  2325. msgid ""
  2326. "This disc is called: \n"
  2327. "'%s'\n"
  2328. msgstr ""
  2329. "Disken vert kalla: \n"
  2330. "«%s»\n"
  2331. #: apt-pkg/cdrom.cc:759
  2332. msgid "Copying package lists..."
  2333. msgstr "Kopierer pakkelister ..."
  2334. #: apt-pkg/cdrom.cc:785
  2335. msgid "Writing new source list\n"
  2336. msgstr "Skriv ny kjeldeliste\n"
  2337. #: apt-pkg/cdrom.cc:794
  2338. msgid "Source list entries for this disc are:\n"
  2339. msgstr "Kjeldelisteoppføringar for denne disken er:\n"
  2340. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2341. #, c-format
  2342. msgid "Wrote %i records.\n"
  2343. msgstr "Skreiv %i postar.\n"
  2344. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2345. #, c-format
  2346. msgid "Wrote %i records with %i missing files.\n"
  2347. msgstr "Skreiv %i postar med %i manglande filer.\n"
  2348. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2349. #, c-format
  2350. msgid "Wrote %i records with %i mismatched files\n"
  2351. msgstr "Skreiv %i postar med %i filer som ikkje passa\n"
  2352. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2353. #, c-format
  2354. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2355. msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n"
  2356. #: apt-pkg/deb/dpkgpm.cc:49
  2357. #, fuzzy, c-format
  2358. msgid "Installing %s"
  2359. msgstr " Installert: "
  2360. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660
  2361. #, fuzzy, c-format
  2362. msgid "Configuring %s"
  2363. msgstr "Koplar til %s"
  2364. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667
  2365. #, fuzzy, c-format
  2366. msgid "Removing %s"
  2367. msgstr "Opnar %s"
  2368. #: apt-pkg/deb/dpkgpm.cc:52
  2369. #, c-format
  2370. msgid "Running post-installation trigger %s"
  2371. msgstr ""
  2372. #: apt-pkg/deb/dpkgpm.cc:557
  2373. #, fuzzy, c-format
  2374. msgid "Directory '%s' missing"
  2375. msgstr "Listekatalogen %spartial manglar."
  2376. #: apt-pkg/deb/dpkgpm.cc:653
  2377. #, fuzzy, c-format
  2378. msgid "Preparing %s"
  2379. msgstr "Opnar %s"
  2380. #: apt-pkg/deb/dpkgpm.cc:654
  2381. #, fuzzy, c-format
  2382. msgid "Unpacking %s"
  2383. msgstr "Opnar %s"
  2384. #: apt-pkg/deb/dpkgpm.cc:659
  2385. #, fuzzy, c-format
  2386. msgid "Preparing to configure %s"
  2387. msgstr "Opnar oppsettsfila %s"
  2388. #: apt-pkg/deb/dpkgpm.cc:661
  2389. #, fuzzy, c-format
  2390. msgid "Installed %s"
  2391. msgstr " Installert: "
  2392. #: apt-pkg/deb/dpkgpm.cc:666
  2393. #, c-format
  2394. msgid "Preparing for removal of %s"
  2395. msgstr ""
  2396. #: apt-pkg/deb/dpkgpm.cc:668
  2397. #, fuzzy, c-format
  2398. msgid "Removed %s"
  2399. msgstr "Tilrådingar"
  2400. #: apt-pkg/deb/dpkgpm.cc:673
  2401. #, fuzzy, c-format
  2402. msgid "Preparing to completely remove %s"
  2403. msgstr "Opnar oppsettsfila %s"
  2404. #: apt-pkg/deb/dpkgpm.cc:674
  2405. #, fuzzy, c-format
  2406. msgid "Completely removed %s"
  2407. msgstr "Klarte ikkje fjerna %s"
  2408. #: apt-pkg/deb/dpkgpm.cc:878
  2409. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2410. msgstr ""
  2411. #: apt-pkg/deb/dpkgpm.cc:907
  2412. msgid "Running dpkg"
  2413. msgstr ""
  2414. #: apt-pkg/deb/debsystem.cc:70
  2415. #, c-format
  2416. msgid ""
  2417. "Unable to lock the administration directory (%s), is another process using "
  2418. "it?"
  2419. msgstr ""
  2420. #: apt-pkg/deb/debsystem.cc:73
  2421. #, fuzzy, c-format
  2422. msgid "Unable to lock the administration directory (%s), are you root?"
  2423. msgstr "Klarte ikkje låsa listekatalogen"
  2424. #: apt-pkg/deb/debsystem.cc:82
  2425. msgid ""
  2426. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2427. "the problem. "
  2428. msgstr ""
  2429. #: apt-pkg/deb/debsystem.cc:100
  2430. msgid "Not locked"
  2431. msgstr ""
  2432. #: methods/rred.cc:219
  2433. #, fuzzy
  2434. msgid "Could not patch file"
  2435. msgstr "Klarte ikkje opna fila %s"
  2436. #: methods/rsh.cc:330
  2437. msgid "Connection closed prematurely"
  2438. msgstr "Sambandet vart uventa stengd"
  2439. #~ msgid "%4i %s\n"
  2440. #~ msgstr "%4i %s\n"
  2441. #, fuzzy
  2442. #~ msgid "Processing triggers for %s"
  2443. #~ msgstr "Feil ved lesing av katalogen %s"
  2444. #~ msgid ""
  2445. #~ "Since you only requested a single operation it is extremely likely that\n"
  2446. #~ "the package is simply not installable and a bug report against\n"
  2447. #~ "that package should be filed."
  2448. #~ msgstr ""
  2449. #~ "Sidan du berre har valt ein enkel operasjon, er det svært sannsynleg at\n"
  2450. #~ "pakken rett og slett ikkje lèt seg installera. I såfall bør du senda\n"
  2451. #~ "feilmelding."
  2452. #, fuzzy
  2453. #~ msgid "Line %d too long (max %lu)"
  2454. #~ msgstr "Linja %d er for lang (maks %d)"
  2455. #, fuzzy
  2456. #~ msgid "Line %d too long (max %d)"
  2457. #~ msgstr "Linja %d er for lang (maks %d)"
  2458. #, fuzzy
  2459. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2460. #~ msgstr "Feil ved behandling av %s (NewFileVer1)"
  2461. #, fuzzy
  2462. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2463. #~ msgstr "Feil ved behandling av %s (NewFileVer1)"
  2464. #, fuzzy
  2465. #~ msgid "Stored label: %s \n"
  2466. #~ msgstr "Lagra etikett: %s \n"
  2467. #, fuzzy
  2468. #~ msgid ""
  2469. #~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
  2470. #~ "i signatures\n"
  2471. #~ msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
  2472. #, fuzzy
  2473. #~ msgid "openpty failed\n"
  2474. #~ msgstr "Utvalet mislukkast"
  2475. #~ msgid "File date has changed %s"
  2476. #~ msgstr "Fildatoen er endra %s"
  2477. #~ msgid "Reading file list"
  2478. #~ msgstr "Les filliste"
  2479. #, fuzzy
  2480. #~ msgid "Could not execute "
  2481. #~ msgstr "Klarte ikkje låsa %s"
  2482. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2483. #~ msgstr "Ukjend utgjevar-ID «%s» i linja %u i kjeldelista %s"