sv.po 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948
  1. # Advanced Package Tool - APT message translation catalog
  2. # Swedish messages
  3. # Copyright (C) 2002-2010 Free Software Foundation, Inc.
  4. # This file is distributed under the same license as the apt package.
  5. # Peter Karlsson <peterk@debian.org>, 2002-2008.
  6. # Daniel Nylander <po@danielnylander.se>, 2005-2010.
  7. #
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: apt\n"
  11. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  12. "POT-Creation-Date: 2015-03-09 02:17+0100\n"
  13. "PO-Revision-Date: 2010-08-24 21:18+0100\n"
  14. "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
  15. "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n"
  16. "Language: sv\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: 8bit\n"
  20. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  21. #: cmdline/apt-cache.cc:149
  22. #, c-format
  23. msgid "Package %s version %s has an unmet dep:\n"
  24. msgstr ""
  25. "Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n"
  26. #: cmdline/apt-cache.cc:320
  27. msgid "Total package names: "
  28. msgstr "Totalt antal paketnamn: "
  29. #: cmdline/apt-cache.cc:322
  30. msgid "Total package structures: "
  31. msgstr "Totala paketstrukturer: "
  32. #: cmdline/apt-cache.cc:362
  33. msgid " Normal packages: "
  34. msgstr " Vanliga paket: "
  35. #: cmdline/apt-cache.cc:363
  36. msgid " Pure virtual packages: "
  37. msgstr " Helt virtuella paket: "
  38. #: cmdline/apt-cache.cc:364
  39. msgid " Single virtual packages: "
  40. msgstr " Enstaka virtuella paket: "
  41. #: cmdline/apt-cache.cc:365
  42. msgid " Mixed virtual packages: "
  43. msgstr " Blandade virtuella paket: "
  44. #: cmdline/apt-cache.cc:366
  45. msgid " Missing: "
  46. msgstr " Saknade: "
  47. #: cmdline/apt-cache.cc:368
  48. msgid "Total distinct versions: "
  49. msgstr "Totalt antal olika versioner: "
  50. #: cmdline/apt-cache.cc:370
  51. msgid "Total distinct descriptions: "
  52. msgstr "Totalt antal olika beskrivningar: "
  53. #: cmdline/apt-cache.cc:372
  54. msgid "Total dependencies: "
  55. msgstr "Totalt antal beroenden: "
  56. #: cmdline/apt-cache.cc:375
  57. msgid "Total ver/file relations: "
  58. msgstr "Totalt antal version/filrelationer: "
  59. #: cmdline/apt-cache.cc:377
  60. msgid "Total Desc/File relations: "
  61. msgstr "Totalt antal beskrivning/filrelationer: "
  62. #: cmdline/apt-cache.cc:379
  63. msgid "Total Provides mappings: "
  64. msgstr "Totalt antal tillhandahållningsmarkeringar: "
  65. #: cmdline/apt-cache.cc:433
  66. msgid "Total globbed strings: "
  67. msgstr "Totalt antal sökmönstersträngar: "
  68. #: cmdline/apt-cache.cc:439
  69. msgid "Total slack space: "
  70. msgstr "Totalt bortkastat utrymme: "
  71. #: cmdline/apt-cache.cc:454
  72. msgid "Total space accounted for: "
  73. msgstr "Totalt utrymme som kan redogöras för: "
  74. #: cmdline/apt-cache.cc:590 cmdline/apt-cache.cc:1239
  75. #: apt-private/private-show.cc:58
  76. #, c-format
  77. msgid "Package file %s is out of sync."
  78. msgstr "Paketfilen %s är inte synkroniserad."
  79. #: cmdline/apt-cache.cc:668 cmdline/apt-cache.cc:1526
  80. #: cmdline/apt-cache.cc:1528 cmdline/apt-cache.cc:1605 cmdline/apt-mark.cc:56
  81. #: cmdline/apt-mark.cc:103 cmdline/apt-mark.cc:229
  82. #: apt-private/private-show.cc:171 apt-private/private-show.cc:173
  83. msgid "No packages found"
  84. msgstr "Inga paket hittades"
  85. #: cmdline/apt-cache.cc:1338 apt-private/private-search.cc:41
  86. msgid "You must give at least one search pattern"
  87. msgstr "Du måste ange minst ett sökmönster"
  88. #: cmdline/apt-cache.cc:1505
  89. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  90. msgstr ""
  91. #: cmdline/apt-cache.cc:1600 apt-pkg/cacheset.cc:653
  92. #, c-format
  93. msgid "Unable to locate package %s"
  94. msgstr "Kunde inte hitta paketet %s"
  95. #: cmdline/apt-cache.cc:1630
  96. msgid "Package files:"
  97. msgstr "\"Package\"-filer:"
  98. #: cmdline/apt-cache.cc:1637 cmdline/apt-cache.cc:1728
  99. msgid "Cache is out of sync, can't x-ref a package file"
  100. msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil"
  101. #. Show any packages have explicit pins
  102. #: cmdline/apt-cache.cc:1651
  103. msgid "Pinned packages:"
  104. msgstr "Fastnålade paket:"
  105. #: cmdline/apt-cache.cc:1663 cmdline/apt-cache.cc:1708
  106. msgid "(not found)"
  107. msgstr "(hittades inte)"
  108. #: cmdline/apt-cache.cc:1671
  109. msgid " Installed: "
  110. msgstr " Installerad: "
  111. #: cmdline/apt-cache.cc:1672
  112. msgid " Candidate: "
  113. msgstr " Kandidat: "
  114. #: cmdline/apt-cache.cc:1690 cmdline/apt-cache.cc:1698
  115. msgid "(none)"
  116. msgstr "(ingen)"
  117. #: cmdline/apt-cache.cc:1705
  118. msgid " Package pin: "
  119. msgstr " Paketnålning: "
  120. #. Show the priority tables
  121. #: cmdline/apt-cache.cc:1714
  122. msgid " Version table:"
  123. msgstr " Versionstabell:"
  124. #: cmdline/apt-cache.cc:1827 cmdline/apt-cdrom.cc:208 cmdline/apt-config.cc:83
  125. #: cmdline/apt-get.cc:1610 cmdline/apt-helper.cc:86 cmdline/apt-mark.cc:446
  126. #: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:222
  127. #: ftparchive/apt-ftparchive.cc:619 cmdline/apt-internal-solver.cc:47
  128. #: cmdline/apt-sortpkgs.cc:149
  129. #, c-format
  130. msgid "%s %s for %s compiled on %s %s\n"
  131. msgstr "%s %s för %s kompilerad den %s %s\n"
  132. #: cmdline/apt-cache.cc:1834
  133. #, fuzzy
  134. msgid ""
  135. "Usage: apt-cache [options] command\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 query information\n"
  140. "from APT's binary cache files\n"
  141. "\n"
  142. "Commands:\n"
  143. " gencaches - Build both the package and source cache\n"
  144. " showpkg - Show some general information for a single package\n"
  145. " showsrc - Show source records\n"
  146. " stats - Show some basic statistics\n"
  147. " dump - Show the entire file in a terse form\n"
  148. " dumpavail - Print an available file to stdout\n"
  149. " unmet - Show unmet dependencies\n"
  150. " search - Search the package list for a regex pattern\n"
  151. " show - Show a readable record for the package\n"
  152. " depends - Show raw dependency information for a package\n"
  153. " rdepends - Show reverse dependency information for a package\n"
  154. " pkgnames - List the names of all packages in the system\n"
  155. " dotty - Generate package graphs for GraphViz\n"
  156. " xvcg - Generate package graphs for xvcg\n"
  157. " policy - Show policy settings\n"
  158. "\n"
  159. "Options:\n"
  160. " -h This help text.\n"
  161. " -p=? The package cache.\n"
  162. " -s=? The source cache.\n"
  163. " -q Disable progress indicator.\n"
  164. " -i Show only important deps for the unmet command.\n"
  165. " -c=? Read this configuration file\n"
  166. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  167. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  168. msgstr ""
  169. "Användning: apt-cache [flaggor] kommando\n"
  170. " apt-cache [flaggor] add fil1 [fil2 ...]\n"
  171. " apt-cache [flaggor] showpkg paket1 [paket2 ...]\n"
  172. " apt-cache [flaggor] showsrc paket1 [paket2 ...]\n"
  173. "\n"
  174. "apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n"
  175. "samt hämta information från dem\n"
  176. "\n"
  177. "Kommandon:\n"
  178. " add - Lägg till en paketfil till källcachen\n"
  179. " gencaches - Bygg både paket- och källcache\n"
  180. " showpkg - Visa viss allmän information om ett enskilt paket\n"
  181. " showsrc - Visa källkodsposter\n"
  182. " stats - Visa viss grundläggande statistik\n"
  183. " dump - Visa hela filen i koncis form\n"
  184. " dumpavail - Skriv en \"available\"-fil på standard ut\n"
  185. " unmet - Visa otillfredsställbara beroenden\n"
  186. " search - Sök i paketlistan med ett reguljärt uttryck\n"
  187. " show - Visa en läsbar post för paketet\n"
  188. " showauto - Visa en lista över automatiskt installerade paket\n"
  189. " depends - Visa rå information om beroenden för ett paket\n"
  190. " rdepends - Visa information om omvända beroenden för ett paket\n"
  191. " pkgnames - Lista namnen på alla paket i systemet\n"
  192. " dotty - Generera paketdiagram för GraphViz\n"
  193. " xvcg - Generera paketdiagram för xvcg\n"
  194. " policy - Visa policyinställningar\n"
  195. "\n"
  196. "Flaggor:\n"
  197. " -h Denna hjälptext.\n"
  198. " -p=? Paketcachen.\n"
  199. " -s=? Källcachen.\n"
  200. " -q Inaktivera förloppsindikatorn.\n"
  201. " -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n"
  202. " -c=? Läs denna konfigurationsfil.\n"
  203. " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
  204. "Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n"
  205. #: cmdline/apt-cdrom.cc:77
  206. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  207. msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 5.0.3 Disk 1\""
  208. #: cmdline/apt-cdrom.cc:92
  209. msgid "Please insert a Disc in the drive and press enter"
  210. msgstr "Mata in en skiva i enheten och tryck på Enter"
  211. #: cmdline/apt-cdrom.cc:140
  212. #, c-format
  213. msgid "Failed to mount '%s' to '%s'"
  214. msgstr "Misslyckades med att montera \"%s\" till \"%s\""
  215. #: cmdline/apt-cdrom.cc:179
  216. msgid ""
  217. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  218. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  219. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  220. "mount point."
  221. msgstr ""
  222. #: cmdline/apt-cdrom.cc:183
  223. msgid "Repeat this process for the rest of the CDs in your set."
  224. msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning."
  225. #: cmdline/apt-config.cc:48
  226. msgid "Arguments not in pairs"
  227. msgstr "Argumenten gavs inte parvis"
  228. #: cmdline/apt-config.cc:89
  229. msgid ""
  230. "Usage: apt-config [options] command\n"
  231. "\n"
  232. "apt-config is a simple tool to read the APT config file\n"
  233. "\n"
  234. "Commands:\n"
  235. " shell - Shell mode\n"
  236. " dump - Show the configuration\n"
  237. "\n"
  238. "Options:\n"
  239. " -h This help text.\n"
  240. " -c=? Read this configuration file\n"
  241. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  242. msgstr ""
  243. "Användning: apt-config [flaggor] kommando\n"
  244. "\n"
  245. "apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n"
  246. "\n"
  247. "Kommandon:\n"
  248. " shell - Skalläge.\n"
  249. " dump - Visa konfigurationen.\n"
  250. "\n"
  251. "Flaggor:\n"
  252. " -h Denna hjälptext.\n"
  253. " -c=? Läs denna konfigurationsfil.\n"
  254. " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
  255. #: cmdline/apt-get.cc:224
  256. #, fuzzy, c-format
  257. msgid "Can not find a package for architecture '%s'"
  258. msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\""
  259. #: cmdline/apt-get.cc:311
  260. #, fuzzy, c-format
  261. msgid "Can not find a package '%s' with version '%s'"
  262. msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\""
  263. #: cmdline/apt-get.cc:314
  264. #, fuzzy, c-format
  265. msgid "Can not find a package '%s' with release '%s'"
  266. msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\""
  267. #: cmdline/apt-get.cc:358
  268. #, c-format
  269. msgid "Picking '%s' as source package instead of '%s'\n"
  270. msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n"
  271. #: cmdline/apt-get.cc:414
  272. #, fuzzy, c-format
  273. msgid "Can not find version '%s' of package '%s'"
  274. msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\""
  275. #: cmdline/apt-get.cc:445
  276. #, c-format
  277. msgid "Couldn't find package %s"
  278. msgstr "Kunde inte hitta paketet %s"
  279. #: cmdline/apt-get.cc:450 cmdline/apt-mark.cc:78
  280. #: apt-private/private-install.cc:863
  281. #, c-format
  282. msgid "%s set to manually installed.\n"
  283. msgstr "%s är satt till manuellt installerad.\n"
  284. #: cmdline/apt-get.cc:452 cmdline/apt-mark.cc:80
  285. #, c-format
  286. msgid "%s set to automatically installed.\n"
  287. msgstr "%s är satt till automatiskt installerad.\n"
  288. #: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:124
  289. msgid ""
  290. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  291. "instead."
  292. msgstr ""
  293. #: cmdline/apt-get.cc:529 cmdline/apt-get.cc:537
  294. msgid "Internal error, problem resolver broke stuff"
  295. msgstr "Internt fel, problemlösaren förstörde någonting"
  296. #: cmdline/apt-get.cc:598
  297. msgid "Unable to lock the download directory"
  298. msgstr "Kunde inte låsa hämtningskatalogen"
  299. #: cmdline/apt-get.cc:716
  300. msgid "Must specify at least one package to fetch source for"
  301. msgstr "Du måste ange minst ett paket att hämta källkod för"
  302. #: cmdline/apt-get.cc:760 cmdline/apt-get.cc:1074
  303. #, c-format
  304. msgid "Unable to find a source package for %s"
  305. msgstr "Kunde inte hitta något källkodspaket för %s"
  306. #: cmdline/apt-get.cc:780
  307. #, c-format
  308. msgid ""
  309. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  310. "%s\n"
  311. msgstr ""
  312. "OBSERVERA: paketering av \"%s\" hanteras i versionshanteringssystemet \"%s\" "
  313. "på:\n"
  314. "%s\n"
  315. #: cmdline/apt-get.cc:785
  316. #, fuzzy, c-format
  317. msgid ""
  318. "Please use:\n"
  319. "bzr branch %s\n"
  320. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  321. msgstr ""
  322. "Använd:\n"
  323. "bzr get %s\n"
  324. "för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n"
  325. #: cmdline/apt-get.cc:833
  326. #, c-format
  327. msgid "Skipping already downloaded file '%s'\n"
  328. msgstr "Hoppar över redan hämtade filen \"%s\"\n"
  329. #. TRANSLATOR: The required space between number and unit is already included
  330. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  331. #: cmdline/apt-get.cc:863
  332. #, c-format
  333. msgid "Need to get %sB/%sB of source archives.\n"
  334. msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n"
  335. #. TRANSLATOR: The required space between number and unit is already included
  336. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  337. #: cmdline/apt-get.cc:868
  338. #, c-format
  339. msgid "Need to get %sB of source archives.\n"
  340. msgstr "Behöver hämta %sB källkodsarkiv.\n"
  341. #: cmdline/apt-get.cc:874
  342. #, c-format
  343. msgid "Fetch source %s\n"
  344. msgstr "Hämtar källkoden %s\n"
  345. #: cmdline/apt-get.cc:899
  346. msgid "Failed to fetch some archives."
  347. msgstr "Misslyckades med att hämta vissa arkiv."
  348. #: cmdline/apt-get.cc:904 apt-private/private-install.cc:289
  349. msgid "Download complete and in download only mode"
  350. msgstr "Hämtningen färdig i \"endast-hämta\"-läge"
  351. #: cmdline/apt-get.cc:929
  352. #, c-format
  353. msgid "Skipping unpack of already unpacked source in %s\n"
  354. msgstr "Packar inte upp redan uppackad källkod i %s\n"
  355. #: cmdline/apt-get.cc:942
  356. #, c-format
  357. msgid "Unpack command '%s' failed.\n"
  358. msgstr "Uppackningskommandot \"%s\" misslyckades.\n"
  359. #: cmdline/apt-get.cc:943
  360. #, c-format
  361. msgid "Check if the 'dpkg-dev' package is installed.\n"
  362. msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n"
  363. #: cmdline/apt-get.cc:971
  364. #, c-format
  365. msgid "Build command '%s' failed.\n"
  366. msgstr "Byggkommandot \"%s\" misslyckades.\n"
  367. #: cmdline/apt-get.cc:990
  368. msgid "Child process failed"
  369. msgstr "Barnprocessen misslyckades"
  370. #: cmdline/apt-get.cc:1009
  371. msgid "Must specify at least one package to check builddeps for"
  372. msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för"
  373. #: cmdline/apt-get.cc:1030
  374. #, c-format
  375. msgid ""
  376. "No architecture information available for %s. See apt.conf(5) APT::"
  377. "Architectures for setup"
  378. msgstr ""
  379. #: cmdline/apt-get.cc:1047
  380. #, c-format
  381. msgid "Note, using directory '%s' to get the build dependencies\n"
  382. msgstr ""
  383. #: cmdline/apt-get.cc:1057
  384. #, fuzzy, c-format
  385. msgid "Note, using file '%s' to get the build dependencies\n"
  386. msgstr "Misslyckades med att behandla byggberoenden"
  387. #: cmdline/apt-get.cc:1086 cmdline/apt-get.cc:1089
  388. #, c-format
  389. msgid "Unable to get build-dependency information for %s"
  390. msgstr "Kunde inte hämta information om byggberoenden för %s"
  391. #: cmdline/apt-get.cc:1109
  392. #, c-format
  393. msgid "%s has no build depends.\n"
  394. msgstr "%s har inga byggberoenden.\n"
  395. #: cmdline/apt-get.cc:1279
  396. #, fuzzy, c-format
  397. msgid ""
  398. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  399. "packages"
  400. msgstr ""
  401. "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
  402. "hittas"
  403. #: cmdline/apt-get.cc:1297
  404. #, c-format
  405. msgid ""
  406. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  407. "found"
  408. msgstr ""
  409. "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
  410. "hittas"
  411. #: cmdline/apt-get.cc:1320
  412. #, c-format
  413. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  414. msgstr ""
  415. "Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade "
  416. "paketet %s är för nytt"
  417. #: cmdline/apt-get.cc:1359
  418. #, fuzzy, c-format
  419. msgid ""
  420. "%s dependency for %s cannot be satisfied because candidate version of "
  421. "package %s can't satisfy version requirements"
  422. msgstr ""
  423. "%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga "
  424. "versioner av paketet %s tillfredsställer versionskraven"
  425. #: cmdline/apt-get.cc:1365
  426. #, fuzzy, c-format
  427. msgid ""
  428. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  429. "version"
  430. msgstr ""
  431. "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
  432. "hittas"
  433. #: cmdline/apt-get.cc:1388
  434. #, c-format
  435. msgid "Failed to satisfy %s dependency for %s: %s"
  436. msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s"
  437. #: cmdline/apt-get.cc:1403
  438. #, c-format
  439. msgid "Build-dependencies for %s could not be satisfied."
  440. msgstr "Byggberoenden för %s kunde inte tillfredsställas."
  441. #: cmdline/apt-get.cc:1408
  442. msgid "Failed to process build dependencies"
  443. msgstr "Misslyckades med att behandla byggberoenden"
  444. # Felmeddelande för misslyckad chdir
  445. #: cmdline/apt-get.cc:1501 cmdline/apt-get.cc:1516
  446. #, fuzzy, c-format
  447. msgid "Changelog for %s (%s)"
  448. msgstr "Ansluter till %s (%s)"
  449. #: cmdline/apt-get.cc:1615
  450. msgid "Supported modules:"
  451. msgstr "Moduler som stöds:"
  452. #: cmdline/apt-get.cc:1656
  453. #, fuzzy
  454. msgid ""
  455. "Usage: apt-get [options] command\n"
  456. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  457. " apt-get [options] source pkg1 [pkg2 ...]\n"
  458. "\n"
  459. "apt-get is a simple command line interface for downloading and\n"
  460. "installing packages. The most frequently used commands are update\n"
  461. "and install.\n"
  462. "\n"
  463. "Commands:\n"
  464. " update - Retrieve new lists of packages\n"
  465. " upgrade - Perform an upgrade\n"
  466. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  467. " remove - Remove packages\n"
  468. " autoremove - Remove automatically all unused packages\n"
  469. " purge - Remove packages and config files\n"
  470. " source - Download source archives\n"
  471. " build-dep - Configure build-dependencies for source packages\n"
  472. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  473. " dselect-upgrade - Follow dselect selections\n"
  474. " clean - Erase downloaded archive files\n"
  475. " autoclean - Erase old downloaded archive files\n"
  476. " check - Verify that there are no broken dependencies\n"
  477. " changelog - Download and display the changelog for the given package\n"
  478. " download - Download the binary package into the current directory\n"
  479. "\n"
  480. "Options:\n"
  481. " -h This help text.\n"
  482. " -q Loggable output - no progress indicator\n"
  483. " -qq No output except for errors\n"
  484. " -d Download only - do NOT install or unpack archives\n"
  485. " -s No-act. Perform ordering simulation\n"
  486. " -y Assume Yes to all queries and do not prompt\n"
  487. " -f Attempt to correct a system with broken dependencies in place\n"
  488. " -m Attempt to continue if archives are unlocatable\n"
  489. " -u Show a list of upgraded packages as well\n"
  490. " -b Build the source package after fetching it\n"
  491. " -V Show verbose version numbers\n"
  492. " -c=? Read this configuration file\n"
  493. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  494. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  495. "pages for more information and options.\n"
  496. " This APT has Super Cow Powers.\n"
  497. msgstr ""
  498. "Användning: apt-get [flaggor] kommando\n"
  499. " apt-get [flaggor] install|remove paket1 [paket2 ...]\n"
  500. " apt-get [flaggor] source paket1 [paket2 ...]\n"
  501. "\n"
  502. "apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n"
  503. "paket. De mest använda kommandona är \"update\" och \"install\".\n"
  504. "\n"
  505. "Kommandon:\n"
  506. " update - Hämta nya paketlistor\n"
  507. " upgrade - Genomför en uppgradering\n"
  508. " install - Installera nya paket (paket är libc6, inte libc6.deb)\n"
  509. " remove - Ta bort paket\n"
  510. " autoremove - Ta automatiskt bort alla oanvända paket\n"
  511. " purge - Ta bort paket och konfigurationsfiler\n"
  512. " source - Hämta källkodsarkiv\n"
  513. " build-dep - Tillfredsställ byggberoenden för källkodspaket\n"
  514. " dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n"
  515. " dselect-upgrade - Följ valen från dselect\n"
  516. " clean - Ta bort hämtade arkivfiler\n"
  517. " autoclean - Ta bort gamla hämtade arkivfiler\n"
  518. " check - Kontrollera att det inte finns några trasiga beroenden\n"
  519. " markauto - Markera angivna paket som automatiskt installerade\n"
  520. " unmarkauto - Markera angivna paket som manuellt installerade\n"
  521. "\n"
  522. "Flaggor:\n"
  523. " -h Denna hjälptext.\n"
  524. " -q Utdata lämplig för loggar - ingen förloppsindikator.\n"
  525. " -qq Ingen utdata förutom vid fel.\n"
  526. " -d Bara hämta - VARKEN installera eller packa upp arkiven.\n"
  527. " -s Gör ingenting, simulera vad som skulle hända.\n"
  528. " -y Antag ja på alla frågor utan att fråga.\n"
  529. " -f Försök rätta ett system med otillfredsställda beroenden.\n"
  530. " -m Försök fortsätta även om arkiven inte kan hittas.\n"
  531. " -u Visa även en lista över uppgraderade paket.\n"
  532. " -b Bygg källkodspaketet när det hämtats.\n"
  533. " -V Visa pratsamma versionsnummer.\n"
  534. " -c=? Läs denna konfigurationsfil.\n"
  535. " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
  536. "Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n"
  537. "för mer information och flaggor.\n"
  538. " Denna APT har Speciella Ko-Krafter.\n"
  539. #: cmdline/apt-helper.cc:36
  540. msgid "Need one URL as argument"
  541. msgstr ""
  542. #: cmdline/apt-helper.cc:49
  543. #, fuzzy
  544. msgid "Must specify at least one pair url/filename"
  545. msgstr "Du måste ange minst ett paket att hämta källkod för"
  546. #: cmdline/apt-helper.cc:75 cmdline/apt-helper.cc:79
  547. msgid "Download Failed"
  548. msgstr ""
  549. #: cmdline/apt-helper.cc:93
  550. msgid ""
  551. "Usage: apt-helper [options] command\n"
  552. " apt-helper [options] download-file uri target-path\n"
  553. "\n"
  554. "apt-helper is a internal helper for apt\n"
  555. "\n"
  556. "Commands:\n"
  557. " download-file - download the given uri to the target-path\n"
  558. " auto-detect-proxy - detect proxy using apt.conf\n"
  559. "\n"
  560. " This APT helper has Super Meep Powers.\n"
  561. msgstr ""
  562. #: cmdline/apt-mark.cc:65
  563. #, fuzzy, c-format
  564. msgid "%s can not be marked as it is not installed.\n"
  565. msgstr "men det är inte installerat"
  566. #: cmdline/apt-mark.cc:71
  567. #, fuzzy, c-format
  568. msgid "%s was already set to manually installed.\n"
  569. msgstr "%s är satt till manuellt installerad.\n"
  570. #: cmdline/apt-mark.cc:73
  571. #, fuzzy, c-format
  572. msgid "%s was already set to automatically installed.\n"
  573. msgstr "%s är satt till automatiskt installerad.\n"
  574. #: cmdline/apt-mark.cc:238
  575. #, fuzzy, c-format
  576. msgid "%s was already set on hold.\n"
  577. msgstr "%s är redan den senaste versionen.\n"
  578. #: cmdline/apt-mark.cc:240
  579. #, fuzzy, c-format
  580. msgid "%s was already not hold.\n"
  581. msgstr "%s är redan den senaste versionen.\n"
  582. #: cmdline/apt-mark.cc:255 cmdline/apt-mark.cc:333 cmdline/apt-mark.cc:397
  583. #: apt-pkg/contrib/fileutl.cc:834 apt-pkg/contrib/gpgv.cc:192
  584. #: apt-pkg/deb/dpkgpm.cc:1303
  585. #, c-format
  586. msgid "Waited for %s but it wasn't there"
  587. msgstr "Väntade på %s men den fanns inte där"
  588. #: cmdline/apt-mark.cc:270 cmdline/apt-mark.cc:380
  589. #, fuzzy, c-format
  590. msgid "%s set on hold.\n"
  591. msgstr "%s är satt till manuellt installerad.\n"
  592. #: cmdline/apt-mark.cc:272 cmdline/apt-mark.cc:385
  593. #, fuzzy, c-format
  594. msgid "Canceled hold on %s.\n"
  595. msgstr "Misslyckades med att öppna %s"
  596. #: cmdline/apt-mark.cc:337 cmdline/apt-mark.cc:403
  597. msgid "Executing dpkg failed. Are you root?"
  598. msgstr ""
  599. #: cmdline/apt-mark.cc:450
  600. msgid ""
  601. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  602. "\n"
  603. "apt-mark is a simple command line interface for marking packages\n"
  604. "as manually or automatically installed. It can also list marks.\n"
  605. "\n"
  606. "Commands:\n"
  607. " auto - Mark the given packages as automatically installed\n"
  608. " manual - Mark the given packages as manually installed\n"
  609. " hold - Mark a package as held back\n"
  610. " unhold - Unset a package set as held back\n"
  611. " showauto - Print the list of automatically installed packages\n"
  612. " showmanual - Print the list of manually installed packages\n"
  613. " showhold - Print the list of package on hold\n"
  614. "\n"
  615. "Options:\n"
  616. " -h This help text.\n"
  617. " -q Loggable output - no progress indicator\n"
  618. " -qq No output except for errors\n"
  619. " -s No-act. Just prints what would be done.\n"
  620. " -f read/write auto/manual marking in the given file\n"
  621. " -c=? Read this configuration file\n"
  622. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  623. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  624. msgstr ""
  625. #: cmdline/apt.cc:47
  626. msgid ""
  627. "Usage: apt [options] command\n"
  628. "\n"
  629. "CLI for apt.\n"
  630. "Basic commands: \n"
  631. " list - list packages based on package names\n"
  632. " search - search in package descriptions\n"
  633. " show - show package details\n"
  634. "\n"
  635. " update - update list of available packages\n"
  636. "\n"
  637. " install - install packages\n"
  638. " remove - remove packages\n"
  639. "\n"
  640. " upgrade - upgrade the system by installing/upgrading packages\n"
  641. " full-upgrade - upgrade the system by removing/installing/upgrading "
  642. "packages\n"
  643. "\n"
  644. " edit-sources - edit the source information file\n"
  645. msgstr ""
  646. #: methods/cdrom.cc:203
  647. #, c-format
  648. msgid "Unable to read the cdrom database %s"
  649. msgstr "Kunde inte läsa cd-rom-databasen %s"
  650. #: methods/cdrom.cc:212
  651. msgid ""
  652. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  653. "cannot be used to add new CD-ROMs"
  654. msgstr ""
  655. "Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan "
  656. "inte användas för att lägga till skivor"
  657. #: methods/cdrom.cc:222
  658. msgid "Wrong CD-ROM"
  659. msgstr "Fel cd-rom"
  660. #: methods/cdrom.cc:249
  661. #, c-format
  662. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  663. msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används."
  664. #: methods/cdrom.cc:254
  665. msgid "Disk not found."
  666. msgstr "Skivan hittades inte."
  667. #: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:281
  668. msgid "File not found"
  669. msgstr "Filen hittades inte"
  670. #: methods/copy.cc:61 methods/gzip.cc:127 methods/rred.cc:598
  671. #: methods/rred.cc:608
  672. msgid "Failed to stat"
  673. msgstr "Kunde inte ta status"
  674. #: methods/copy.cc:113 methods/gzip.cc:134 methods/rred.cc:605
  675. msgid "Failed to set modification time"
  676. msgstr "Misslyckades ställa in ändringstid"
  677. #: methods/file.cc:48
  678. msgid "Invalid URI, local URIS must not start with //"
  679. msgstr "Ogiltig URI, lokala URI:er får inte börja med //"
  680. #. Login must be before getpeername otherwise dante won't work.
  681. #: methods/ftp.cc:178
  682. msgid "Logging in"
  683. msgstr "Loggar in"
  684. #: methods/ftp.cc:184
  685. msgid "Unable to determine the peer name"
  686. msgstr "Kunde inte fastställa namnet på partnern"
  687. #: methods/ftp.cc:189
  688. msgid "Unable to determine the local name"
  689. msgstr "Kunde inte fastställa det lokala namnet"
  690. #: methods/ftp.cc:220 methods/ftp.cc:248
  691. #, c-format
  692. msgid "The server refused the connection and said: %s"
  693. msgstr "Servern nekade anslutningen och sade: %s"
  694. #: methods/ftp.cc:226
  695. #, c-format
  696. msgid "USER failed, server said: %s"
  697. msgstr "USER misslyckades, servern sade: %s"
  698. #: methods/ftp.cc:233
  699. #, c-format
  700. msgid "PASS failed, server said: %s"
  701. msgstr "PASS misslyckades, servern sade: %s"
  702. #: methods/ftp.cc:253
  703. msgid ""
  704. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  705. "is empty."
  706. msgstr ""
  707. "En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::"
  708. "ProxyLogin är tom."
  709. #: methods/ftp.cc:281
  710. #, c-format
  711. msgid "Login script command '%s' failed, server said: %s"
  712. msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s"
  713. #: methods/ftp.cc:307
  714. #, c-format
  715. msgid "TYPE failed, server said: %s"
  716. msgstr "TYPE misslyckades, servern sade: %s"
  717. #: methods/ftp.cc:345 methods/ftp.cc:457 methods/rsh.cc:195 methods/rsh.cc:243
  718. msgid "Connection timeout"
  719. msgstr "Tidsgränsen för anslutningen överskreds"
  720. #: methods/ftp.cc:351
  721. msgid "Server closed the connection"
  722. msgstr "Servern stängde anslutningen"
  723. #: methods/ftp.cc:354 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1515
  724. #: apt-pkg/contrib/fileutl.cc:1524 apt-pkg/contrib/fileutl.cc:1529
  725. #: apt-pkg/contrib/fileutl.cc:1531
  726. msgid "Read error"
  727. msgstr "Läsfel"
  728. #: methods/ftp.cc:361 methods/rsh.cc:209
  729. msgid "A response overflowed the buffer."
  730. msgstr "Ett svar spillde bufferten."
  731. #: methods/ftp.cc:378 methods/ftp.cc:390
  732. msgid "Protocol corruption"
  733. msgstr "Protokollet skadat"
  734. #: methods/ftp.cc:463 methods/rsh.cc:249 apt-pkg/contrib/fileutl.cc:911
  735. #: apt-pkg/contrib/fileutl.cc:1637 apt-pkg/contrib/fileutl.cc:1646
  736. #: apt-pkg/contrib/fileutl.cc:1651 apt-pkg/contrib/fileutl.cc:1653
  737. #: apt-pkg/contrib/fileutl.cc:1678
  738. msgid "Write error"
  739. msgstr "Skrivfel"
  740. #: methods/ftp.cc:702 methods/ftp.cc:708 methods/ftp.cc:743
  741. msgid "Could not create a socket"
  742. msgstr "Kunde inte skapa ett uttag (socket)"
  743. #: methods/ftp.cc:713
  744. msgid "Could not connect data socket, connection timed out"
  745. msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns"
  746. #: methods/ftp.cc:717 methods/connect.cc:116
  747. msgid "Failed"
  748. msgstr "Misslyckades"
  749. #: methods/ftp.cc:719
  750. msgid "Could not connect passive socket."
  751. msgstr "Kunde inte ansluta passivt uttag (socket)."
  752. #: methods/ftp.cc:736
  753. msgid "getaddrinfo was unable to get a listening socket"
  754. msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)"
  755. #: methods/ftp.cc:750
  756. msgid "Could not bind a socket"
  757. msgstr "Kunde inte binda ett uttag (socket)"
  758. #: methods/ftp.cc:754
  759. msgid "Could not listen on the socket"
  760. msgstr "Kunde inte lyssna på uttaget (socket)"
  761. #: methods/ftp.cc:761
  762. msgid "Could not determine the socket's name"
  763. msgstr "Kunde inte fastställa uttagets namn (socket)"
  764. #: methods/ftp.cc:793
  765. msgid "Unable to send PORT command"
  766. msgstr "Kunde inte sända PORT-kommando"
  767. #: methods/ftp.cc:803
  768. #, c-format
  769. msgid "Unknown address family %u (AF_*)"
  770. msgstr "Okänd adressfamilj %u (AF_*)"
  771. #: methods/ftp.cc:812
  772. #, c-format
  773. msgid "EPRT failed, server said: %s"
  774. msgstr "EPRT misslyckades, servern sade: %s"
  775. #: methods/ftp.cc:832
  776. msgid "Data socket connect timed out"
  777. msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen"
  778. #: methods/ftp.cc:839
  779. msgid "Unable to accept connection"
  780. msgstr "Kunde inte ta emot anslutningen"
  781. #: methods/ftp.cc:879 methods/server.cc:362 methods/rsh.cc:319
  782. msgid "Problem hashing file"
  783. msgstr "Problem med att lägga filen till hashtabellen"
  784. #: methods/ftp.cc:892
  785. #, c-format
  786. msgid "Unable to fetch file, server said '%s'"
  787. msgstr "Kunde inte hämta filen, servern sade \"%s\""
  788. #: methods/ftp.cc:907 methods/rsh.cc:338
  789. msgid "Data socket timed out"
  790. msgstr "Datauttag (socket) fick inte svar inom tidsgränsen"
  791. #: methods/ftp.cc:944
  792. #, c-format
  793. msgid "Data transfer failed, server said '%s'"
  794. msgstr "Dataöverföringen misslyckades, servern sade \"%s\""
  795. # Statusmeddelande, byter från substantiv till verb
  796. #. Get the files information
  797. #: methods/ftp.cc:1027
  798. msgid "Query"
  799. msgstr "Frågar"
  800. #: methods/ftp.cc:1141
  801. msgid "Unable to invoke "
  802. msgstr "Kunde inte starta "
  803. # Felmeddelande för misslyckad chdir
  804. #: methods/connect.cc:76
  805. #, c-format
  806. msgid "Connecting to %s (%s)"
  807. msgstr "Ansluter till %s (%s)"
  808. #: methods/connect.cc:87
  809. #, c-format
  810. msgid "[IP: %s %s]"
  811. msgstr "[IP: %s %s]"
  812. # [f]amilj, [t]yp, [p]rotokoll
  813. #: methods/connect.cc:94
  814. #, c-format
  815. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  816. msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)"
  817. #: methods/connect.cc:100
  818. #, c-format
  819. msgid "Cannot initiate the connection to %s:%s (%s)."
  820. msgstr "Kunde inte initiera anslutningen till %s:%s (%s)."
  821. #: methods/connect.cc:108
  822. #, c-format
  823. msgid "Could not connect to %s:%s (%s), connection timed out"
  824. msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns"
  825. #: methods/connect.cc:126
  826. #, c-format
  827. msgid "Could not connect to %s:%s (%s)."
  828. msgstr "Kunde inte ansluta till %s:%s (%s)."
  829. #. We say this mainly because the pause here is for the
  830. #. ssh connection that is still going
  831. #: methods/connect.cc:154 methods/rsh.cc:442
  832. #, c-format
  833. msgid "Connecting to %s"
  834. msgstr "Ansluter till %s"
  835. #: methods/connect.cc:180 methods/connect.cc:199
  836. #, c-format
  837. msgid "Could not resolve '%s'"
  838. msgstr "Kunde inte slå upp \"%s\""
  839. #: methods/connect.cc:205
  840. #, c-format
  841. msgid "Temporary failure resolving '%s'"
  842. msgstr "Temporärt fel vid uppslagning av \"%s\""
  843. # Okänd felkod; %i = koden
  844. #: methods/connect.cc:209
  845. #, fuzzy, c-format
  846. msgid "System error resolving '%s:%s'"
  847. msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)"
  848. # Okänd felkod; %i = koden
  849. #: methods/connect.cc:211
  850. #, c-format
  851. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  852. msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)"
  853. #: methods/connect.cc:258
  854. #, c-format
  855. msgid "Unable to connect to %s:%s:"
  856. msgstr "Kunde inte ansluta till %s:%s:"
  857. #: methods/gpgv.cc:158
  858. msgid ""
  859. "Internal error: Good signature, but could not determine key fingerprint?!"
  860. msgstr ""
  861. "Internt fel: Korrekt signatur men kunde inte fastställa nyckelns "
  862. "fingeravtryck?!"
  863. #: methods/gpgv.cc:162
  864. msgid "At least one invalid signature was encountered."
  865. msgstr "Minst en ogiltig signatur träffades på."
  866. #: methods/gpgv.cc:164
  867. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  868. msgstr ""
  869. "Kunde inte köra \"apt-key\" för att verifiera signatur (är gnupg "
  870. "installerad?)"
  871. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  872. #: methods/gpgv.cc:170
  873. #, c-format
  874. msgid ""
  875. "Clearsigned file isn't valid, got '%s' (does the network require "
  876. "authentication?)"
  877. msgstr ""
  878. #: methods/gpgv.cc:174
  879. msgid "Unknown error executing apt-key"
  880. msgstr "Okänt fel vid körning av apt-key"
  881. #: methods/gpgv.cc:207 methods/gpgv.cc:214
  882. msgid "The following signatures were invalid:\n"
  883. msgstr "Följande signaturer är ogiltiga:\n"
  884. #: methods/gpgv.cc:221
  885. msgid ""
  886. "The following signatures couldn't be verified because the public key is not "
  887. "available:\n"
  888. msgstr ""
  889. "Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är "
  890. "tillgänglig:\n"
  891. #: methods/gzip.cc:79
  892. msgid "Empty files can't be valid archives"
  893. msgstr ""
  894. #: methods/http.cc:517
  895. msgid "Error writing to the file"
  896. msgstr "Fel vid skrivning till filen"
  897. #: methods/http.cc:531
  898. msgid "Error reading from server. Remote end closed connection"
  899. msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen"
  900. #: methods/http.cc:533
  901. msgid "Error reading from server"
  902. msgstr "Fel vid läsning från server"
  903. #: methods/http.cc:569
  904. msgid "Error writing to file"
  905. msgstr "Fel vid skrivning till fil"
  906. #: methods/http.cc:629
  907. msgid "Select failed"
  908. msgstr "\"Select\" misslyckades"
  909. #: methods/http.cc:634
  910. msgid "Connection timed out"
  911. msgstr "Anslutningen överskred tidsgränsen"
  912. #: methods/http.cc:657
  913. msgid "Error writing to output file"
  914. msgstr "Fel vid skrivning till utdatafil"
  915. #: methods/server.cc:52
  916. msgid "Waiting for headers"
  917. msgstr "Väntar på rubriker"
  918. #: methods/server.cc:111
  919. msgid "Bad header line"
  920. msgstr "Felaktig rubrikrad"
  921. #: methods/server.cc:136 methods/server.cc:143
  922. msgid "The HTTP server sent an invalid reply header"
  923. msgstr "Http-servern sände ett ogiltigt svarshuvud"
  924. #: methods/server.cc:173
  925. msgid "The HTTP server sent an invalid Content-Length header"
  926. msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik"
  927. #: methods/server.cc:193
  928. msgid "The HTTP server sent an invalid Content-Range header"
  929. msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik"
  930. #: methods/server.cc:195
  931. msgid "This HTTP server has broken range support"
  932. msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte"
  933. #: methods/server.cc:219
  934. msgid "Unknown date format"
  935. msgstr "Okänt datumformat"
  936. #: methods/server.cc:506
  937. msgid "Bad header data"
  938. msgstr "Felaktiga data i huvud"
  939. #: methods/server.cc:523 methods/server.cc:617
  940. msgid "Connection failed"
  941. msgstr "Anslutningen misslyckades"
  942. #: methods/server.cc:589
  943. #, c-format
  944. msgid ""
  945. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  946. "5 apt.conf)"
  947. msgstr ""
  948. #: methods/server.cc:712
  949. msgid "Internal error"
  950. msgstr "Internt fel"
  951. #: apt-private/private-list.cc:121
  952. msgid "Listing"
  953. msgstr ""
  954. #: apt-private/private-list.cc:151
  955. #, c-format
  956. msgid "There is %i additional version. Please use the '-a' switch to see it"
  957. msgid_plural ""
  958. "There are %i additional versions. Please use the '-a' switch to see them."
  959. msgstr[0] ""
  960. msgstr[1] ""
  961. #: apt-private/private-cachefile.cc:95
  962. msgid "Correcting dependencies..."
  963. msgstr "Korrigerar beroenden..."
  964. #: apt-private/private-cachefile.cc:98
  965. msgid " failed."
  966. msgstr " misslyckades."
  967. #: apt-private/private-cachefile.cc:101
  968. msgid "Unable to correct dependencies"
  969. msgstr "Kunde inte korrigera beroenden"
  970. #: apt-private/private-cachefile.cc:104
  971. msgid "Unable to minimize the upgrade set"
  972. msgstr "Kunde inte minimera uppgraderingsuppsättningen"
  973. #: apt-private/private-cachefile.cc:106
  974. msgid " Done"
  975. msgstr " Färdig"
  976. #: apt-private/private-cachefile.cc:110
  977. msgid "You might want to run 'apt-get -f install' to correct these."
  978. msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa."
  979. #: apt-private/private-cachefile.cc:113
  980. msgid "Unmet dependencies. Try using -f."
  981. msgstr "Otillfredsställda beroenden. Prova med -f."
  982. #: apt-private/private-output.cc:103 apt-private/private-show.cc:84
  983. #: apt-private/private-show.cc:89
  984. msgid "unknown"
  985. msgstr ""
  986. #: apt-private/private-output.cc:265
  987. #, fuzzy, c-format
  988. msgid "[installed,upgradable to: %s]"
  989. msgstr " [Installerat]"
  990. #: apt-private/private-output.cc:268
  991. #, fuzzy
  992. msgid "[installed,local]"
  993. msgstr " [Installerat]"
  994. #: apt-private/private-output.cc:270
  995. msgid "[installed,auto-removable]"
  996. msgstr ""
  997. #: apt-private/private-output.cc:272
  998. #, fuzzy
  999. msgid "[installed,automatic]"
  1000. msgstr " [Installerat]"
  1001. #: apt-private/private-output.cc:274
  1002. #, fuzzy
  1003. msgid "[installed]"
  1004. msgstr " [Installerat]"
  1005. #: apt-private/private-output.cc:277
  1006. #, c-format
  1007. msgid "[upgradable from: %s]"
  1008. msgstr ""
  1009. #: apt-private/private-output.cc:281
  1010. msgid "[residual-config]"
  1011. msgstr ""
  1012. #: apt-private/private-output.cc:455
  1013. #, c-format
  1014. msgid "but %s is installed"
  1015. msgstr "men %s är installerat"
  1016. #: apt-private/private-output.cc:457
  1017. #, c-format
  1018. msgid "but %s is to be installed"
  1019. msgstr "men %s kommer att installeras"
  1020. #: apt-private/private-output.cc:464
  1021. msgid "but it is not installable"
  1022. msgstr "men det kan inte installeras"
  1023. #: apt-private/private-output.cc:466
  1024. msgid "but it is a virtual package"
  1025. msgstr "men det är ett virtuellt paket"
  1026. #: apt-private/private-output.cc:469
  1027. msgid "but it is not installed"
  1028. msgstr "men det är inte installerat"
  1029. #: apt-private/private-output.cc:469
  1030. msgid "but it is not going to be installed"
  1031. msgstr "men det kommer inte att installeras"
  1032. #: apt-private/private-output.cc:474
  1033. msgid " or"
  1034. msgstr " eller"
  1035. #: apt-private/private-output.cc:488 apt-private/private-output.cc:500
  1036. msgid "The following packages have unmet dependencies:"
  1037. msgstr "Följande paket har beroenden som inte kan tillfredsställas:"
  1038. #: apt-private/private-output.cc:523
  1039. msgid "The following NEW packages will be installed:"
  1040. msgstr "Följande NYA paket kommer att installeras:"
  1041. #: apt-private/private-output.cc:549
  1042. msgid "The following packages will be REMOVED:"
  1043. msgstr "Följande paket kommer att TAS BORT:"
  1044. #: apt-private/private-output.cc:571
  1045. msgid "The following packages have been kept back:"
  1046. msgstr "Följande paket har hållits tillbaka:"
  1047. #: apt-private/private-output.cc:592
  1048. msgid "The following packages will be upgraded:"
  1049. msgstr "Följande paket kommer att uppgraderas:"
  1050. #: apt-private/private-output.cc:613
  1051. msgid "The following packages will be DOWNGRADED:"
  1052. msgstr "Följande paket kommer att NEDGRADERAS:"
  1053. #: apt-private/private-output.cc:633
  1054. msgid "The following held packages will be changed:"
  1055. msgstr "Följande tillbakahållna paket kommer att ändras:"
  1056. #: apt-private/private-output.cc:688
  1057. #, c-format
  1058. msgid "%s (due to %s)"
  1059. msgstr "%s (på grund av %s)"
  1060. #: apt-private/private-output.cc:696
  1061. msgid ""
  1062. "WARNING: The following essential packages will be removed.\n"
  1063. "This should NOT be done unless you know exactly what you are doing!"
  1064. msgstr ""
  1065. "VARNING: Följande systemkritiska paket kommer att tas bort.\n"
  1066. "Detta bör INTE genomföras såvida du inte vet exakt vad du gör!"
  1067. #: apt-private/private-output.cc:727
  1068. #, c-format
  1069. msgid "%lu upgraded, %lu newly installed, "
  1070. msgstr "%lu att uppgradera, %lu att nyinstallera, "
  1071. #: apt-private/private-output.cc:731
  1072. #, c-format
  1073. msgid "%lu reinstalled, "
  1074. msgstr "%lu att installera om, "
  1075. #: apt-private/private-output.cc:733
  1076. #, c-format
  1077. msgid "%lu downgraded, "
  1078. msgstr "%lu att nedgradera, "
  1079. #: apt-private/private-output.cc:735
  1080. #, c-format
  1081. msgid "%lu to remove and %lu not upgraded.\n"
  1082. msgstr "%lu att ta bort och %lu att inte uppgradera.\n"
  1083. #: apt-private/private-output.cc:739
  1084. #, c-format
  1085. msgid "%lu not fully installed or removed.\n"
  1086. msgstr "%lu är inte helt installerade eller borttagna.\n"
  1087. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1088. #. e.g. "Do you want to continue? [Y/n] "
  1089. #. The user has to answer with an input matching the
  1090. #. YESEXPR/NOEXPR defined in your l10n.
  1091. #: apt-private/private-output.cc:761
  1092. msgid "[Y/n]"
  1093. msgstr "[J/n]"
  1094. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1095. #. e.g. "Should this file be removed? [y/N] "
  1096. #. The user has to answer with an input matching the
  1097. #. YESEXPR/NOEXPR defined in your l10n.
  1098. #: apt-private/private-output.cc:767
  1099. msgid "[y/N]"
  1100. msgstr "[j/N]"
  1101. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1102. #: apt-private/private-output.cc:778
  1103. msgid "Y"
  1104. msgstr "J"
  1105. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1106. #: apt-private/private-output.cc:784
  1107. msgid "N"
  1108. msgstr ""
  1109. #: apt-private/private-output.cc:806 apt-pkg/cachefilter.cc:40
  1110. #, c-format
  1111. msgid "Regex compilation error - %s"
  1112. msgstr "Fel vid kompilering av reguljärt uttryck - %s"
  1113. #: apt-private/private-update.cc:31
  1114. msgid "The update command takes no arguments"
  1115. msgstr "Uppdateringskommandot tar inga argument"
  1116. #: apt-private/private-update.cc:95
  1117. #, c-format
  1118. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1119. msgid_plural ""
  1120. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1121. msgstr[0] ""
  1122. msgstr[1] ""
  1123. #: apt-private/private-update.cc:99
  1124. msgid "All packages are up to date."
  1125. msgstr ""
  1126. #: apt-private/private-cacheset.cc:37 apt-private/private-search.cc:65
  1127. msgid "Sorting"
  1128. msgstr ""
  1129. #: apt-private/private-show.cc:156
  1130. #, c-format
  1131. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1132. msgid_plural ""
  1133. "There are %i additional records. Please use the '-a' switch to see them."
  1134. msgstr[0] ""
  1135. msgstr[1] ""
  1136. #: apt-private/private-show.cc:163
  1137. msgid "not a real package (virtual)"
  1138. msgstr ""
  1139. #: apt-private/private-main.cc:32
  1140. msgid ""
  1141. "NOTE: This is only a simulation!\n"
  1142. " apt-get needs root privileges for real execution.\n"
  1143. " Keep also in mind that locking is deactivated,\n"
  1144. " so don't depend on the relevance to the real current situation!"
  1145. msgstr ""
  1146. "OBSERVERA: Detta är endast en simulation!\n"
  1147. " apt-get behöver root-privilegier för verklig körning.\n"
  1148. " Tänk också på att låsningen är inaktiverad, så\n"
  1149. " förlita dig inte på relevansen till den verkliga situationen!"
  1150. #: apt-private/private-install.cc:81
  1151. msgid "Internal error, InstallPackages was called with broken packages!"
  1152. msgstr "Internt fel. InstallPackages anropades med trasiga paket!"
  1153. #: apt-private/private-install.cc:90
  1154. msgid "Packages need to be removed but remove is disabled."
  1155. msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat."
  1156. #: apt-private/private-install.cc:109
  1157. msgid "Internal error, Ordering didn't finish"
  1158. msgstr "Internt fel. Sorteringen färdigställdes inte"
  1159. #: apt-private/private-install.cc:147
  1160. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1161. msgstr ""
  1162. "Konstigt... storlekarna stämde inte överens, skicka e-post till apt@packages."
  1163. "debian.org"
  1164. #. TRANSLATOR: The required space between number and unit is already included
  1165. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1166. #: apt-private/private-install.cc:154
  1167. #, c-format
  1168. msgid "Need to get %sB/%sB of archives.\n"
  1169. msgstr "Behöver hämta %sB/%sB arkiv.\n"
  1170. #. TRANSLATOR: The required space between number and unit is already included
  1171. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1172. #: apt-private/private-install.cc:159
  1173. #, c-format
  1174. msgid "Need to get %sB of archives.\n"
  1175. msgstr "Behöver hämta %sB arkiv.\n"
  1176. #. TRANSLATOR: The required space between number and unit is already included
  1177. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1178. #: apt-private/private-install.cc:166
  1179. #, c-format
  1180. msgid "After this operation, %sB of additional disk space will be used.\n"
  1181. msgstr ""
  1182. "Efter denna åtgärd kommer ytterligare %sB utrymme användas på disken.\n"
  1183. #. TRANSLATOR: The required space between number and unit is already included
  1184. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1185. #: apt-private/private-install.cc:171
  1186. #, c-format
  1187. msgid "After this operation, %sB disk space will be freed.\n"
  1188. msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n"
  1189. #: apt-private/private-install.cc:185 apt-private/private-download.cc:117
  1190. msgid "There are problems and -y was used without --force-yes"
  1191. msgstr "Problem har uppstått och -y användes utan --force-yes"
  1192. #: apt-private/private-install.cc:191 apt-private/private-install.cc:213
  1193. msgid "Trivial Only specified but this is not a trivial operation."
  1194. msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling."
  1195. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1196. #. careful with hard to type or special characters (like non-breaking spaces)
  1197. #: apt-private/private-install.cc:195
  1198. msgid "Yes, do as I say!"
  1199. msgstr "Ja, gör som jag säger!"
  1200. #: apt-private/private-install.cc:197
  1201. #, c-format
  1202. msgid ""
  1203. "You are about to do something potentially harmful.\n"
  1204. "To continue type in the phrase '%s'\n"
  1205. " ?] "
  1206. msgstr ""
  1207. "Du är på väg att göra någonting som kan vara skadligt\n"
  1208. "Skriv in frasen \"%s\" för att fortsätta\n"
  1209. " ?] "
  1210. # Visas då man svarar nej
  1211. #: apt-private/private-install.cc:203 apt-private/private-install.cc:221
  1212. msgid "Abort."
  1213. msgstr "Avbryter."
  1214. #: apt-private/private-install.cc:218
  1215. msgid "Do you want to continue?"
  1216. msgstr "Vill du fortsätta?"
  1217. #: apt-private/private-install.cc:288
  1218. msgid "Some files failed to download"
  1219. msgstr "Misslyckades med att hämta vissa filer"
  1220. #: apt-private/private-install.cc:295
  1221. msgid ""
  1222. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1223. "missing?"
  1224. msgstr ""
  1225. "Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --"
  1226. "fix-missing."
  1227. #: apt-private/private-install.cc:299
  1228. msgid "--fix-missing and media swapping is not currently supported"
  1229. msgstr "--fix-missing och mediabyte stöds inte för tillfället"
  1230. #: apt-private/private-install.cc:304
  1231. msgid "Unable to correct missing packages."
  1232. msgstr "Kunde inte korrigera saknade paket."
  1233. #: apt-private/private-install.cc:305
  1234. msgid "Aborting install."
  1235. msgstr "Avbryter installationen."
  1236. #: apt-private/private-install.cc:341
  1237. msgid ""
  1238. "The following package disappeared from your system as\n"
  1239. "all files have been overwritten by other packages:"
  1240. msgid_plural ""
  1241. "The following packages disappeared from your system as\n"
  1242. "all files have been overwritten by other packages:"
  1243. msgstr[0] ""
  1244. "Följande paket har försvunnit från ditt system eftersom\n"
  1245. "alla filer har skrivits över av andra paket:"
  1246. msgstr[1] ""
  1247. "Följande paket har försvunnit från ditt system eftersom\n"
  1248. "alla filer har skrivits över av andra paket:"
  1249. #: apt-private/private-install.cc:345
  1250. msgid "Note: This is done automatically and on purpose by dpkg."
  1251. msgstr "Observera: Detta sker med automatik och vid behov av dpkg."
  1252. #: apt-private/private-install.cc:366
  1253. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1254. msgstr ""
  1255. "Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover"
  1256. #: apt-private/private-install.cc:474
  1257. msgid ""
  1258. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1259. "shouldn't happen. Please file a bug report against apt."
  1260. msgstr ""
  1261. "Hmm, det verkar som AutoRemover förstörde något som verkligen\n"
  1262. "inte skulle hända. Skicka in en felrapport mot paketet apt."
  1263. #.
  1264. #. if (Packages == 1)
  1265. #. {
  1266. #. c1out << std::endl;
  1267. #. c1out <<
  1268. #. _("Since you only requested a single operation it is extremely likely that\n"
  1269. #. "the package is simply not installable and a bug report against\n"
  1270. #. "that package should be filed.") << std::endl;
  1271. #. }
  1272. #.
  1273. #: apt-private/private-install.cc:477 apt-private/private-install.cc:627
  1274. msgid "The following information may help to resolve the situation:"
  1275. msgstr "Följande information kan vara till hjälp för att lösa situationen:"
  1276. #: apt-private/private-install.cc:481
  1277. msgid "Internal Error, AutoRemover broke stuff"
  1278. msgstr "Internt fel, AutoRemover förstörde något"
  1279. #: apt-private/private-install.cc:488
  1280. msgid ""
  1281. "The following package was automatically installed and is no longer required:"
  1282. msgid_plural ""
  1283. "The following packages were automatically installed and are no longer "
  1284. "required:"
  1285. msgstr[0] ""
  1286. "Följande paket har installerats automatiskt och är inte längre nödvändigt:"
  1287. msgstr[1] ""
  1288. "Följande paket har installerats automatiskt och är inte längre nödvändiga:"
  1289. #: apt-private/private-install.cc:492
  1290. #, c-format
  1291. msgid "%lu package was automatically installed and is no longer required.\n"
  1292. msgid_plural ""
  1293. "%lu packages were automatically installed and are no longer required.\n"
  1294. msgstr[0] ""
  1295. "%lu paket blev installerade automatiskt och är inte längre nödvändigt.\n"
  1296. msgstr[1] ""
  1297. "%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n"
  1298. #: apt-private/private-install.cc:494
  1299. #, fuzzy
  1300. msgid "Use 'apt-get autoremove' to remove it."
  1301. msgid_plural "Use 'apt-get autoremove' to remove them."
  1302. msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem."
  1303. msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem."
  1304. #: apt-private/private-install.cc:587
  1305. msgid "You might want to run 'apt-get -f install' to correct these:"
  1306. msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:"
  1307. #: apt-private/private-install.cc:589
  1308. msgid ""
  1309. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1310. "solution)."
  1311. msgstr ""
  1312. "Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket "
  1313. "(eller ange en lösning)."
  1314. #: apt-private/private-install.cc:612
  1315. msgid ""
  1316. "Some packages could not be installed. This may mean that you have\n"
  1317. "requested an impossible situation or if you are using the unstable\n"
  1318. "distribution that some required packages have not yet been created\n"
  1319. "or been moved out of Incoming."
  1320. msgstr ""
  1321. "Några paket kunde inte installeras. Det kan betyda att du har begärt\n"
  1322. "en omöjlig situation eller, om du använder den instabila utgåvan\n"
  1323. "att några nödvändiga paket ännu inte har skapats eller flyttats\n"
  1324. "ut från \"Incoming\"."
  1325. #: apt-private/private-install.cc:633
  1326. msgid "Broken packages"
  1327. msgstr "Trasiga paket"
  1328. #: apt-private/private-install.cc:710
  1329. msgid "The following extra packages will be installed:"
  1330. msgstr "Följande ytterligare paket kommer att installeras:"
  1331. #: apt-private/private-install.cc:800
  1332. msgid "Suggested packages:"
  1333. msgstr "Föreslagna paket:"
  1334. #: apt-private/private-install.cc:801
  1335. msgid "Recommended packages:"
  1336. msgstr "Rekommenderade paket:"
  1337. #: apt-private/private-install.cc:823
  1338. #, c-format
  1339. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1340. msgstr ""
  1341. "Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n"
  1342. #: apt-private/private-install.cc:827
  1343. #, c-format
  1344. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1345. msgstr ""
  1346. "Hoppar över %s, det är inte installerat och endast uppgraderingar har "
  1347. "begärts.\n"
  1348. #: apt-private/private-install.cc:839
  1349. #, c-format
  1350. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1351. msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n"
  1352. #: apt-private/private-install.cc:844
  1353. #, c-format
  1354. msgid "%s is already the newest version.\n"
  1355. msgstr "%s är redan den senaste versionen.\n"
  1356. #: apt-private/private-install.cc:892
  1357. #, c-format
  1358. msgid "Selected version '%s' (%s) for '%s'\n"
  1359. msgstr "Valde version \"%s\" (%s) för \"%s\"\n"
  1360. #: apt-private/private-install.cc:897
  1361. #, fuzzy, c-format
  1362. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1363. msgstr "Valde version \"%s\" (%s) för \"%s\"\n"
  1364. #. TRANSLATORS: Note, this is not an interactive question
  1365. #: apt-private/private-install.cc:939
  1366. #, fuzzy, c-format
  1367. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1368. msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
  1369. #: apt-private/private-install.cc:945
  1370. #, fuzzy, c-format
  1371. msgid "Package '%s' is not installed, so not removed\n"
  1372. msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
  1373. #: apt-private/private-download.cc:62
  1374. #, c-format
  1375. msgid ""
  1376. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  1377. "user '%s'."
  1378. msgstr ""
  1379. #: apt-private/private-download.cc:94
  1380. msgid "WARNING: The following packages cannot be authenticated!"
  1381. msgstr "VARNING: Följande paket kunde inte autentiseras!"
  1382. #: apt-private/private-download.cc:98
  1383. msgid "Authentication warning overridden.\n"
  1384. msgstr "Autentiseringsvarning åsidosatt.\n"
  1385. #: apt-private/private-download.cc:103 apt-private/private-download.cc:110
  1386. msgid "Some packages could not be authenticated"
  1387. msgstr "Några av paketen kunde inte autentiseras"
  1388. #: apt-private/private-download.cc:108
  1389. msgid "Install these packages without verification?"
  1390. msgstr "Installera dessa paket utan verifiering?"
  1391. #: apt-private/private-download.cc:149 apt-pkg/update.cc:77
  1392. #, c-format
  1393. msgid "Failed to fetch %s %s\n"
  1394. msgstr "Misslyckades med att hämta %s %s\n"
  1395. #: apt-private/private-download.cc:171 apt-private/private-download.cc:174
  1396. #, c-format
  1397. msgid "Couldn't determine free space in %s"
  1398. msgstr "Kunde inte fastställa ledigt utrymme i %s"
  1399. #: apt-private/private-download.cc:188
  1400. #, c-format
  1401. msgid "You don't have enough free space in %s."
  1402. msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
  1403. #: apt-private/private-sources.cc:58
  1404. #, fuzzy, c-format
  1405. msgid "Failed to parse %s. Edit again? "
  1406. msgstr "Misslyckades med att byta namn på %s till %s"
  1407. #: apt-private/private-sources.cc:70
  1408. #, c-format
  1409. msgid "Your '%s' file changed, please run 'apt-get update'."
  1410. msgstr ""
  1411. #: apt-private/private-search.cc:69
  1412. msgid "Full Text Search"
  1413. msgstr ""
  1414. # Måste vara tre bokstäver(?)
  1415. # "Hit" = aktuell version är fortfarande giltig
  1416. #: apt-private/acqprogress.cc:66
  1417. #, c-format
  1418. msgid "Hit:%lu %s"
  1419. msgstr "Bra:%lu %s"
  1420. # "Get:" = hämtar ny version
  1421. #: apt-private/acqprogress.cc:88
  1422. #, c-format
  1423. msgid "Get:%lu %s"
  1424. msgstr "Läs:%lu %s"
  1425. # "Ign" = hoppar över
  1426. #: apt-private/acqprogress.cc:119
  1427. #, c-format
  1428. msgid "Ign:%lu %s"
  1429. msgstr "Ign:%lu %s"
  1430. # "Err" = fel vid hämtning
  1431. #: apt-private/acqprogress.cc:126
  1432. #, c-format
  1433. msgid "Err:%lu %s"
  1434. msgstr "Fel:%lu %s"
  1435. #: apt-private/acqprogress.cc:150
  1436. #, c-format
  1437. msgid "Fetched %sB in %s (%sB/s)\n"
  1438. msgstr "Hämtade %sB på %s (%sB/s)\n"
  1439. #: apt-private/acqprogress.cc:240
  1440. #, c-format
  1441. msgid " [Working]"
  1442. msgstr " [Arbetar]"
  1443. #: apt-private/acqprogress.cc:301
  1444. #, c-format
  1445. msgid ""
  1446. "Media change: please insert the disc labeled\n"
  1447. " '%s'\n"
  1448. "in the drive '%s' and press enter\n"
  1449. msgstr ""
  1450. "Mediabyte: Mata in skivan med etiketten\n"
  1451. " \"%s\"\n"
  1452. "i enheten \"%s\" och tryck på Enter\n"
  1453. #. Only warn if there are no sources.list.d.
  1454. #. Only warn if there is no sources.list file.
  1455. #: methods/mirror.cc:95 apt-pkg/init.cc:113 apt-pkg/init.cc:121
  1456. #: apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 apt-pkg/clean.cc:43
  1457. #: apt-pkg/acquire.cc:557 apt-pkg/policy.cc:381 apt-pkg/contrib/fileutl.cc:374
  1458. #: apt-pkg/contrib/fileutl.cc:487 apt-pkg/contrib/cdromutl.cc:205
  1459. #: apt-inst/extract.cc:471
  1460. #, c-format
  1461. msgid "Unable to read %s"
  1462. msgstr "Kunde inte läsa %s"
  1463. # Felmeddelande för misslyckad chdir
  1464. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49
  1465. #: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:563
  1466. #: apt-pkg/acquire.cc:588 apt-pkg/contrib/cdromutl.cc:201
  1467. #: apt-pkg/contrib/cdromutl.cc:235
  1468. #, c-format
  1469. msgid "Unable to change to %s"
  1470. msgstr "Kunde inte byta till %s"
  1471. #. FIXME: fallback to a default mirror here instead
  1472. #. and provide a config option to define that default
  1473. #: methods/mirror.cc:280
  1474. #, c-format
  1475. msgid "No mirror file '%s' found "
  1476. msgstr "Ingen spegelfil \"%s\" hittades "
  1477. #. FIXME: fallback to a default mirror here instead
  1478. #. and provide a config option to define that default
  1479. #: methods/mirror.cc:287
  1480. #, fuzzy, c-format
  1481. msgid "Can not read mirror file '%s'"
  1482. msgstr "Ingen spegelfil \"%s\" hittades "
  1483. #: methods/mirror.cc:315
  1484. #, fuzzy, c-format
  1485. msgid "No entry found in mirror file '%s'"
  1486. msgstr "Ingen spegelfil \"%s\" hittades "
  1487. #: methods/mirror.cc:445
  1488. #, c-format
  1489. msgid "[Mirror: %s]"
  1490. msgstr "[Spegel: %s]"
  1491. #: methods/rsh.cc:102 ftparchive/multicompress.cc:171
  1492. msgid "Failed to create IPC pipe to subprocess"
  1493. msgstr "Misslyckades med att skapa IPC-rör till underprocess"
  1494. #: methods/rsh.cc:346
  1495. msgid "Connection closed prematurely"
  1496. msgstr "Anslutningen stängdes i förtid"
  1497. #: dselect/install:33
  1498. msgid "Bad default setting!"
  1499. msgstr "Felaktig standardinställning!"
  1500. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1501. #: dselect/install:106 dselect/update:45
  1502. msgid "Press enter to continue."
  1503. msgstr "Tryck på Enter för att fortsätta."
  1504. #: dselect/install:92
  1505. msgid "Do you want to erase any previously downloaded .deb files?"
  1506. msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?"
  1507. # Note to translators: The following four messages belong together. It doesn't
  1508. # matter where sentences start, but it has to fit in just these four lines, and
  1509. # at only 80 characters per line, if possible.
  1510. #: dselect/install:102
  1511. msgid "Some errors occurred while unpacking. Packages that were installed"
  1512. msgstr "Det uppstod fel vid uppackning. Paketen som blev installerade kommer"
  1513. #: dselect/install:103
  1514. msgid "will be configured. This may result in duplicate errors"
  1515. msgstr ""
  1516. "att konfigureras. Detta kan resultera i dubbletta fel eller fel orsakade"
  1517. #: dselect/install:104
  1518. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1519. msgstr "av saknade beroenden. Detta är okej, endast felen ovanför detta"
  1520. #: dselect/install:105
  1521. msgid ""
  1522. "above this message are important. Please fix them and run [I]nstall again"
  1523. msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen"
  1524. #: dselect/update:30
  1525. msgid "Merging available information"
  1526. msgstr "Sammanfogar tillgänglig information"
  1527. #: cmdline/apt-extracttemplates.cc:229
  1528. msgid ""
  1529. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1530. "\n"
  1531. "apt-extracttemplates is a tool to extract config and template info\n"
  1532. "from debian packages\n"
  1533. "\n"
  1534. "Options:\n"
  1535. " -h This help text\n"
  1536. " -t Set the temp dir\n"
  1537. " -c=? Read this configuration file\n"
  1538. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1539. msgstr ""
  1540. "Användning: apt-extracttemplates fil1 [fil2 ...]\n"
  1541. "\n"
  1542. "apt-extracttemplates är ett verktyg för att hämta ut konfigurations- \n"
  1543. "och mallinformation från paket\n"
  1544. "\n"
  1545. "Flaggor:\n"
  1546. " -h Denna hjälptext.\n"
  1547. " -t Ställ in temporärkatalogen.\n"
  1548. " -c=? Läs denna konfigurationsfil.\n"
  1549. " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
  1550. #: cmdline/apt-extracttemplates.cc:259 apt-pkg/contrib/fileutl.cc:2092
  1551. #, fuzzy, c-format
  1552. msgid "Unable to mkstemp %s"
  1553. msgstr "Kunde inte ta status på %s"
  1554. #: cmdline/apt-extracttemplates.cc:264 apt-pkg/pkgcachegen.cc:1385
  1555. #: apt-pkg/contrib/fileutl.cc:2097
  1556. #, c-format
  1557. msgid "Unable to write to %s"
  1558. msgstr "Kunde inte skriva till %s"
  1559. #: cmdline/apt-extracttemplates.cc:305
  1560. msgid "Cannot get debconf version. Is debconf installed?"
  1561. msgstr "Kan inte ta reda på debconf-version. Är debconf installerat?"
  1562. #: ftparchive/apt-ftparchive.cc:186 ftparchive/apt-ftparchive.cc:370
  1563. msgid "Package extension list is too long"
  1564. msgstr "Listan över filtillägg för Packages är för lång"
  1565. #: ftparchive/apt-ftparchive.cc:188 ftparchive/apt-ftparchive.cc:205
  1566. #: ftparchive/apt-ftparchive.cc:228 ftparchive/apt-ftparchive.cc:282
  1567. #: ftparchive/apt-ftparchive.cc:296 ftparchive/apt-ftparchive.cc:318
  1568. #, c-format
  1569. msgid "Error processing directory %s"
  1570. msgstr "Fel vid behandling av katalogen %s"
  1571. #: ftparchive/apt-ftparchive.cc:280
  1572. msgid "Source extension list is too long"
  1573. msgstr "Listan över filtillägg för Sources är för lång"
  1574. #: ftparchive/apt-ftparchive.cc:400
  1575. msgid "Error writing header to contents file"
  1576. msgstr "Fel vid skrivning av rubrik till innehållsfil"
  1577. #: ftparchive/apt-ftparchive.cc:430
  1578. #, c-format
  1579. msgid "Error processing contents %s"
  1580. msgstr "Fel vid behandling av innehållet %s"
  1581. #: ftparchive/apt-ftparchive.cc:625
  1582. msgid ""
  1583. "Usage: apt-ftparchive [options] command\n"
  1584. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1585. " sources srcpath [overridefile [pathprefix]]\n"
  1586. " contents path\n"
  1587. " release path\n"
  1588. " generate config [groups]\n"
  1589. " clean config\n"
  1590. "\n"
  1591. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1592. "many styles of generation from fully automated to functional replacements\n"
  1593. "for dpkg-scanpackages and dpkg-scansources\n"
  1594. "\n"
  1595. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1596. "Package file contains the contents of all the control fields from\n"
  1597. "each package as well as the MD5 hash and filesize. An override file\n"
  1598. "is supported to force the value of Priority and Section.\n"
  1599. "\n"
  1600. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1601. "The --source-override option can be used to specify a src override file\n"
  1602. "\n"
  1603. "The 'packages' and 'sources' command should be run in the root of the\n"
  1604. "tree. BinaryPath should point to the base of the recursive search and \n"
  1605. "override file should contain the override flags. Pathprefix is\n"
  1606. "appended to the filename fields if present. Example usage from the \n"
  1607. "Debian archive:\n"
  1608. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1609. " dists/potato/main/binary-i386/Packages\n"
  1610. "\n"
  1611. "Options:\n"
  1612. " -h This help text\n"
  1613. " --md5 Control MD5 generation\n"
  1614. " -s=? Source override file\n"
  1615. " -q Quiet\n"
  1616. " -d=? Select the optional caching database\n"
  1617. " --no-delink Enable delinking debug mode\n"
  1618. " --contents Control contents file generation\n"
  1619. " -c=? Read this configuration file\n"
  1620. " -o=? Set an arbitrary configuration option"
  1621. msgstr ""
  1622. "Användning: apt-ftparchive [flaggor] kommando\n"
  1623. "Kommandon: packages binärsökväg [åsidosättningsfil [sökvägsprefix]]\n"
  1624. " sources källsökväg [åsidosättningsfil [sökvägsprefix]]\n"
  1625. " contents sökväg\n"
  1626. " release sökväg\n"
  1627. " generate konfiguration [grupper]\n"
  1628. " clean konfiguration\n"
  1629. "\n"
  1630. "apt-ftparchive genererar indexfiler för Debianarkiv. Det stöder många\n"
  1631. "former av generering, allt från helautomatiserat till funktionella\n"
  1632. "ersättningar till dpkg-scanpackages och dpkg-scansources\n"
  1633. "\n"
  1634. "apt-ftparchive skapar Package-filer från ett träd med .deb-filer.\n"
  1635. "Packagefilen innehåller alla styrfälten från paketen samt MD5-hashvärdet\n"
  1636. "och filstorlek. En overrride-fil stöds för att tvinga värden på Priority\n"
  1637. "och Section.\n"
  1638. "\n"
  1639. "På samma sätt skapar apt-ftparchive Sources-filer från ett träd med\n"
  1640. ".dsc-filer. Flaggan --source-override kan användas för att ange en\n"
  1641. "override-fil för källkoden.\n"
  1642. "\n"
  1643. "Kommandona \"packages\" och \"sources\" bör köras från rotet på trädet.\n"
  1644. "Binärsökvägen bör peka på basen på den rekursiva sökningen och\n"
  1645. "override-filen bör innehålla override-flaggorna de framtvingade flaggorna.\n"
  1646. "Sökvägsprefixet läggs till i filnamnsfälten om det anges. Ett exempel på\n"
  1647. "hur programmet kan användas från Debianarkivet:\n"
  1648. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1649. " dists/potato/main/binary-i386/Packages\n"
  1650. "\n"
  1651. "Flaggor:\n"
  1652. " -h Denna hjälptext\n"
  1653. " --md5 Kontrollera generering av MD5\n"
  1654. " -s=? Källkods-override-fil\n"
  1655. " -q Tyst\n"
  1656. " -d=? Väljer den valfria cachedatabasen\n"
  1657. " --no-delink Aktivera \"delinkning\"-felsökningsläget\n"
  1658. " --contents Styr skapande av contents-fil\n"
  1659. " -c=? Läs denna konfigurationsfil\n"
  1660. " -o=? Ställ in en godtycklig konfigurationsflagga"
  1661. #: ftparchive/apt-ftparchive.cc:821
  1662. msgid "No selections matched"
  1663. msgstr "Inga val träffades"
  1664. #: ftparchive/apt-ftparchive.cc:906
  1665. #, c-format
  1666. msgid "Some files are missing in the package file group `%s'"
  1667. msgstr "Några filer saknas i paketfilsgruppen \"%s\""
  1668. #: ftparchive/cachedb.cc:67
  1669. #, c-format
  1670. msgid "DB was corrupted, file renamed to %s.old"
  1671. msgstr "DB var skadad, filen omdöpt till %s.old"
  1672. #: ftparchive/cachedb.cc:85
  1673. #, c-format
  1674. msgid "DB is old, attempting to upgrade %s"
  1675. msgstr "DB är gammal, försöker uppgradera %s"
  1676. #: ftparchive/cachedb.cc:96
  1677. msgid ""
  1678. "DB format is invalid. If you upgraded from an older version of apt, please "
  1679. "remove and re-create the database."
  1680. msgstr ""
  1681. "DB-formatet är ogiltigt. Ta bort och återskapa databasen om du uppgraderar "
  1682. "från en äldre version av apt."
  1683. #: ftparchive/cachedb.cc:101
  1684. #, c-format
  1685. msgid "Unable to open DB file %s: %s"
  1686. msgstr "Kunde inte öppna DB-filen %s: %s"
  1687. #: ftparchive/cachedb.cc:184 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  1688. #: apt-inst/extract.cc:216
  1689. #, c-format
  1690. msgid "Failed to stat %s"
  1691. msgstr "Misslyckades med att ta status på %s"
  1692. #: ftparchive/cachedb.cc:326
  1693. #, fuzzy
  1694. msgid "Failed to read .dsc"
  1695. msgstr "Misslyckades med att läsa länken %s"
  1696. #: ftparchive/cachedb.cc:359
  1697. msgid "Archive has no control record"
  1698. msgstr "Arkivet har ingen styrpost"
  1699. #: ftparchive/cachedb.cc:526
  1700. msgid "Unable to get a cursor"
  1701. msgstr "Kunde inte få tag i någon markör"
  1702. #: ftparchive/writer.cc:104
  1703. #, c-format
  1704. msgid "W: Unable to read directory %s\n"
  1705. msgstr "V: Kunde inte läsa katalogen %s\n"
  1706. #: ftparchive/writer.cc:109
  1707. #, c-format
  1708. msgid "W: Unable to stat %s\n"
  1709. msgstr "V: Kunde inte ta status på %s\n"
  1710. #: ftparchive/writer.cc:165
  1711. msgid "E: "
  1712. msgstr "F: "
  1713. #: ftparchive/writer.cc:167
  1714. msgid "W: "
  1715. msgstr "V: "
  1716. #: ftparchive/writer.cc:174
  1717. msgid "E: Errors apply to file "
  1718. msgstr "F: Felen gäller filen "
  1719. #: ftparchive/writer.cc:192 ftparchive/writer.cc:224
  1720. #, c-format
  1721. msgid "Failed to resolve %s"
  1722. msgstr "Misslyckades med att slå upp %s"
  1723. # ???
  1724. #: ftparchive/writer.cc:205
  1725. msgid "Tree walking failed"
  1726. msgstr "Trädvandring misslyckades"
  1727. #: ftparchive/writer.cc:232
  1728. #, c-format
  1729. msgid "Failed to open %s"
  1730. msgstr "Misslyckades med att öppna %s"
  1731. #: ftparchive/writer.cc:291
  1732. #, c-format
  1733. msgid " DeLink %s [%s]\n"
  1734. msgstr " Avlänka %s [%s]\n"
  1735. #: ftparchive/writer.cc:299
  1736. #, c-format
  1737. msgid "Failed to readlink %s"
  1738. msgstr "Misslyckades med att läsa länken %s"
  1739. #: ftparchive/writer.cc:303
  1740. #, c-format
  1741. msgid "Failed to unlink %s"
  1742. msgstr "Misslyckades med att länka ut %s"
  1743. #: ftparchive/writer.cc:311
  1744. #, c-format
  1745. msgid "*** Failed to link %s to %s"
  1746. msgstr "*** Misslyckades med att länka %s till %s"
  1747. #: ftparchive/writer.cc:321
  1748. #, c-format
  1749. msgid " DeLink limit of %sB hit.\n"
  1750. msgstr " Avlänkningsgränsen på %sB nåddes.\n"
  1751. # Fält vid namn "Package"
  1752. #: ftparchive/writer.cc:427
  1753. msgid "Archive had no package field"
  1754. msgstr "Arkivet har inget package-fält"
  1755. #: ftparchive/writer.cc:435 ftparchive/writer.cc:698
  1756. #, c-format
  1757. msgid " %s has no override entry\n"
  1758. msgstr " %s har ingen post i override-filen\n"
  1759. # parametrar: paket, ny, gammal
  1760. #: ftparchive/writer.cc:502 ftparchive/writer.cc:862
  1761. #, c-format
  1762. msgid " %s maintainer is %s not %s\n"
  1763. msgstr " ansvarig för paketet %s är %s ej %s\n"
  1764. #: ftparchive/writer.cc:712
  1765. #, c-format
  1766. msgid " %s has no source override entry\n"
  1767. msgstr " %s har ingen källåsidosättningspost\n"
  1768. #: ftparchive/writer.cc:716
  1769. #, c-format
  1770. msgid " %s has no binary override entry either\n"
  1771. msgstr " %s har heller ingen binär åsidosättningspost\n"
  1772. #: ftparchive/contents.cc:351 ftparchive/contents.cc:382
  1773. msgid "realloc - Failed to allocate memory"
  1774. msgstr "realloc - Misslyckades med att allokera minne"
  1775. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  1776. #, c-format
  1777. msgid "Unable to open %s"
  1778. msgstr "Kunde inte öppna %s"
  1779. # parametrar: filnamn, radnummer
  1780. #. skip spaces
  1781. #. find end of word
  1782. #: ftparchive/override.cc:68
  1783. #, fuzzy, c-format
  1784. msgid "Malformed override %s line %llu (%s)"
  1785. msgstr "Felaktig override %s rad %lu #1"
  1786. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  1787. #, c-format
  1788. msgid "Failed to read the override file %s"
  1789. msgstr "Misslyckades med att läsa åsidosättningsfilen %s"
  1790. # parametrar: filnamn, radnummer
  1791. #: ftparchive/override.cc:166
  1792. #, fuzzy, c-format
  1793. msgid "Malformed override %s line %llu #1"
  1794. msgstr "Felaktig override %s rad %lu #1"
  1795. #: ftparchive/override.cc:178
  1796. #, fuzzy, c-format
  1797. msgid "Malformed override %s line %llu #2"
  1798. msgstr "Felaktig override %s rad %lu #2"
  1799. #: ftparchive/override.cc:191
  1800. #, fuzzy, c-format
  1801. msgid "Malformed override %s line %llu #3"
  1802. msgstr "Felaktig override %s rad %lu #3"
  1803. #: ftparchive/multicompress.cc:73
  1804. #, c-format
  1805. msgid "Unknown compression algorithm '%s'"
  1806. msgstr "Okänd komprimeringsalgoritm \"%s\""
  1807. # ???
  1808. #: ftparchive/multicompress.cc:103
  1809. #, c-format
  1810. msgid "Compressed output %s needs a compression set"
  1811. msgstr "Komprimerade utdata %s behöver en komprimeringsuppsättning"
  1812. #: ftparchive/multicompress.cc:192
  1813. msgid "Failed to create FILE*"
  1814. msgstr "Misslyckades med att skapa FILE*"
  1815. #: ftparchive/multicompress.cc:195
  1816. msgid "Failed to fork"
  1817. msgstr "Misslyckades med att grena process"
  1818. #: ftparchive/multicompress.cc:209
  1819. msgid "Compress child"
  1820. msgstr "Barnprocess för komprimering"
  1821. #: ftparchive/multicompress.cc:232
  1822. #, c-format
  1823. msgid "Internal error, failed to create %s"
  1824. msgstr "Internt fel, misslyckades med att skapa %s"
  1825. #: ftparchive/multicompress.cc:305
  1826. msgid "IO to subprocess/file failed"
  1827. msgstr "In/ut för underprocess/fil misslyckades"
  1828. #: ftparchive/multicompress.cc:343
  1829. msgid "Failed to read while computing MD5"
  1830. msgstr "Misslyckades med att läsa vid beräkning av MD5"
  1831. #: ftparchive/multicompress.cc:359
  1832. #, c-format
  1833. msgid "Problem unlinking %s"
  1834. msgstr "Problem med att länka ut %s"
  1835. #: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194
  1836. #, c-format
  1837. msgid "Failed to rename %s to %s"
  1838. msgstr "Misslyckades med att byta namn på %s till %s"
  1839. #: cmdline/apt-internal-solver.cc:51
  1840. #, fuzzy
  1841. msgid ""
  1842. "Usage: apt-internal-solver\n"
  1843. "\n"
  1844. "apt-internal-solver is an interface to use the current internal\n"
  1845. "like an external resolver for the APT family for debugging or alike\n"
  1846. "\n"
  1847. "Options:\n"
  1848. " -h This help text.\n"
  1849. " -q Loggable output - no progress indicator\n"
  1850. " -c=? Read this configuration file\n"
  1851. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1852. msgstr ""
  1853. "Användning: apt-extracttemplates fil1 [fil2 ...]\n"
  1854. "\n"
  1855. "apt-extracttemplates är ett verktyg för att hämta ut konfigurations- \n"
  1856. "och mallinformation från paket\n"
  1857. "\n"
  1858. "Flaggor:\n"
  1859. " -h Denna hjälptext.\n"
  1860. " -t Ställ in temporärkatalogen.\n"
  1861. " -c=? Läs denna konfigurationsfil.\n"
  1862. " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
  1863. #: cmdline/apt-sortpkgs.cc:91
  1864. msgid "Unknown package record!"
  1865. msgstr "Okänd paketpost!"
  1866. #: cmdline/apt-sortpkgs.cc:155
  1867. msgid ""
  1868. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1869. "\n"
  1870. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1871. "to indicate what kind of file it is.\n"
  1872. "\n"
  1873. "Options:\n"
  1874. " -h This help text\n"
  1875. " -s Use source file sorting\n"
  1876. " -c=? Read this configuration file\n"
  1877. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1878. msgstr ""
  1879. "Användning: apt-sortpkgs [flaggor] fil1 [fil2 ...]\n"
  1880. "\n"
  1881. "apt-sortpkgs är ett enkelt verktyg för att sortera paketfiler. Flaggan\n"
  1882. "-s anges för att ange filens typ.\n"
  1883. "\n"
  1884. "Flaggor:\n"
  1885. " -h Denna hjälptext.\n"
  1886. " -s Använd källkodsfilssortering.\n"
  1887. " -c=? Läs denna konfigurationsfil.\n"
  1888. " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
  1889. #: apt-pkg/install-progress.cc:59
  1890. #, c-format
  1891. msgid "Progress: [%3i%%]"
  1892. msgstr ""
  1893. #: apt-pkg/install-progress.cc:93 apt-pkg/install-progress.cc:176
  1894. msgid "Running dpkg"
  1895. msgstr "Kör dpkg"
  1896. #: apt-pkg/init.cc:156
  1897. #, c-format
  1898. msgid "Packaging system '%s' is not supported"
  1899. msgstr "Paketsystemet \"%s\" stöds inte"
  1900. #
  1901. #: apt-pkg/init.cc:172
  1902. msgid "Unable to determine a suitable packaging system type"
  1903. msgstr "Kunde inte fastställa en lämplig paketsystemstyp"
  1904. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775
  1905. #, c-format
  1906. msgid "Wrote %i records.\n"
  1907. msgstr "Skrev %i poster.\n"
  1908. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777
  1909. #, c-format
  1910. msgid "Wrote %i records with %i missing files.\n"
  1911. msgstr "Skrev %i poster med %i saknade filer.\n"
  1912. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780
  1913. #, c-format
  1914. msgid "Wrote %i records with %i mismatched files\n"
  1915. msgstr "Skrev %i poster med %i filer som inte stämmer\n"
  1916. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783
  1917. #, c-format
  1918. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1919. msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n"
  1920. #: apt-pkg/indexcopy.cc:515
  1921. #, c-format
  1922. msgid "Can't find authentication record for: %s"
  1923. msgstr "Kan inte hitta autentiseringspost för: %s"
  1924. #: apt-pkg/indexcopy.cc:521
  1925. #, c-format
  1926. msgid "Hash mismatch for: %s"
  1927. msgstr "Hash-kontrollsumman stämmer inte för: %s"
  1928. #: apt-pkg/acquire-worker.cc:133
  1929. #, c-format
  1930. msgid "The method driver %s could not be found."
  1931. msgstr "Metoddrivrutinen %s kunde inte hittas."
  1932. #: apt-pkg/acquire-worker.cc:135
  1933. #, fuzzy, c-format
  1934. msgid "Is the package %s installed?"
  1935. msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n"
  1936. #: apt-pkg/acquire-worker.cc:186
  1937. #, c-format
  1938. msgid "Method %s did not start correctly"
  1939. msgstr "Metoden %s startade inte korrekt"
  1940. #: apt-pkg/acquire-worker.cc:485
  1941. #, c-format
  1942. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1943. msgstr ""
  1944. "Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter."
  1945. #: apt-pkg/cachefile.cc:94
  1946. msgid "The package lists or status file could not be parsed or opened."
  1947. msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas."
  1948. #: apt-pkg/cachefile.cc:98
  1949. msgid "You may want to run apt-get update to correct these problems"
  1950. msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\""
  1951. #: apt-pkg/cachefile.cc:116
  1952. msgid "The list of sources could not be read."
  1953. msgstr "Listan över källor kunde inte läsas."
  1954. # Felmeddelande
  1955. #: apt-pkg/pkgcache.cc:154
  1956. msgid "Empty package cache"
  1957. msgstr "Paketcachen är tom"
  1958. #: apt-pkg/pkgcache.cc:160 apt-pkg/pkgcache.cc:171
  1959. msgid "The package cache file is corrupted"
  1960. msgstr "Paketcachefilen är skadad"
  1961. #: apt-pkg/pkgcache.cc:165
  1962. msgid "The package cache file is an incompatible version"
  1963. msgstr "Paketcachefilens version är inkompatibel"
  1964. #: apt-pkg/pkgcache.cc:168
  1965. #, fuzzy
  1966. msgid "The package cache file is corrupted, it is too small"
  1967. msgstr "Paketcachefilen är skadad"
  1968. #: apt-pkg/pkgcache.cc:175
  1969. #, c-format
  1970. msgid "This APT does not support the versioning system '%s'"
  1971. msgstr "Denna APT saknar stöd för versionssystemet \"%s\""
  1972. #: apt-pkg/pkgcache.cc:185
  1973. #, fuzzy, c-format
  1974. msgid "The package cache was built for different architectures: %s vs %s"
  1975. msgstr "Paketcachen byggdes för en annan arkitektur"
  1976. #: apt-pkg/pkgcache.cc:322
  1977. msgid "Depends"
  1978. msgstr "Beroende av"
  1979. #: apt-pkg/pkgcache.cc:322
  1980. msgid "PreDepends"
  1981. msgstr "Förberoende av"
  1982. #: apt-pkg/pkgcache.cc:322
  1983. msgid "Suggests"
  1984. msgstr "Föreslår"
  1985. #: apt-pkg/pkgcache.cc:323
  1986. msgid "Recommends"
  1987. msgstr "Rekommenderar"
  1988. # "Konfliktar"?
  1989. #: apt-pkg/pkgcache.cc:323
  1990. msgid "Conflicts"
  1991. msgstr "Står i konflikt med"
  1992. #: apt-pkg/pkgcache.cc:323
  1993. msgid "Replaces"
  1994. msgstr "Ersätter"
  1995. # "Föråldrar"?
  1996. #: apt-pkg/pkgcache.cc:324
  1997. msgid "Obsoletes"
  1998. msgstr "Föråldrar"
  1999. #: apt-pkg/pkgcache.cc:324
  2000. msgid "Breaks"
  2001. msgstr "Gör sönder"
  2002. #: apt-pkg/pkgcache.cc:324
  2003. msgid "Enhances"
  2004. msgstr "Utökar"
  2005. #: apt-pkg/pkgcache.cc:335
  2006. msgid "important"
  2007. msgstr "viktigt"
  2008. #: apt-pkg/pkgcache.cc:335
  2009. msgid "required"
  2010. msgstr "nödvändigt"
  2011. #: apt-pkg/pkgcache.cc:335
  2012. msgid "standard"
  2013. msgstr "standard"
  2014. #: apt-pkg/pkgcache.cc:336
  2015. msgid "optional"
  2016. msgstr "valfri"
  2017. #: apt-pkg/pkgcache.cc:336
  2018. msgid "extra"
  2019. msgstr "extra"
  2020. #: apt-pkg/upgrade.cc:34 apt-pkg/upgrade.cc:136 apt-pkg/upgrade.cc:182
  2021. msgid "Calculating upgrade"
  2022. msgstr "Beräknar uppgradering"
  2023. #: apt-pkg/pkgrecords.cc:38
  2024. #, c-format
  2025. msgid "Index file type '%s' is not supported"
  2026. msgstr "Indexfiler av typ \"%s\" stöds inte"
  2027. #: apt-pkg/sourcelist.cc:127
  2028. #, fuzzy, c-format
  2029. msgid "Malformed stanza %u in source list %s (URI parse)"
  2030. msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)"
  2031. #: apt-pkg/sourcelist.cc:170
  2032. #, c-format
  2033. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2034. msgstr "Rad %lu i källistan %s har fel format ([option] ej tolkningsbar)"
  2035. #: apt-pkg/sourcelist.cc:173
  2036. #, c-format
  2037. msgid "Malformed line %lu in source list %s ([option] too short)"
  2038. msgstr "Rad %lu i källistan %s har fel format ([option] för kort)"
  2039. #: apt-pkg/sourcelist.cc:184
  2040. #, c-format
  2041. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2042. msgstr "Rad %lu i källistan %s har fel format ([%s] är inte en tilldelning)"
  2043. #: apt-pkg/sourcelist.cc:190
  2044. #, c-format
  2045. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2046. msgstr "Rad %lu i källistan %s har fel format ([%s] saknar nyckel)"
  2047. #: apt-pkg/sourcelist.cc:193
  2048. #, c-format
  2049. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2050. msgstr "Rad %lu i källistan %s har fel format ([%s] nyckeln %s saknar värde)"
  2051. #: apt-pkg/sourcelist.cc:206
  2052. #, c-format
  2053. msgid "Malformed line %lu in source list %s (URI)"
  2054. msgstr "Rad %lu i källistan %s har (URI)"
  2055. #: apt-pkg/sourcelist.cc:208
  2056. #, c-format
  2057. msgid "Malformed line %lu in source list %s (dist)"
  2058. msgstr "Rad %lu i källistan %s har fel format (dist)"
  2059. #: apt-pkg/sourcelist.cc:211
  2060. #, c-format
  2061. msgid "Malformed line %lu in source list %s (URI parse)"
  2062. msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)"
  2063. #: apt-pkg/sourcelist.cc:217
  2064. #, c-format
  2065. msgid "Malformed line %lu in source list %s (absolute dist)"
  2066. msgstr "Rad %lu i källistan %s har fel format (Absolut dist)"
  2067. #: apt-pkg/sourcelist.cc:224
  2068. #, c-format
  2069. msgid "Malformed line %lu in source list %s (dist parse)"
  2070. msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)"
  2071. #: apt-pkg/sourcelist.cc:335
  2072. #, c-format
  2073. msgid "Opening %s"
  2074. msgstr "Öppnar %s"
  2075. #: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497
  2076. #, c-format
  2077. msgid "Line %u too long in source list %s."
  2078. msgstr "Rad %u är för lång i källistan %s."
  2079. #: apt-pkg/sourcelist.cc:371
  2080. #, c-format
  2081. msgid "Malformed line %u in source list %s (type)"
  2082. msgstr "Rad %u i källistan %s har fel format (typ)"
  2083. #: apt-pkg/sourcelist.cc:375
  2084. #, c-format
  2085. msgid "Type '%s' is not known on line %u in source list %s"
  2086. msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s"
  2087. #: apt-pkg/sourcelist.cc:416
  2088. #, fuzzy, c-format
  2089. msgid "Type '%s' is not known on stanza %u in source list %s"
  2090. msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s"
  2091. #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:553
  2092. #, fuzzy, c-format
  2093. msgid "Clean of %s is not supported"
  2094. msgstr "Indexfiler av typ \"%s\" stöds inte"
  2095. #: apt-pkg/clean.cc:64
  2096. #, c-format
  2097. msgid "Unable to stat %s."
  2098. msgstr "Kunde inte ta status på %s."
  2099. #: apt-pkg/pkgcachegen.cc:113
  2100. msgid "Cache has an incompatible versioning system"
  2101. msgstr "Cachen har ett inkompatibelt versionssystem"
  2102. # NewPackage etc. är funktionsnamn
  2103. #. TRANSLATOR: The first placeholder is a package name,
  2104. #. the other two should be copied verbatim as they include debug info
  2105. #: apt-pkg/pkgcachegen.cc:240 apt-pkg/pkgcachegen.cc:250
  2106. #: apt-pkg/pkgcachegen.cc:316 apt-pkg/pkgcachegen.cc:382
  2107. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403
  2108. #: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415
  2109. #: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440
  2110. #: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:525
  2111. #: apt-pkg/pkgcachegen.cc:539 apt-pkg/pkgcachegen.cc:570
  2112. #: apt-pkg/pkgcachegen.cc:584
  2113. #, fuzzy, c-format
  2114. msgid "Error occurred while processing %s (%s%d)"
  2115. msgstr "Fel uppstod vid hantering av %s (FindPkg)"
  2116. #: apt-pkg/pkgcachegen.cc:273
  2117. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2118. msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera."
  2119. #: apt-pkg/pkgcachegen.cc:276
  2120. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2121. msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera."
  2122. #: apt-pkg/pkgcachegen.cc:279
  2123. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2124. msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera."
  2125. #: apt-pkg/pkgcachegen.cc:282
  2126. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2127. msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera."
  2128. #: apt-pkg/pkgcachegen.cc:591
  2129. #, c-format
  2130. msgid "Package %s %s was not found while processing file dependencies"
  2131. msgstr "Paketet %s %s hittades inte när filberoenden hanterades"
  2132. #: apt-pkg/pkgcachegen.cc:1196
  2133. #, c-format
  2134. msgid "Couldn't stat source package list %s"
  2135. msgstr "Kunde inte ta status på källkodspaketlistan %s"
  2136. #: apt-pkg/pkgcachegen.cc:1284 apt-pkg/pkgcachegen.cc:1388
  2137. #: apt-pkg/pkgcachegen.cc:1394 apt-pkg/pkgcachegen.cc:1551
  2138. msgid "Reading package lists"
  2139. msgstr "Läser paketlistor"
  2140. # Bättre ord?
  2141. #: apt-pkg/pkgcachegen.cc:1301
  2142. msgid "Collecting File Provides"
  2143. msgstr "Samlar filtillhandahållningar"
  2144. #: apt-pkg/pkgcachegen.cc:1493 apt-pkg/pkgcachegen.cc:1500
  2145. msgid "IO Error saving source cache"
  2146. msgstr "In-/utfel vid lagring av källcache"
  2147. #: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78
  2148. msgid "Send scenario to solver"
  2149. msgstr ""
  2150. #: apt-pkg/edsp.cc:244
  2151. msgid "Send request to solver"
  2152. msgstr ""
  2153. #: apt-pkg/edsp.cc:323
  2154. msgid "Prepare for receiving solution"
  2155. msgstr ""
  2156. #: apt-pkg/edsp.cc:330
  2157. msgid "External solver failed without a proper error message"
  2158. msgstr ""
  2159. #: apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:625 apt-pkg/edsp.cc:630
  2160. msgid "Execute external solver"
  2161. msgstr ""
  2162. #: apt-pkg/acquire-item.cc:98
  2163. msgid "Use --allow-insecure-repositories to force the update"
  2164. msgstr ""
  2165. #: apt-pkg/acquire-item.cc:215 apt-pkg/contrib/fileutl.cc:2108
  2166. #, c-format
  2167. msgid "rename failed, %s (%s -> %s)."
  2168. msgstr "namnbyte misslyckades, %s (%s -> %s)."
  2169. #: apt-pkg/acquire-item.cc:240
  2170. msgid "Hash Sum mismatch"
  2171. msgstr "Hash-kontrollsumman stämmer inte"
  2172. #: apt-pkg/acquire-item.cc:245
  2173. msgid "Size mismatch"
  2174. msgstr "Storleken stämmer inte"
  2175. #: apt-pkg/acquire-item.cc:250
  2176. #, fuzzy
  2177. msgid "Invalid file format"
  2178. msgstr "Felaktig åtgärd %s"
  2179. #: apt-pkg/acquire-item.cc:255
  2180. #, fuzzy
  2181. msgid "Signature error"
  2182. msgstr "Skrivfel"
  2183. #: apt-pkg/acquire-item.cc:259
  2184. msgid "Does not start with a cleartext signature"
  2185. msgstr ""
  2186. #: apt-pkg/acquire-item.cc:1584
  2187. #, c-format
  2188. msgid ""
  2189. "An error occurred during the signature verification. The repository is not "
  2190. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2191. msgstr ""
  2192. "Ett fel inträffade vid verifiering av signaturen. Förrådet har inte "
  2193. "uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: "
  2194. "%s\n"
  2195. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2196. #: apt-pkg/acquire-item.cc:1594 apt-pkg/acquire-item.cc:1600
  2197. #, c-format
  2198. msgid "GPG error: %s: %s"
  2199. msgstr "GPG-fel: %s: %s"
  2200. #: apt-pkg/acquire-item.cc:1707
  2201. #, fuzzy, c-format
  2202. msgid "The repository '%s' is no longer signed."
  2203. msgstr "Katalogen %s är omdirigerad"
  2204. #: apt-pkg/acquire-item.cc:1714
  2205. msgid ""
  2206. "This is normally not allowed, but the option Acquire::"
  2207. "AllowDowngradeToInsecureRepositories was given to override it."
  2208. msgstr ""
  2209. #: apt-pkg/acquire-item.cc:1727 apt-pkg/acquire-item.cc:2202
  2210. #, c-format
  2211. msgid ""
  2212. "The data from '%s' is not signed. Packages from that repository can not be "
  2213. "authenticated."
  2214. msgstr ""
  2215. #: apt-pkg/acquire-item.cc:1956
  2216. #, c-format
  2217. msgid ""
  2218. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2219. "or malformed file)"
  2220. msgstr ""
  2221. #: apt-pkg/acquire-item.cc:1975
  2222. #, fuzzy, c-format
  2223. msgid "Unable to find hash sum for '%s' in Release file"
  2224. msgstr "Kunde inte tolka \"Release\"-filen %s"
  2225. #: apt-pkg/acquire-item.cc:1999
  2226. msgid "There is no public key available for the following key IDs:\n"
  2227. msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n"
  2228. #: apt-pkg/acquire-item.cc:2037
  2229. #, c-format
  2230. msgid ""
  2231. "Release file for %s is expired (invalid since %s). Updates for this "
  2232. "repository will not be applied."
  2233. msgstr ""
  2234. #: apt-pkg/acquire-item.cc:2059
  2235. #, c-format
  2236. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2237. msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)"
  2238. #: apt-pkg/acquire-item.cc:2078
  2239. #, c-format
  2240. msgid ""
  2241. "The repository '%s' does not have a Release file. This is deprecated, please "
  2242. "contact the owner of the repository."
  2243. msgstr ""
  2244. #: apt-pkg/acquire-item.cc:2249
  2245. #, c-format
  2246. msgid ""
  2247. "I wasn't able to locate a file for the %s package. This might mean you need "
  2248. "to manually fix this package. (due to missing arch)"
  2249. msgstr ""
  2250. "Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
  2251. "manuellt måste reparera detta paket (på grund av saknad arkitektur)."
  2252. #: apt-pkg/acquire-item.cc:2315
  2253. #, c-format
  2254. msgid "Can't find a source to download version '%s' of '%s'"
  2255. msgstr ""
  2256. #: apt-pkg/acquire-item.cc:2351
  2257. #, c-format
  2258. msgid ""
  2259. "The package index files are corrupted. No Filename: field for package %s."
  2260. msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s."
  2261. #: apt-pkg/vendorlist.cc:83
  2262. #, c-format
  2263. msgid "Vendor block %s contains no fingerprint"
  2264. msgstr "Leverantörsblocket %s saknar fingeravtryck"
  2265. #: apt-pkg/acquire.cc:126 apt-pkg/acquire.cc:146 apt-pkg/cdrom.cc:832
  2266. #, c-format
  2267. msgid "List directory %spartial is missing."
  2268. msgstr "Listkatalogen %spartial saknas."
  2269. #: apt-pkg/acquire.cc:129 apt-pkg/acquire.cc:151
  2270. #, c-format
  2271. msgid "Archives directory %spartial is missing."
  2272. msgstr "Arkivkatalogen %spartial saknas."
  2273. #: apt-pkg/acquire.cc:162
  2274. #, c-format
  2275. msgid "Unable to lock directory %s"
  2276. msgstr "Kunde inte låsa katalogen %s"
  2277. #. only show the ETA if it makes sense
  2278. #. two days
  2279. #: apt-pkg/acquire.cc:981
  2280. #, c-format
  2281. msgid "Retrieving file %li of %li (%s remaining)"
  2282. msgstr "Hämtar fil %li av %li (%s återstår)"
  2283. #: apt-pkg/acquire.cc:983
  2284. #, c-format
  2285. msgid "Retrieving file %li of %li"
  2286. msgstr "Hämtar fil %li av %li"
  2287. #: apt-pkg/srcrecords.cc:53
  2288. msgid "You must put some 'source' URIs in your sources.list"
  2289. msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list"
  2290. #: apt-pkg/policy.cc:83
  2291. #, c-format
  2292. msgid ""
  2293. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2294. "available in the sources"
  2295. msgstr ""
  2296. # "Package" är en sträng i konfigurationsfilen
  2297. #: apt-pkg/policy.cc:422
  2298. #, c-format
  2299. msgid "Invalid record in the preferences file %s, no Package header"
  2300. msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas"
  2301. #: apt-pkg/policy.cc:444
  2302. #, c-format
  2303. msgid "Did not understand pin type %s"
  2304. msgstr "Förstod inte nåltypen %s"
  2305. #: apt-pkg/policy.cc:452
  2306. msgid "No priority (or zero) specified for pin"
  2307. msgstr "Prioritet ej angiven (eller noll) för nål"
  2308. #: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:984
  2309. #, c-format
  2310. msgid ""
  2311. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2312. "under APT::Immediate-Configure for details. (%d)"
  2313. msgstr ""
  2314. "Kunde inte genomföra omedelbar konfiguration på \"%s\". Se man 5 apt.conf "
  2315. "under APT::Immediate-Configure för information. (%d)"
  2316. #: apt-pkg/packagemanager.cc:563 apt-pkg/packagemanager.cc:593
  2317. #, fuzzy, c-format
  2318. msgid "Could not configure '%s'. "
  2319. msgstr "Kunde inte öppna filen \"%s\""
  2320. #: apt-pkg/packagemanager.cc:643
  2321. #, c-format
  2322. msgid ""
  2323. "This installation run will require temporarily removing the essential "
  2324. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2325. "you really want to do it, activate the APT::Force-LoopBreak option."
  2326. msgstr ""
  2327. "För att genomföra installationen måste det systemkritiska paketet %s "
  2328. "tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. "
  2329. "Detta är oftast en dålig idé, men om du verkligen vill göra det kan du "
  2330. "aktivera flaggan \"APT::Force-LoopBreak\"."
  2331. #: apt-pkg/update.cc:103 apt-pkg/update.cc:105
  2332. #, fuzzy
  2333. msgid ""
  2334. "Some index files failed to download. They have been ignored, or old ones "
  2335. "used instead."
  2336. msgstr ""
  2337. "Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla "
  2338. "använts istället."
  2339. #: apt-pkg/cdrom.cc:571
  2340. msgid "Unmounting CD-ROM...\n"
  2341. msgstr "Avmonterar CD-ROM...\n"
  2342. #: apt-pkg/cdrom.cc:586
  2343. #, c-format
  2344. msgid "Using CD-ROM mount point %s\n"
  2345. msgstr "Använder cd-rom-monteringspunkten %s\n"
  2346. #: apt-pkg/cdrom.cc:599
  2347. msgid "Waiting for disc...\n"
  2348. msgstr "Väntar på skiva...\n"
  2349. #: apt-pkg/cdrom.cc:609
  2350. msgid "Mounting CD-ROM...\n"
  2351. msgstr "Monterar cd-rom...\n"
  2352. #: apt-pkg/cdrom.cc:620
  2353. msgid "Identifying... "
  2354. msgstr "Identifierar... "
  2355. #: apt-pkg/cdrom.cc:662
  2356. #, c-format
  2357. msgid "Stored label: %s\n"
  2358. msgstr "Lagrad etikett: %s \n"
  2359. #: apt-pkg/cdrom.cc:680
  2360. msgid "Scanning disc for index files...\n"
  2361. msgstr "Söker efter indexfiler på skivan...\n"
  2362. #: apt-pkg/cdrom.cc:734
  2363. #, c-format
  2364. msgid ""
  2365. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2366. "%zu signatures\n"
  2367. msgstr ""
  2368. "Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu "
  2369. "signaturer\n"
  2370. #: apt-pkg/cdrom.cc:744
  2371. msgid ""
  2372. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2373. "wrong architecture?"
  2374. msgstr ""
  2375. "Kunde inte hitta några paketfiler. Detta är kanske inte en Debian-skiva "
  2376. "eller felaktig arkitektur?"
  2377. #: apt-pkg/cdrom.cc:771
  2378. #, c-format
  2379. msgid "Found label '%s'\n"
  2380. msgstr "Hittade etiketten \"%s\"\n"
  2381. #: apt-pkg/cdrom.cc:800
  2382. msgid "That is not a valid name, try again.\n"
  2383. msgstr "Namnet är ogiltigt, försök igen.\n"
  2384. #: apt-pkg/cdrom.cc:817
  2385. #, c-format
  2386. msgid ""
  2387. "This disc is called: \n"
  2388. "'%s'\n"
  2389. msgstr ""
  2390. "Denna skiva heter: \n"
  2391. "\"%s\"\n"
  2392. #: apt-pkg/cdrom.cc:819
  2393. msgid "Copying package lists..."
  2394. msgstr "Kopierar paketlistor..."
  2395. #: apt-pkg/cdrom.cc:866
  2396. msgid "Writing new source list\n"
  2397. msgstr "Skriver ny källista\n"
  2398. #: apt-pkg/cdrom.cc:877
  2399. msgid "Source list entries for this disc are:\n"
  2400. msgstr "Poster i källistan för denna skiva:\n"
  2401. #: apt-pkg/algorithms.cc:265
  2402. #, c-format
  2403. msgid ""
  2404. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2405. msgstr ""
  2406. "Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det."
  2407. #: apt-pkg/algorithms.cc:1090
  2408. msgid ""
  2409. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2410. "held packages."
  2411. msgstr ""
  2412. "Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på "
  2413. "tillbakahållna paket."
  2414. #: apt-pkg/algorithms.cc:1092
  2415. msgid "Unable to correct problems, you have held broken packages."
  2416. msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket."
  2417. #: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167
  2418. msgid "Building dependency tree"
  2419. msgstr "Bygger beroendeträd"
  2420. #: apt-pkg/depcache.cc:139
  2421. msgid "Candidate versions"
  2422. msgstr "Kandiderande versioner"
  2423. #: apt-pkg/depcache.cc:168
  2424. msgid "Dependency generation"
  2425. msgstr "Beroendegenerering"
  2426. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  2427. msgid "Reading state information"
  2428. msgstr "Läser tillståndsinformation"
  2429. #: apt-pkg/depcache.cc:252
  2430. #, c-format
  2431. msgid "Failed to open StateFile %s"
  2432. msgstr "Misslyckades med att öppna StateFile %s"
  2433. #: apt-pkg/depcache.cc:258
  2434. #, c-format
  2435. msgid "Failed to write temporary StateFile %s"
  2436. msgstr "Misslyckades med att skriva temporär StateFile %s"
  2437. #: apt-pkg/tagfile.cc:186 apt-pkg/tagfile.cc:286 apt-pkg/deb/debrecords.cc:207
  2438. #, c-format
  2439. msgid "Unable to parse package file %s (%d)"
  2440. msgstr "Kunde inte tolka paketfilen %s (%d)"
  2441. #: apt-pkg/cacheset.cc:501
  2442. #, c-format
  2443. msgid "Release '%s' for '%s' was not found"
  2444. msgstr "Utgåvan \"%s\" för \"%s\" hittades inte"
  2445. #: apt-pkg/cacheset.cc:504
  2446. #, c-format
  2447. msgid "Version '%s' for '%s' was not found"
  2448. msgstr "Version \"%s\" för \"%s\" hittades inte"
  2449. #: apt-pkg/cacheset.cc:629
  2450. #, c-format
  2451. msgid "Couldn't find task '%s'"
  2452. msgstr "Kunde inte hitta funktionen \"%s\""
  2453. #: apt-pkg/cacheset.cc:635
  2454. #, c-format
  2455. msgid "Couldn't find any package by regex '%s'"
  2456. msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\""
  2457. #: apt-pkg/cacheset.cc:641
  2458. #, fuzzy, c-format
  2459. msgid "Couldn't find any package by glob '%s'"
  2460. msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\""
  2461. #: apt-pkg/cacheset.cc:680
  2462. #, c-format
  2463. msgid "Can't select versions from package '%s' as it is purely virtual"
  2464. msgstr ""
  2465. "Kan inte välja versioner från paketet \"%s\" eftersom det är helt virtuellt"
  2466. #: apt-pkg/cacheset.cc:719
  2467. #, c-format
  2468. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2469. msgstr ""
  2470. "Kan inte välja senaste version från paketet \"%s\" eftersom det är helt "
  2471. "virtuellt"
  2472. #: apt-pkg/cacheset.cc:727
  2473. #, c-format
  2474. msgid "Can't select candidate version from package %s as it has no candidate"
  2475. msgstr ""
  2476. "Kan inte välja kandidatversion från paketet %s eftersom det inte har någon "
  2477. "kandidat"
  2478. #: apt-pkg/cacheset.cc:735
  2479. #, c-format
  2480. msgid "Can't select installed version from package %s as it is not installed"
  2481. msgstr ""
  2482. "Kan inte välja installerad version från paketet %s eftersom det inte är "
  2483. "installerat"
  2484. #: apt-pkg/cacheset.cc:743 apt-pkg/cacheset.cc:751
  2485. #, c-format
  2486. msgid ""
  2487. "Can't select installed nor candidate version from package '%s' as it has "
  2488. "neither of them"
  2489. msgstr ""
  2490. "Kan inte välja installerad version eller kandidatversion från paketet \"%s\" "
  2491. "eftersom det inte har någon av dem"
  2492. #: apt-pkg/indexrecords.cc:83
  2493. #, c-format
  2494. msgid "Unable to parse Release file %s"
  2495. msgstr "Kunde inte tolka \"Release\"-filen %s"
  2496. #: apt-pkg/indexrecords.cc:91
  2497. #, c-format
  2498. msgid "No sections in Release file %s"
  2499. msgstr "Inga sektioner i Release-filen %s"
  2500. #: apt-pkg/indexrecords.cc:132
  2501. #, c-format
  2502. msgid "No Hash entry in Release file %s"
  2503. msgstr "Ingen Hash-post i Release-filen %s"
  2504. #: apt-pkg/indexrecords.cc:145
  2505. #, c-format
  2506. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2507. msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s"
  2508. #: apt-pkg/indexrecords.cc:164
  2509. #, c-format
  2510. msgid "Invalid 'Date' entry in Release file %s"
  2511. msgstr "Ogiltig \"Date\"-post i Release-filen %s"
  2512. #. d means days, h means hours, min means minutes, s means seconds
  2513. #: apt-pkg/contrib/strutl.cc:425
  2514. #, c-format
  2515. msgid "%lid %lih %limin %lis"
  2516. msgstr "%lid %lih %limin %lis"
  2517. #. h means hours, min means minutes, s means seconds
  2518. #: apt-pkg/contrib/strutl.cc:432
  2519. #, c-format
  2520. msgid "%lih %limin %lis"
  2521. msgstr "%lih %limin %lis"
  2522. #. min means minutes, s means seconds
  2523. #: apt-pkg/contrib/strutl.cc:439
  2524. #, c-format
  2525. msgid "%limin %lis"
  2526. msgstr "%limin %lis"
  2527. #. s means seconds
  2528. #: apt-pkg/contrib/strutl.cc:444
  2529. #, c-format
  2530. msgid "%lis"
  2531. msgstr "%lis"
  2532. #: apt-pkg/contrib/strutl.cc:1290
  2533. #, c-format
  2534. msgid "Selection %s not found"
  2535. msgstr "Valet %s hittades inte"
  2536. #: apt-pkg/contrib/fileutl.cc:196
  2537. #, c-format
  2538. msgid "Not using locking for read only lock file %s"
  2539. msgstr "Använder inte låsning för skrivskyddade låsfilen %s"
  2540. #: apt-pkg/contrib/fileutl.cc:201
  2541. #, c-format
  2542. msgid "Could not open lock file %s"
  2543. msgstr "Kunde inte öppna låsfilen %s"
  2544. #: apt-pkg/contrib/fileutl.cc:224
  2545. #, c-format
  2546. msgid "Not using locking for nfs mounted lock file %s"
  2547. msgstr "Använder inte låsning för nfs-monterade låsfilen %s"
  2548. #: apt-pkg/contrib/fileutl.cc:229
  2549. #, c-format
  2550. msgid "Could not get lock %s"
  2551. msgstr "Kunde inte erhålla låset %s"
  2552. #: apt-pkg/contrib/fileutl.cc:366 apt-pkg/contrib/fileutl.cc:480
  2553. #, c-format
  2554. msgid "List of files can't be created as '%s' is not a directory"
  2555. msgstr ""
  2556. #: apt-pkg/contrib/fileutl.cc:400
  2557. #, c-format
  2558. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2559. msgstr ""
  2560. #: apt-pkg/contrib/fileutl.cc:418
  2561. #, c-format
  2562. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2563. msgstr ""
  2564. #: apt-pkg/contrib/fileutl.cc:427
  2565. #, c-format
  2566. msgid ""
  2567. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2568. msgstr ""
  2569. #: apt-pkg/contrib/fileutl.cc:846
  2570. #, c-format
  2571. msgid "Sub-process %s received a segmentation fault."
  2572. msgstr "Underprocessen %s råkade ut för ett segmenteringsfel."
  2573. #: apt-pkg/contrib/fileutl.cc:848
  2574. #, c-format
  2575. msgid "Sub-process %s received signal %u."
  2576. msgstr "Underprocessen %s tog emot signal %u."
  2577. #: apt-pkg/contrib/fileutl.cc:852 apt-pkg/contrib/gpgv.cc:212
  2578. #, c-format
  2579. msgid "Sub-process %s returned an error code (%u)"
  2580. msgstr "Underprocessen %s svarade med en felkod (%u)"
  2581. #: apt-pkg/contrib/fileutl.cc:854 apt-pkg/contrib/gpgv.cc:205
  2582. #, c-format
  2583. msgid "Sub-process %s exited unexpectedly"
  2584. msgstr "Underprocessen %s avslutades oväntat"
  2585. #: apt-pkg/contrib/fileutl.cc:952
  2586. #, c-format
  2587. msgid "Problem closing the gzip file %s"
  2588. msgstr "Problem med att stänga gzip-filen %s"
  2589. #: apt-pkg/contrib/fileutl.cc:1140
  2590. #, c-format
  2591. msgid "Could not open file %s"
  2592. msgstr "Kunde inte öppna filen %s"
  2593. #: apt-pkg/contrib/fileutl.cc:1199 apt-pkg/contrib/fileutl.cc:1246
  2594. #, c-format
  2595. msgid "Could not open file descriptor %d"
  2596. msgstr "Kunde inte öppna filhandtag %d"
  2597. #: apt-pkg/contrib/fileutl.cc:1354 apt-pkg/contrib/fileutl.cc:2123
  2598. msgid "Failed to create subprocess IPC"
  2599. msgstr "Misslyckades med att skapa underprocess-IPC"
  2600. #: apt-pkg/contrib/fileutl.cc:1412
  2601. msgid "Failed to exec compressor "
  2602. msgstr "Misslyckades med att starta komprimerare "
  2603. #: apt-pkg/contrib/fileutl.cc:1553
  2604. #, fuzzy, c-format
  2605. msgid "read, still have %llu to read but none left"
  2606. msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar"
  2607. #: apt-pkg/contrib/fileutl.cc:1666 apt-pkg/contrib/fileutl.cc:1688
  2608. #, fuzzy, c-format
  2609. msgid "write, still have %llu to write but couldn't"
  2610. msgstr "skrivning, har fortfarande %lu att skriva men kunde inte"
  2611. #: apt-pkg/contrib/fileutl.cc:1954
  2612. #, c-format
  2613. msgid "Problem closing the file %s"
  2614. msgstr "Problem med att stänga filen %s"
  2615. #: apt-pkg/contrib/fileutl.cc:1965
  2616. #, c-format
  2617. msgid "Problem renaming the file %s to %s"
  2618. msgstr "Problem med att byta namn på filen %s till %s"
  2619. #: apt-pkg/contrib/fileutl.cc:1976
  2620. #, c-format
  2621. msgid "Problem unlinking the file %s"
  2622. msgstr "Problem med att avlänka filen %s"
  2623. #: apt-pkg/contrib/fileutl.cc:1989
  2624. msgid "Problem syncing the file"
  2625. msgstr "Problem med att synkronisera filen"
  2626. #: apt-pkg/contrib/progress.cc:148
  2627. #, c-format
  2628. msgid "%c%s... Error!"
  2629. msgstr "%c%s... Fel!"
  2630. #: apt-pkg/contrib/progress.cc:150
  2631. #, c-format
  2632. msgid "%c%s... Done"
  2633. msgstr "%c%s... Färdig"
  2634. #: apt-pkg/contrib/progress.cc:181
  2635. msgid "..."
  2636. msgstr ""
  2637. #. Print the spinner
  2638. #: apt-pkg/contrib/progress.cc:197
  2639. #, fuzzy, c-format
  2640. msgid "%c%s... %u%%"
  2641. msgstr "%c%s... Färdig"
  2642. #: apt-pkg/contrib/mmap.cc:79
  2643. msgid "Can't mmap an empty file"
  2644. msgstr "Kan inte utföra mmap på en tom fil"
  2645. #: apt-pkg/contrib/mmap.cc:111
  2646. #, c-format
  2647. msgid "Couldn't duplicate file descriptor %i"
  2648. msgstr "Kunde inte duplicera filhandtag %i"
  2649. #: apt-pkg/contrib/mmap.cc:119
  2650. #, fuzzy, c-format
  2651. msgid "Couldn't make mmap of %llu bytes"
  2652. msgstr "Kunde inte utföra mmap på %lu byte"
  2653. #: apt-pkg/contrib/mmap.cc:146
  2654. msgid "Unable to close mmap"
  2655. msgstr "Kunde inte stänga mmap"
  2656. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2657. msgid "Unable to synchronize mmap"
  2658. msgstr "Kunde inte synkronisera mmap"
  2659. #: apt-pkg/contrib/mmap.cc:290
  2660. #, c-format
  2661. msgid "Couldn't make mmap of %lu bytes"
  2662. msgstr "Kunde inte utföra mmap på %lu byte"
  2663. #: apt-pkg/contrib/mmap.cc:322
  2664. msgid "Failed to truncate file"
  2665. msgstr "Misslyckades med att kapa av filen"
  2666. #: apt-pkg/contrib/mmap.cc:341
  2667. #, c-format
  2668. msgid ""
  2669. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2670. "Current value: %lu. (man 5 apt.conf)"
  2671. msgstr ""
  2672. "Dynamisk MMap fick slut på utrymme. Öka storleken för APT::Cache-Start. "
  2673. "Aktuellt värde: %lu. (man 5 apt.conf)"
  2674. #: apt-pkg/contrib/mmap.cc:446
  2675. #, c-format
  2676. msgid ""
  2677. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2678. "reached."
  2679. msgstr ""
  2680. "Kunde inte öka storleken för MMap eftersom gränsen på %lu byte redan har "
  2681. "uppnåtts."
  2682. #: apt-pkg/contrib/mmap.cc:449
  2683. msgid ""
  2684. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2685. msgstr ""
  2686. "Kunde inte öka storleken för MMap eftersom automatisk växt har inaktiverats "
  2687. "av användaren."
  2688. #: apt-pkg/contrib/cdromutl.cc:65
  2689. #, c-format
  2690. msgid "Unable to stat the mount point %s"
  2691. msgstr "Kunde inte ta status på monteringspunkten %s."
  2692. #: apt-pkg/contrib/cdromutl.cc:246
  2693. msgid "Failed to stat the cdrom"
  2694. msgstr "Kunde inte ta status på cd-romen."
  2695. #: apt-pkg/contrib/configuration.cc:522
  2696. #, c-format
  2697. msgid "Unrecognized type abbreviation: '%c'"
  2698. msgstr "Okänd typförkortning: \"%c\""
  2699. #: apt-pkg/contrib/configuration.cc:636
  2700. #, c-format
  2701. msgid "Opening configuration file %s"
  2702. msgstr "Öppnar konfigurationsfilen %s"
  2703. #: apt-pkg/contrib/configuration.cc:804
  2704. #, c-format
  2705. msgid "Syntax error %s:%u: Block starts with no name."
  2706. msgstr "Syntaxfel %s:%u: Block börjar utan namn."
  2707. #: apt-pkg/contrib/configuration.cc:823
  2708. #, c-format
  2709. msgid "Syntax error %s:%u: Malformed tag"
  2710. msgstr "Syntaxfel %s:%u: Felformat märke"
  2711. #: apt-pkg/contrib/configuration.cc:840
  2712. #, c-format
  2713. msgid "Syntax error %s:%u: Extra junk after value"
  2714. msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde"
  2715. #: apt-pkg/contrib/configuration.cc:880
  2716. #, c-format
  2717. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2718. msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån"
  2719. #: apt-pkg/contrib/configuration.cc:887
  2720. #, c-format
  2721. msgid "Syntax error %s:%u: Too many nested includes"
  2722. msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar"
  2723. #: apt-pkg/contrib/configuration.cc:891 apt-pkg/contrib/configuration.cc:896
  2724. #, c-format
  2725. msgid "Syntax error %s:%u: Included from here"
  2726. msgstr "Syntaxfel %s:%u: Inkluderad härifrån"
  2727. #: apt-pkg/contrib/configuration.cc:900
  2728. #, c-format
  2729. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2730. msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte"
  2731. #: apt-pkg/contrib/configuration.cc:903
  2732. #, c-format
  2733. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2734. msgstr "Syntaxfel %s:%u: clear-direktivet kräver ett flaggträd som argument"
  2735. #: apt-pkg/contrib/configuration.cc:953
  2736. #, c-format
  2737. msgid "Syntax error %s:%u: Extra junk at end of file"
  2738. msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut"
  2739. #: apt-pkg/contrib/cmndline.cc:127
  2740. #, c-format
  2741. msgid "Command line option '%c' [from %s] is not known."
  2742. msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd."
  2743. #: apt-pkg/contrib/cmndline.cc:152 apt-pkg/contrib/cmndline.cc:161
  2744. #: apt-pkg/contrib/cmndline.cc:169
  2745. #, c-format
  2746. msgid "Command line option %s is not understood"
  2747. msgstr "Förstår inte kommandoradsflaggan %s"
  2748. #: apt-pkg/contrib/cmndline.cc:174
  2749. #, c-format
  2750. msgid "Command line option %s is not boolean"
  2751. msgstr "Kommandoradsflaggan %s är inte boolsk"
  2752. #: apt-pkg/contrib/cmndline.cc:215 apt-pkg/contrib/cmndline.cc:236
  2753. #, c-format
  2754. msgid "Option %s requires an argument."
  2755. msgstr "Flaggan %s kräver ett argument."
  2756. #: apt-pkg/contrib/cmndline.cc:249 apt-pkg/contrib/cmndline.cc:255
  2757. #, c-format
  2758. msgid "Option %s: Configuration item specification must have an =<val>."
  2759. msgstr ""
  2760. "Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>."
  2761. #: apt-pkg/contrib/cmndline.cc:284
  2762. #, c-format
  2763. msgid "Option %s requires an integer argument, not '%s'"
  2764. msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\""
  2765. #: apt-pkg/contrib/cmndline.cc:315
  2766. #, c-format
  2767. msgid "Option '%s' is too long"
  2768. msgstr "Flaggan \"%s\" är för lång"
  2769. #: apt-pkg/contrib/cmndline.cc:347
  2770. #, c-format
  2771. msgid "Sense %s is not understood, try true or false."
  2772. msgstr "Förstår inte %s, prova med \"true\" eller \"false\"."
  2773. #: apt-pkg/contrib/cmndline.cc:397
  2774. #, c-format
  2775. msgid "Invalid operation %s"
  2776. msgstr "Felaktig åtgärd %s"
  2777. #: apt-pkg/deb/dpkgpm.cc:112
  2778. #, c-format
  2779. msgid "Installing %s"
  2780. msgstr "Installerar %s"
  2781. #: apt-pkg/deb/dpkgpm.cc:113 apt-pkg/deb/dpkgpm.cc:1008
  2782. #, c-format
  2783. msgid "Configuring %s"
  2784. msgstr "Konfigurerar %s"
  2785. #: apt-pkg/deb/dpkgpm.cc:114 apt-pkg/deb/dpkgpm.cc:1015
  2786. #, c-format
  2787. msgid "Removing %s"
  2788. msgstr "Tar bort %s"
  2789. #: apt-pkg/deb/dpkgpm.cc:115
  2790. #, c-format
  2791. msgid "Completely removing %s"
  2792. msgstr "Tar bort hela %s"
  2793. #: apt-pkg/deb/dpkgpm.cc:116
  2794. #, c-format
  2795. msgid "Noting disappearance of %s"
  2796. msgstr "Uppmärksammar försvinnandet av %s"
  2797. #: apt-pkg/deb/dpkgpm.cc:117
  2798. #, c-format
  2799. msgid "Running post-installation trigger %s"
  2800. msgstr "Kör efterinstallationsutlösare %s"
  2801. #. FIXME: use a better string after freeze
  2802. #: apt-pkg/deb/dpkgpm.cc:839
  2803. #, c-format
  2804. msgid "Directory '%s' missing"
  2805. msgstr "Katalogen \"%s\" saknas"
  2806. #: apt-pkg/deb/dpkgpm.cc:854 apt-pkg/deb/dpkgpm.cc:876
  2807. #, c-format
  2808. msgid "Could not open file '%s'"
  2809. msgstr "Kunde inte öppna filen \"%s\""
  2810. #: apt-pkg/deb/dpkgpm.cc:1001
  2811. #, c-format
  2812. msgid "Preparing %s"
  2813. msgstr "Förbereder %s"
  2814. #: apt-pkg/deb/dpkgpm.cc:1002
  2815. #, c-format
  2816. msgid "Unpacking %s"
  2817. msgstr "Packar upp %s"
  2818. #: apt-pkg/deb/dpkgpm.cc:1007
  2819. #, c-format
  2820. msgid "Preparing to configure %s"
  2821. msgstr "Förbereder konfigurering av %s"
  2822. #: apt-pkg/deb/dpkgpm.cc:1009
  2823. #, c-format
  2824. msgid "Installed %s"
  2825. msgstr "Installerade %s"
  2826. #: apt-pkg/deb/dpkgpm.cc:1014
  2827. #, c-format
  2828. msgid "Preparing for removal of %s"
  2829. msgstr "Förbereder borttagning av %s"
  2830. #: apt-pkg/deb/dpkgpm.cc:1016
  2831. #, c-format
  2832. msgid "Removed %s"
  2833. msgstr "Tog bort %s"
  2834. #: apt-pkg/deb/dpkgpm.cc:1021
  2835. #, c-format
  2836. msgid "Preparing to completely remove %s"
  2837. msgstr "Förbereder borttagning av hela %s"
  2838. #: apt-pkg/deb/dpkgpm.cc:1022
  2839. #, c-format
  2840. msgid "Completely removed %s"
  2841. msgstr "Tog bort hela %s"
  2842. #: apt-pkg/deb/dpkgpm.cc:1081 apt-pkg/deb/dpkgpm.cc:1169
  2843. #, fuzzy, c-format
  2844. msgid "Can not write log (%s)"
  2845. msgstr "Kunde inte skriva till %s"
  2846. #: apt-pkg/deb/dpkgpm.cc:1081 apt-pkg/deb/dpkgpm.cc:1169
  2847. msgid "Is /dev/pts mounted?"
  2848. msgstr ""
  2849. #: apt-pkg/deb/dpkgpm.cc:1656
  2850. msgid "Operation was interrupted before it could finish"
  2851. msgstr ""
  2852. #: apt-pkg/deb/dpkgpm.cc:1718
  2853. msgid "No apport report written because MaxReports is reached already"
  2854. msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts"
  2855. #. check if its not a follow up error
  2856. #: apt-pkg/deb/dpkgpm.cc:1723
  2857. msgid "dependency problems - leaving unconfigured"
  2858. msgstr "beroendeproblem - lämnar okonfigurerad"
  2859. #: apt-pkg/deb/dpkgpm.cc:1725
  2860. msgid ""
  2861. "No apport report written because the error message indicates its a followup "
  2862. "error from a previous failure."
  2863. msgstr ""
  2864. "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är "
  2865. "ett efterföljande fel från ett tidigare problem."
  2866. #: apt-pkg/deb/dpkgpm.cc:1731
  2867. msgid ""
  2868. "No apport report written because the error message indicates a disk full "
  2869. "error"
  2870. msgstr ""
  2871. "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att "
  2872. "diskutrymmet är slut"
  2873. #: apt-pkg/deb/dpkgpm.cc:1738
  2874. msgid ""
  2875. "No apport report written because the error message indicates a out of memory "
  2876. "error"
  2877. msgstr ""
  2878. "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet "
  2879. "är slut"
  2880. #: apt-pkg/deb/dpkgpm.cc:1745 apt-pkg/deb/dpkgpm.cc:1751
  2881. #, fuzzy
  2882. msgid ""
  2883. "No apport report written because the error message indicates an issue on the "
  2884. "local system"
  2885. msgstr ""
  2886. "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att "
  2887. "diskutrymmet är slut"
  2888. #: apt-pkg/deb/dpkgpm.cc:1773
  2889. msgid ""
  2890. "No apport report written because the error message indicates a dpkg I/O error"
  2891. msgstr ""
  2892. "Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-"
  2893. "fel för dpkg"
  2894. #: apt-pkg/deb/debsystem.cc:91
  2895. #, c-format
  2896. msgid ""
  2897. "Unable to lock the administration directory (%s), is another process using "
  2898. "it?"
  2899. msgstr ""
  2900. "Kunde inte låsa administrationskatalogen (%s). Använder en annan process den?"
  2901. #: apt-pkg/deb/debsystem.cc:94
  2902. #, c-format
  2903. msgid "Unable to lock the administration directory (%s), are you root?"
  2904. msgstr "Kunde inte låsa administrationskatalogen (%s). Är du root?"
  2905. #. TRANSLATORS: the %s contains the recovery command, usually
  2906. #. dpkg --configure -a
  2907. #: apt-pkg/deb/debsystem.cc:110
  2908. #, c-format
  2909. msgid ""
  2910. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2911. msgstr ""
  2912. "dpkg avbröts. Du måste köra \"%s\" manuellt för att korrigera problemet. "
  2913. #: apt-pkg/deb/debsystem.cc:128
  2914. msgid "Not locked"
  2915. msgstr "Inte låst"
  2916. #: apt-inst/filelist.cc:380
  2917. msgid "DropNode called on still linked node"
  2918. msgstr "DropNode anropat på fortfarande länkad nod"
  2919. #: apt-inst/filelist.cc:412
  2920. msgid "Failed to locate the hash element!"
  2921. msgstr "Misslyckades med att hitta hash-elementet!"
  2922. #: apt-inst/filelist.cc:459
  2923. msgid "Failed to allocate diversion"
  2924. msgstr "Misslyckades med att allokera omdirigering"
  2925. #: apt-inst/filelist.cc:464
  2926. msgid "Internal error in AddDiversion"
  2927. msgstr "Internt fel i AddDiversion"
  2928. #: apt-inst/filelist.cc:477
  2929. #, c-format
  2930. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2931. msgstr "Försöker att skriva över en omdirigering, %s -> %s och %s/%s"
  2932. #: apt-inst/filelist.cc:506
  2933. #, c-format
  2934. msgid "Double add of diversion %s -> %s"
  2935. msgstr "Omdirigeringen %s -> %s inlagd två gånger"
  2936. #: apt-inst/filelist.cc:549
  2937. #, c-format
  2938. msgid "Duplicate conf file %s/%s"
  2939. msgstr "Duplicerad konfigurationsfil %s/%s"
  2940. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  2941. #, c-format
  2942. msgid "The path %s is too long"
  2943. msgstr "Sökvägen %s är för lång"
  2944. #: apt-inst/extract.cc:132
  2945. #, c-format
  2946. msgid "Unpacking %s more than once"
  2947. msgstr "Packar upp %s flera gånger"
  2948. #: apt-inst/extract.cc:142
  2949. #, c-format
  2950. msgid "The directory %s is diverted"
  2951. msgstr "Katalogen %s är omdirigerad"
  2952. #: apt-inst/extract.cc:152
  2953. #, c-format
  2954. msgid "The package is trying to write to the diversion target %s/%s"
  2955. msgstr "Paketet försöker att skriva till omdirigeringsmålet %s/%s"
  2956. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  2957. msgid "The diversion path is too long"
  2958. msgstr "Omdirigeringssökvägen är för lång"
  2959. #: apt-inst/extract.cc:249
  2960. #, c-format
  2961. msgid "The directory %s is being replaced by a non-directory"
  2962. msgstr "Katalogen %s ersätts av en icke-katalog"
  2963. #: apt-inst/extract.cc:289
  2964. msgid "Failed to locate node in its hash bucket"
  2965. msgstr "Misslyckades med att hitta noden i sin hashkorg"
  2966. #: apt-inst/extract.cc:293
  2967. msgid "The path is too long"
  2968. msgstr "Sökvägen är för lång"
  2969. #: apt-inst/extract.cc:421
  2970. #, c-format
  2971. msgid "Overwrite package match with no version for %s"
  2972. msgstr "Skriv över paketträff utan version för %s"
  2973. #: apt-inst/extract.cc:438
  2974. #, c-format
  2975. msgid "File %s/%s overwrites the one in the package %s"
  2976. msgstr "Filen %s/%s skriver över den i paketet %s"
  2977. #: apt-inst/extract.cc:498
  2978. #, c-format
  2979. msgid "Unable to stat %s"
  2980. msgstr "Kunde inte ta status på %s"
  2981. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  2982. #, c-format
  2983. msgid "Failed to write file %s"
  2984. msgstr "Misslyckades med att skriva filen %s"
  2985. #: apt-inst/dirstream.cc:104
  2986. #, c-format
  2987. msgid "Failed to close file %s"
  2988. msgstr "Misslyckades med att stänga filen %s"
  2989. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  2990. #: apt-inst/deb/debfile.cc:63
  2991. #, c-format
  2992. msgid "This is not a valid DEB archive, missing '%s' member"
  2993. msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas"
  2994. #: apt-inst/deb/debfile.cc:132
  2995. #, c-format
  2996. msgid "Internal error, could not locate member %s"
  2997. msgstr "Internt fel, kunde inta hitta delen %s"
  2998. #: apt-inst/deb/debfile.cc:231
  2999. msgid "Unparsable control file"
  3000. msgstr "Kunde inte tolka control-filen"
  3001. #: apt-inst/contrib/arfile.cc:76
  3002. msgid "Invalid archive signature"
  3003. msgstr "Ogiltig arkivsignatur"
  3004. #: apt-inst/contrib/arfile.cc:84
  3005. msgid "Error reading archive member header"
  3006. msgstr "Fel vid läsning av rubrik för arkivdel"
  3007. #: apt-inst/contrib/arfile.cc:96
  3008. #, c-format
  3009. msgid "Invalid archive member header %s"
  3010. msgstr "Ogiltig arkivdelsrubrik %s"
  3011. #: apt-inst/contrib/arfile.cc:108
  3012. msgid "Invalid archive member header"
  3013. msgstr "Ogiltigt arkivdelsrubrik"
  3014. #: apt-inst/contrib/arfile.cc:137
  3015. msgid "Archive is too short"
  3016. msgstr "Arkivet är för kort"
  3017. #: apt-inst/contrib/arfile.cc:141
  3018. msgid "Failed to read the archive headers"
  3019. msgstr "Misslyckades med att läsa arkivrubriker"
  3020. #: apt-inst/contrib/extracttar.cc:128
  3021. msgid "Failed to create pipes"
  3022. msgstr "Misslyckades med att skapa rör"
  3023. #: apt-inst/contrib/extracttar.cc:155
  3024. msgid "Failed to exec gzip "
  3025. msgstr "Misslyckades med att köra gzip"
  3026. #: apt-inst/contrib/extracttar.cc:192 apt-inst/contrib/extracttar.cc:222
  3027. msgid "Corrupted archive"
  3028. msgstr "Skadat arkiv"
  3029. #: apt-inst/contrib/extracttar.cc:207
  3030. msgid "Tar checksum failed, archive corrupted"
  3031. msgstr "Tar-kontrollsumma misslyckades, arkivet skadat"
  3032. #: apt-inst/contrib/extracttar.cc:312
  3033. #, c-format
  3034. msgid "Unknown TAR header type %u, member %s"
  3035. msgstr "Okänd TAR-rubriktyp %u, del %s"
  3036. #~ msgid "Total dependency version space: "
  3037. #~ msgstr "Totalt utrymme för versionsberoenden: "
  3038. #~ msgid "You don't have enough free space in %s"
  3039. #~ msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
  3040. #~ msgid "Done"
  3041. #~ msgstr "Färdig"
  3042. #~ msgid "No keyring installed in %s."
  3043. #~ msgstr "Ingen nyckelring installerad i %s."
  3044. #, fuzzy
  3045. #~ msgid "Internal error, Upgrade broke stuff"
  3046. #~ msgstr "Internt fel, AllUpgrade förstörde något"
  3047. #~ msgid "%s not a valid DEB package."
  3048. #~ msgstr "%s är inte ett giltigt DEB-paket."
  3049. #~ msgid ""
  3050. #~ "Using CD-ROM mount point %s\n"
  3051. #~ "Mounting CD-ROM\n"
  3052. #~ msgstr ""
  3053. #~ "Använder cd-rom-monteringspunkten %s\n"
  3054. #~ "Monterar cd-rom\n"
  3055. #~ msgid ""
  3056. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3057. #~ "seems to be corrupt."
  3058. #~ msgstr ""
  3059. #~ "Kunde inte patcha %s med mmap och med filoperationsanvändning - patchen "
  3060. #~ "verkar vara skadad."
  3061. #~ msgid ""
  3062. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3063. #~ "seems to be corrupt."
  3064. #~ msgstr ""
  3065. #~ "Kunde inte patcha %s med mmap (men inga mmap-specifika fel) - patchen "
  3066. #~ "verkar vara skadad."
  3067. #~ msgid "Note, selecting '%s' for task '%s'\n"
  3068. #~ msgstr "Observera, väljer \"%s\" för funktionen \"%s\"\n"
  3069. #~ msgid "Note, selecting '%s' for regex '%s'\n"
  3070. #~ msgstr "Observera, väljer \"%s\" för det reguljära uttrycket \"%s\"\n"
  3071. #~ msgid "Package %s is a virtual package provided by:\n"
  3072. #~ msgstr "Paketet %s är ett virtuellt paket som tillhandahålls av:\n"
  3073. #~ msgid " [Not candidate version]"
  3074. #~ msgstr " [Inte kandidatversion]"
  3075. #~ msgid "You should explicitly select one to install."
  3076. #~ msgstr "Du bör uttryckligen ange ett att installera."
  3077. #~ msgid ""
  3078. #~ "Package %s is not available, but is referred to by another package.\n"
  3079. #~ "This may mean that the package is missing, has been obsoleted, or\n"
  3080. #~ "is only available from another source\n"
  3081. #~ msgstr ""
  3082. #~ "Paketet %s är inte tillgängligt, men ett annat paket hänvisar till det.\n"
  3083. #~ "Det kan betyda att paketet saknas, har blivit föråldrat eller endast\n"
  3084. #~ "är tillgängligt från andra källor\n"
  3085. #~ msgid "However the following packages replace it:"
  3086. #~ msgstr "Dock kan följande paket ersätta det:"
  3087. #~ msgid "Package '%s' has no installation candidate"
  3088. #~ msgstr "Paketet \"%s\" har ingen installationskandidat"
  3089. #~ msgid "Virtual packages like '%s' can't be removed\n"
  3090. #~ msgstr "Virtuella paket som \"%s\" kan inte tas bort\n"
  3091. #~ msgid "Note, selecting '%s' instead of '%s'\n"
  3092. #~ msgstr "Observera, väljer \"%s\" istället för \"%s\"\n"
  3093. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3094. #~ msgstr "Ignorera otillgängliga målutgåvan \"%s\" av paketet \"%s\""
  3095. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3096. #~ msgstr ""
  3097. #~ "Detta är inte ett giltigt DEB-arkiv, \"%s\", \"%s\" och \"%s\" saknas"
  3098. #~ msgid "MD5Sum mismatch"
  3099. #~ msgstr "MD5-kontrollsumman stämmer inte"
  3100. #~ msgid ""
  3101. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3102. #~ "need to manually fix this package."
  3103. #~ msgstr ""
  3104. #~ "Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
  3105. #~ "manuellt måste reparera detta paket."
  3106. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3107. #~ msgstr ""
  3108. #~ "Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte "
  3109. #~ "monterad?)\n"
  3110. #~ msgid "Skipping nonexistent file %s"
  3111. #~ msgstr "Hoppar över icke-existerande filen %s"
  3112. #~ msgid "Failed to remove %s"
  3113. #~ msgstr "Misslyckades med att ta bort %s"
  3114. #~ msgid "Unable to create %s"
  3115. #~ msgstr "Kunde inte skapa %s"
  3116. #~ msgid "Failed to stat %sinfo"
  3117. #~ msgstr "Misslyckades att ta status på %sinfo"
  3118. #~ msgid "The info and temp directories need to be on the same filesystem"
  3119. #~ msgstr "Katalogerna info och temp måste vara på samma filsystem"
  3120. # Felmeddelande för misslyckad chdir
  3121. #~ msgid "Failed to change to the admin dir %sinfo"
  3122. #~ msgstr "Misslyckades att växla till adminkatalogen %sinfo"
  3123. #~ msgid "Internal error getting a package name"
  3124. #~ msgstr "Internt fel när namn på Package-fil skulle hämtas"
  3125. #~ msgid "Reading file listing"
  3126. #~ msgstr "Läser fillista"
  3127. #~ msgid ""
  3128. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3129. #~ "then make it empty and immediately re-install the same version of the "
  3130. #~ "package!"
  3131. #~ msgstr ""
  3132. #~ "Misslyckades med att öppna listfilen \"%sinfo/%s\". Om du inte kan "
  3133. #~ "återskapa filen, skapa en tom och installera omedelbart om samma version "
  3134. #~ "av paketet!"
  3135. #~ msgid "Failed reading the list file %sinfo/%s"
  3136. #~ msgstr "Misslyckades med att läsa listfilen %sinfo/%s"
  3137. #~ msgid "Internal error getting a node"
  3138. #~ msgstr "Internt fel när en nod skulle hämtas"
  3139. #~ msgid "Failed to open the diversions file %sdiversions"
  3140. #~ msgstr "Misslyckades med att öppna omdirigeringsfilen %sdiversions"
  3141. #~ msgid "The diversion file is corrupted"
  3142. #~ msgstr "Omdirigeringsfilen är skadad"
  3143. #~ msgid "Invalid line in the diversion file: %s"
  3144. #~ msgstr "Felaktig rad i omdirigeringsfilen: %s"
  3145. #~ msgid "Internal error adding a diversion"
  3146. #~ msgstr "Internt fel när en omdirigering skulle läggas till"
  3147. #~ msgid "The pkg cache must be initialized first"
  3148. #~ msgstr "Paketcachen måste först initieras"
  3149. #~ msgid "Failed to find a Package: header, offset %lu"
  3150. #~ msgstr "Misslyckades med att hitta Package:-rubrik, position %lu"
  3151. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3152. #~ msgstr "Felaktig ConfFile-sektion i statusfilen. Position %lu"
  3153. #~ msgid "Error parsing MD5. Offset %lu"
  3154. #~ msgstr "Fel vid tolkning av MD5. Position %lu"
  3155. # chdir
  3156. #~ msgid "Couldn't change to %s"
  3157. #~ msgstr "Kunde inte byta till %s"
  3158. #~ msgid "Failed to locate a valid control file"
  3159. #~ msgstr "Misslyckades med att hitta en giltig control-fil"
  3160. #~ msgid "Couldn't open pipe for %s"
  3161. #~ msgstr "Kunde inte öppna rör för %s"
  3162. # %s = programnamn
  3163. #~ msgid "Read error from %s process"
  3164. #~ msgstr "Läsfel från %s-processen"
  3165. #~ msgid "Got a single header line over %u chars"
  3166. #~ msgstr "Fick en ensam rubrikrad på %u tecken"
  3167. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3168. #~ msgstr "Observera: Detta sker med automatik och vid behov av dpkg."
  3169. # parametrar: filnamn, radnummer
  3170. #~ msgid "Malformed override %s line %lu #1"
  3171. #~ msgstr "Felaktig override %s rad %lu #1"
  3172. #~ msgid "Malformed override %s line %lu #2"
  3173. #~ msgstr "Felaktig override %s rad %lu #2"
  3174. #~ msgid "Malformed override %s line %lu #3"
  3175. #~ msgstr "Felaktig override %s rad %lu #3"
  3176. #~ msgid "decompressor"
  3177. #~ msgstr "uppackare"
  3178. #~ msgid "read, still have %lu to read but none left"
  3179. #~ msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar"
  3180. #~ msgid "write, still have %lu to write but couldn't"
  3181. #~ msgstr "skrivning, har fortfarande %lu att skriva men kunde inte"
  3182. #~ msgid ""
  3183. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3184. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3185. #~ msgstr ""
  3186. #~ "Kunde inte genomföra omedelbar konfiguration på redan uppackade \"%s\". "
  3187. #~ "Se man 5 apt.conf under APT::Immediate-Configure för information."
  3188. # NewPackage etc. är funktionsnamn
  3189. #~ msgid "Error occurred while processing %s (NewPackage)"
  3190. #~ msgstr "Fel uppstod vid hantering av %s (NewPackage)"
  3191. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3192. #~ msgstr "Fel uppstod vid hantering av %s (UsePackage1)"
  3193. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3194. #~ msgstr "Fel uppstod vid hantering av %s (NewFileDesc1)"
  3195. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3196. #~ msgstr "Fel uppstod vid hantering av %s (UsePackage2)"
  3197. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3198. #~ msgstr "Fel uppstod vid hantering av %s (NewFileVer1)"
  3199. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3200. #~ msgstr "Fel uppstod vid behandling av %s (NewVersion%d)"
  3201. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3202. #~ msgstr "Fel uppstod vid hantering av %s (UsePackage3)"
  3203. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3204. #~ msgstr "Fel uppstod vid hantering av %s (NewFileDesc2)"
  3205. # NewPackage etc. är funktionsnamn
  3206. #~ msgid "Error occurred while processing %s (FindPkg)"
  3207. #~ msgstr "Fel uppstod vid hantering av %s (FindPkg)"
  3208. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3209. #~ msgstr "Fel uppstod vid hantering av %s (CollectFileProvides)"
  3210. #~ msgid "Internal error, could not locate member"
  3211. #~ msgstr "Internt fel, kunde inte hitta del"
  3212. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3213. #~ msgstr "Internt fel, gruppen \"%s\" har inget installerbart pseudo-paket"
  3214. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3215. #~ msgstr "Release-filen har gått ut, ignorerar %s (ogiltig sedan %s)"
  3216. #~ msgid "E: Too many keyrings should be passed to gpgv. Exiting."
  3217. #~ msgstr "F: För många nyckelringar skulle skickas till gpgv. Avslutar."
  3218. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3219. #~ msgstr ""
  3220. #~ "E: Argumentslistan från Acquire::gpgv::Options är för lång. Avslutar."
  3221. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3222. #~ msgstr "Rad %u i källistan %s har fel format (leverantörs-id)"
  3223. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3224. #~ msgstr "Fel uppstod vid hantering av %s (NewVersion2)"
  3225. #~ msgid "Couldn't access keyring: '%s'"
  3226. #~ msgstr "Kunde inte komma åt nyckelring: \"%s\""
  3227. #~ msgid "Could not patch file"
  3228. #~ msgstr "Kunde inte lägga på programfix på filen"
  3229. #~ msgid " %4i %s\n"
  3230. #~ msgstr " %4i %s\n"