sv.po 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015
  1. # Copyright (C) 2007 Software in the Public Interest, Inc.
  2. # This file is distributed under the same license as the dpkg package.
  3. # Peter Karlsson <peterk@debian.org>, 2007.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: dpkg 1.14.6\n"
  8. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  9. "POT-Creation-Date: 2007-11-29 06:57+0200\n"
  10. "PO-Revision-Date: 2007-11-30 19:37+0100\n"
  11. "Last-Translator: Peter Karlsson <peterk@debian.org>\n"
  12. "Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=iso-8859-1\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "Plural-Forms: nplurals=2; plural=n!=1;"
  17. #: scripts/822-date.pl:12
  18. msgid "Usage: 822-date"
  19. msgstr "Använd: 822-date"
  20. #: scripts/822-date.pl:14
  21. msgid "This program is deprecated. Please use 'date -R' instead."
  22. msgstr "Detta program rekommenderas ej. Använd \"date -R\" istället."
  23. #: scripts/controllib.pl:58 scripts/controllib.pl:63
  24. #, perl-format
  25. msgid "unable to get login information for username \"%s\""
  26. msgstr "kan inte hämta inloggningsinformation för användar-id \"%s\""
  27. #: scripts/controllib.pl:66
  28. #, perl-format
  29. msgid ""
  30. "no utmp entry available and LOGNAME not defined; using uid of process (%d)"
  31. msgstr ""
  32. "hittar ingen post i utmp och LOGNAME är inte definierat; använder användar-"
  33. "id av process (%d)"
  34. #: scripts/controllib.pl:70
  35. #, perl-format
  36. msgid "unable to get login information for uid %d"
  37. msgstr "kan inte hämta inloggningsinformation för användar-id %d"
  38. #: scripts/controllib.pl:91
  39. #, perl-format
  40. msgid "too many substitutions - recursive ? - in `%s'"
  41. msgstr "för många substitueringar - rekursivt? - i \"%s\""
  42. #: scripts/controllib.pl:97
  43. #, perl-format
  44. msgid "unknown substitution variable ${%s}"
  45. msgstr "okänd substitueringsvariabel ${%s}"
  46. #: scripts/controllib.pl:120
  47. #, perl-format
  48. msgid "field %s has newline then non whitespace >%s<"
  49. msgstr "fält %s har radbrytning följt av icke-blanksteg \"%s\""
  50. #: scripts/controllib.pl:123
  51. #, perl-format
  52. msgid "field %s has blank lines >%s<"
  53. msgstr "fält %s har blanka rader \"%s\""
  54. #: scripts/controllib.pl:125
  55. #, perl-format
  56. msgid "field %s has trailing newline >%s<"
  57. msgstr "fält %s har avslutande radbrytning \"%s\""
  58. #: scripts/controllib.pl:132
  59. msgid "write error on control data"
  60. msgstr "skrivfel i styrdata"
  61. #: scripts/controllib.pl:135
  62. msgid "write error on close control data"
  63. msgstr "skrivfel vid stängning av styrdata"
  64. #: scripts/controllib.pl:144
  65. #, perl-format
  66. msgid "cannot read control file %s: %s"
  67. msgstr "kan inte läsa styrfil %s: %s"
  68. #: scripts/controllib.pl:147
  69. #, perl-format
  70. msgid "control file %s"
  71. msgstr "styrfil %s"
  72. #: scripts/controllib.pl:148
  73. msgid "control file must have at least one binary package part"
  74. msgstr "styrfil måste innehålla åtminstone en binär del"
  75. #: scripts/controllib.pl:152
  76. #, perl-format
  77. msgid "per-package paragraph %d in control info file is missing Package line"
  78. msgstr "per-paket-stycke %d i styrinfofilen saknar Package-rad"
  79. #: scripts/controllib.pl:156
  80. msgid "source paragraph in control info file is missing Source line"
  81. msgstr "källkodsstycke i styrinfofilen saknar Source-rad"
  82. #: scripts/controllib.pl:173
  83. #, perl-format
  84. msgid "bad line in substvars file %s at line %d"
  85. msgstr "felaktig rad i substvars-filen %s på rad %d"
  86. #: scripts/controllib.pl:179
  87. #, perl-format
  88. msgid "unable to open substvars file %s: %s"
  89. msgstr "kan inte öppna substvars-fil %s: %s"
  90. #: scripts/controllib.pl:188
  91. msgid "fork for parse changelog"
  92. msgstr "grenar av för att tolka ändringslogg"
  93. #: scripts/controllib.pl:191 scripts/dpkg-genchanges.pl:282
  94. #: scripts/dpkg-gencontrol.pl:222 scripts/dpkg-source.pl:385
  95. msgid "parsed version of changelog"
  96. msgstr "tolkad version av ändringslogg"
  97. #: scripts/controllib.pl:193
  98. msgid "parse changelog"
  99. msgstr "tolkar ändringslogg"
  100. #: scripts/controllib.pl:232
  101. #, perl-format
  102. msgid "source package name `%s' contains illegal character `%s'"
  103. msgstr "namnet på källkodspaketet \"%s\" innehåller ogiltigt tecken \"%s\""
  104. #: scripts/controllib.pl:235
  105. #, perl-format
  106. msgid "source package name `%s' starts with non-alphanum"
  107. msgstr "namnet på källkodspaketet \"%s\" börjar med icke-alfanumeriskt tecken"
  108. #: scripts/controllib.pl:241
  109. #, perl-format
  110. msgid "version number contains illegal character `%s'"
  111. msgstr "versionsnummer innehåller ogiltigt tecken \"%s\""
  112. #: scripts/controllib.pl:250
  113. #, perl-format
  114. msgid "source package has two conflicting values - %s and %s"
  115. msgstr "källkodspaketet har två emotsägande värden - %s och %s"
  116. #: scripts/controllib.pl:260
  117. #, perl-format
  118. msgid "md5sum gave bogus output `%s'"
  119. msgstr "md5sum gav felaktig utdata \"%s\""
  120. #: scripts/controllib.pl:292
  121. msgid "continued value line not in field"
  122. msgstr "fortsatt värderad inte i fält"
  123. #: scripts/controllib.pl:295
  124. msgid "expected blank line before PGP signature"
  125. msgstr "förväntade tomrad före PGP-signaturen"
  126. #: scripts/controllib.pl:307
  127. msgid "expected PGP signature, found EOF after blank line"
  128. msgstr "förväntade PGP-signatur, hittade filslut efter tomrad"
  129. #: scripts/controllib.pl:310
  130. #, perl-format
  131. msgid "expected PGP signature, found something else `%s'"
  132. msgstr "förväntade PGP-signatur, hittade något annat \"%s\""
  133. #: scripts/controllib.pl:315
  134. msgid "found several `paragraphs' where only one expected"
  135. msgstr "hittade flera \"stycken\" där endast ett förväntades"
  136. #: scripts/controllib.pl:319
  137. msgid "line with unknown format (not field-colon-value)"
  138. msgstr "rad med okänt format (inte fält-kolon-värde)"
  139. #: scripts/controllib.pl:322
  140. msgid "found start of PGP body but no signature"
  141. msgstr "hittade inledning av PGP-kropp men ingen signatur"
  142. #: scripts/controllib.pl:324
  143. msgid "empty file"
  144. msgstr "tom fil"
  145. #: scripts/controllib.pl:329
  146. #, perl-format
  147. msgid "syntax error in %s at line %d: %s"
  148. msgstr "syntaxfel i %s på rad %d: %s"
  149. #: scripts/dpkg-architecture.pl:35 scripts/dpkg-buildpackage.pl:21
  150. #: scripts/dpkg-distaddfile.pl:21 scripts/dpkg-genchanges.pl:70
  151. #: scripts/dpkg-gencontrol.pl:50 scripts/dpkg-gensymbols.pl:36
  152. #: scripts/dpkg-parsechangelog.pl:24 scripts/dpkg-scanpackages.pl:51
  153. #: scripts/dpkg-scansources.pl:96 scripts/dpkg-shlibdeps.pl:344
  154. #: scripts/dpkg-source.pl:143 scripts/changelog/debian.pl:31
  155. #, perl-format
  156. msgid "Debian %s version %s.\n"
  157. msgstr "Debian %s version %s.\n"
  158. #: scripts/dpkg-architecture.pl:37
  159. msgid ""
  160. "\n"
  161. "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  162. "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  163. msgstr ""
  164. "\n"
  165. "Copyright © 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  166. "Copyright © 2004-2005 Scott James Remnant <scott@netsplit.com>."
  167. #: scripts/dpkg-architecture.pl:41 scripts/dpkg-buildpackage.pl:28
  168. #: scripts/dpkg-distaddfile.pl:26 scripts/dpkg-genchanges.pl:76
  169. #: scripts/dpkg-gencontrol.pl:56 scripts/dpkg-gensymbols.pl:42
  170. #: scripts/dpkg-parsechangelog.pl:30 scripts/dpkg-shlibdeps.pl:353
  171. #: scripts/dpkg-source.pl:148 scripts/changelog/debian.pl:35
  172. msgid ""
  173. "\n"
  174. "This is free software; see the GNU General Public Licence version 2 or\n"
  175. "later for copying conditions. There is NO warranty.\n"
  176. msgstr ""
  177. "\n"
  178. "Detta program är fri programvara. Se GNU General Public License version 2\n"
  179. "eller senare för kopieringsvillkor. Det finns INGEN garanti.\n"
  180. #: scripts/dpkg-architecture.pl:49
  181. #, perl-format
  182. msgid ""
  183. "Usage: %s [<option> ...] [<action>]\n"
  184. "\n"
  185. "Options:\n"
  186. " -a<debian-arch> set current Debian architecture.\n"
  187. " -t<gnu-system> set current GNU system type.\n"
  188. " -L list valid architectures.\n"
  189. " -f force flag (override variables set in environment).\n"
  190. "\n"
  191. "Actions:\n"
  192. " -l list variables (default).\n"
  193. " -e<debian-arch> compare with current Debian architecture.\n"
  194. " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
  195. " -q<variable> prints only the value of <variable>.\n"
  196. " -s print command to set environment variables.\n"
  197. " -u print command to unset environment variables.\n"
  198. " -c <command> set environment and run the command in it.\n"
  199. " --help show this help message.\n"
  200. " --version show the version.\n"
  201. msgstr ""
  202. "Användning: %s [<flagga> ...] [<åtgärd>]\n"
  203. "\n"
  204. "Flaggor:\n"
  205. " -a<debian-ark> välj aktuell Debianarkitektur.\n"
  206. " -t<gnu-system> välj aktuell GNU-systemtyp.\n"
  207. " -L visa giltiga arkitekturer.\n"
  208. " -f tvingande flagga (överstyr variabler satta i miljön).\n"
  209. "\n"
  210. "Åtgärder:\n"
  211. " -l lista variabler (standardfunktion).\n"
  212. " -e<debian-ark> jämför med nuvarande Debianarkitektur.\n"
  213. " -i<ark-alias> kontrollera om nuvarande Debianarkitektur är <ark-"
  214. "alias>.\n"
  215. " -q<variabel> skriver bara ut värdet på <variabel>.\n"
  216. " -s skriv kommandon för att sätta miljövariabler.\n"
  217. " -u skriv kommandon för att ta bort värde från "
  218. "miljövariabler.\n"
  219. " -c <kommando> ställ in miljö och kör kommandot i den.\n"
  220. " --help visa detta hjälpmeddelande.\n"
  221. " --version visa versionsnummer.\n"
  222. #: scripts/dpkg-architecture.pl:120 scripts/dpkg-distaddfile.pl:54
  223. #: scripts/dpkg-genchanges.pl:161 scripts/dpkg-gencontrol.pl:131
  224. #: scripts/dpkg-gensymbols.pl:108 scripts/dpkg-shlibdeps.pl:78
  225. #: scripts/dpkg-source.pl:273 scripts/changelog/debian.pl:64
  226. #, perl-format
  227. msgid "unknown option `%s'"
  228. msgstr "okänd flagga \"%s\""
  229. #: scripts/dpkg-architecture.pl:143
  230. #, perl-format
  231. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  232. msgstr "okänd Debianarkitektur %s, du måste också ange en GNU-systemtyp"
  233. #: scripts/dpkg-architecture.pl:150
  234. #, perl-format
  235. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  236. msgstr "okänd GNU-systemtyp %s, du måste också ange en Debianarkitektur"
  237. #: scripts/dpkg-architecture.pl:157
  238. #, perl-format
  239. msgid "unknown default GNU system type for Debian architecture %s"
  240. msgstr "okänd förvald GNU-systemtyp för Debianarkitektur %s"
  241. #: scripts/dpkg-architecture.pl:160
  242. #, perl-format
  243. msgid ""
  244. "Default GNU system type %s for Debian arch %s does not match specified GNU "
  245. "system type %s"
  246. msgstr ""
  247. "Förvald GNU-systemtyp %s för Debianarkitekturen %s stämmer inte med den "
  248. "angivna GNU-systemtypen %s"
  249. #: scripts/dpkg-architecture.pl:171
  250. #, perl-format
  251. msgid "Specified GNU system type %s does not match gcc system type %s."
  252. msgstr "Angiven GNU-systemtyp %s stämmer inte med gcc-systemtypen %s."
  253. #: scripts/dpkg-architecture.pl:210
  254. #, perl-format
  255. msgid "%s is not a supported variable name"
  256. msgstr "%s är inte ett variabelnamn som stöds"
  257. #: scripts/dpkg-buildpackage.pl:23
  258. msgid ""
  259. "\n"
  260. "Copyright (C) 1996 Ian Jackson.\n"
  261. "Copyright (C) 2000 Wichert Akkerman\n"
  262. "Copyright (C) 2007 Frank Lichtenheld"
  263. msgstr ""
  264. "\n"
  265. "Copyright © 1996 Ian Jackson.\n"
  266. "Copyright © 2000 Wichert Akkerman.\n"
  267. "Copyright © 2007 Frank Lichtenheld."
  268. #: scripts/dpkg-buildpackage.pl:35
  269. #, perl-format
  270. msgid ""
  271. "\n"
  272. "Usage: %s [<options> ...]\n"
  273. "\n"
  274. "Options:\n"
  275. " -r<gain-root-command>\n"
  276. " command to gain root privileges (default is fakeroot).\n"
  277. " -p<sign-command>\n"
  278. " -d do not check build dependencies and conflicts.\n"
  279. " -D check build dependencies and conflicts.\n"
  280. " -j[<number>] specify jobs to run simultaneously } passed to debian/"
  281. "rules\n"
  282. " -k<keyid> the key to use for signing.\n"
  283. " -sgpg the sign-command is called like GPG.\n"
  284. " -spgp the sign-command is called like PGP.\n"
  285. " -us unsigned source.\n"
  286. " -uc unsigned changes.\n"
  287. " -a<arch> Debian architecture we build for (implies -d).\n"
  288. " -b binary-only, do not build source. } also passed to\n"
  289. " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
  290. " -S source only, no binary files. }\n"
  291. " -t<system> set GNU system type. } passed to dpkg-"
  292. "architecture\n"
  293. " -v<version> changes since version <version>. }\n"
  294. " -m<maint> maintainer for package is <maint>. }\n"
  295. " -e<maint> maintainer for release is <maint>. } only passed\n"
  296. " -C<descfile> changes are described in <descfile>. } to dpkg-genchanges\n"
  297. " -si (default) src includes orig for rev. 0 or 1. }\n"
  298. " -sa uploaded src always includes orig. }\n"
  299. " -sd uploaded src is diff and .dsc only. }\n"
  300. " -sn force Debian native source format. }\n"
  301. " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
  302. " -z<level> compression level of source } to dpkg-source\n"
  303. " -Z(gz|bz2|lzma) compression to use for source }\n"
  304. " -nc do not clean source tree (implies -b).\n"
  305. " -tc clean source tree when finished.\n"
  306. " -ap add pause before starting signature process.\n"
  307. " -E turn certain warnings into errors. } passed to\n"
  308. " -W when -E is turned on, -W turns it off. } dpkg-source\n"
  309. " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
  310. " -I[<pattern>] filter out files when building tarballs. } to dpkg-source\n"
  311. " --admindir=<directory>\n"
  312. " change the administrative directory.\n"
  313. " -h, --help show this help message.\n"
  314. " --version show the version.\n"
  315. msgstr ""
  316. "\n"
  317. "Använd: %s [<flaggor> ...]\n"
  318. "\n"
  319. "Flaggor:\n"
  320. " -r<få-root-kommando>\n"
  321. " kommando för att få root-behörighet (standard är "
  322. "fakeroot).\n"
  323. " -p<signeringskommando>\n"
  324. " -d kontrollera inte byggberoenden och -konflikter.\n"
  325. " -D kontrollera byggberoenden och -konflikter.\n"
  326. " -j[<antal>] ange antal jobb att köra samtidigt } sänds till debian/"
  327. "rules\n"
  328. " -k<nyckelid> nyckeln som skall användas vid signering.\n"
  329. " -sgpg signeringskommandot anropas som GPG.\n"
  330. " -spgp signeringskommandot anropas som PGP.\n"
  331. " -us osignerad källkod.\n"
  332. " -uc osignerad changes-fil.\n"
  333. " -a<arch> Debianarkitektur vi bygger för (implicerar -d).\n"
  334. " -b endast binär, bygger inte källkod. } sänds även till\n"
  335. " -B endast binär, inga ark-ober. filer. } dpkg-genchanges\n"
  336. " -S endast källkod, inga binärfiler }\n"
  337. " -t<system> välj GNU-systemtyp. } sänds till dpkg-"
  338. "architecture\n"
  339. " -v<version> ändringar sedan version <version>. }\n"
  340. " -m<ansvarig> ansvarig för paketet är <ansvarig>. }\n"
  341. " -e<ansvarig> ansvarig för utgivningen är <maint>. } sänds bara\n"
  342. " -C<ändrfil> ändringar beskrivs i <ändrfil>. } till dpkg-"
  343. "genchanges\n"
  344. " -si (standard) källk. innehåller orig. för rev. 0/1. }\n"
  345. " -sa insänd källkod innehåller alltid orig.}\n"
  346. " -sd insänd källkod är endast diff och .dsc}\n"
  347. " -sn tvinga Debianeget källkodsformat. }\n"
  348. " -s[sAkurKUR] se dpkg-source för förklaring. } sänds bara\n"
  349. " -z<nivå> komprimeringsnivå för källkod. } till dpkg-source\n"
  350. " -Z(gz|bz2|lzma) komprimering att använda för källkod. }\n"
  351. " -nc städa inte källkodsträd (implicerar -b).\n"
  352. " -tc städa källkodsträd när färdig.\n"
  353. " -ap lägg in paus innan signaturprocessen startas.\n"
  354. " -W gör vissa fel till varningar. } sänds till\n"
  355. " -E När -W är påslaget slår -E av det. } dpkg-source\n"
  356. " -i[<reg.uttr>] ignorerar diff på filer som motsv. reg.uttr. } sänds bara\n"
  357. " -I<filnamn> filtrera ut filer när tarboll byggs. } t. dpkg-"
  358. "source\n"
  359. " --admindir=<katalog>\n"
  360. " välj administrativ katalog.\n"
  361. " -h, --help visa detta hjälpmeddelande.\n"
  362. " --version visa versionsnummer.\n"
  363. #: scripts/dpkg-buildpackage.pl:159 scripts/dpkg-buildpackage.pl:169
  364. #: scripts/dpkg-buildpackage.pl:176 scripts/dpkg-buildpackage.pl:182
  365. #, perl-format
  366. msgid "cannot combine %s and %s"
  367. msgstr "kan inte kombinera %s och %s"
  368. #: scripts/dpkg-buildpackage.pl:199
  369. #, perl-format
  370. msgid "unknown option or argument %s"
  371. msgstr "okänd flagga eller argument %s"
  372. #: scripts/dpkg-buildpackage.pl:204
  373. msgid "using a gain-root-command while being root"
  374. msgstr "använder ett gain-root-command fast jag redan är root"
  375. #: scripts/dpkg-buildpackage.pl:210
  376. msgid ""
  377. "fakeroot not found, either install the fakeroot\n"
  378. "package, specify a command with the -r option, or run this as root"
  379. msgstr ""
  380. "fakroot hittades inte, du kan installera paketet fakeroot,\n"
  381. "ange ett kommando med flaggan -r, eller köra som root"
  382. #: scripts/dpkg-buildpackage.pl:214
  383. #, perl-format
  384. msgid "gain-root-commmand '%s' not found"
  385. msgstr "få-root-kommandot \"%s\" hittades inte"
  386. #: scripts/dpkg-buildpackage.pl:232
  387. msgid "unknown sign command, assuming pgp style interface"
  388. msgstr "okänt signeringskommando, antar pgp-gränssnittstyp"
  389. #: scripts/dpkg-buildpackage.pl:269
  390. #, perl-format
  391. msgid "unable to determine %s"
  392. msgstr "kan inte bestämma %s"
  393. #: scripts/dpkg-buildpackage.pl:276
  394. msgid "source package"
  395. msgstr "källkodspaket"
  396. #: scripts/dpkg-buildpackage.pl:277
  397. msgid "source version"
  398. msgstr "källkodsversion"
  399. #: scripts/dpkg-buildpackage.pl:286
  400. msgid "source changed by"
  401. msgstr "källkod ändrad av"
  402. #: scripts/dpkg-buildpackage.pl:304
  403. msgid "host architecture"
  404. msgstr "värdarkitektur"
  405. #: scripts/dpkg-buildpackage.pl:354
  406. msgid "Build dependencies/conflicts unsatisfied; aborting."
  407. msgstr "Byggberoenden/-konflikter ej uppfyllda; avbryter."
  408. #: scripts/dpkg-buildpackage.pl:355
  409. msgid "(Use -d flag to override.)"
  410. msgstr "(Använd flaggan -d för att överstyra.)"
  411. #: scripts/dpkg-buildpackage.pl:377
  412. msgid "Press the return key to start signing process\n"
  413. msgstr "Tryck på Enter för att inleda signeringsproceduren\n"
  414. #: scripts/dpkg-buildpackage.pl:384
  415. msgid "Failed to sign .dsc and .changes file"
  416. msgstr "Misslyckades att signera .dsc- och .changes-filerna"
  417. #: scripts/dpkg-buildpackage.pl:405 scripts/dpkg-buildpackage.pl:409
  418. #: scripts/dpkg-buildpackage.pl:422
  419. msgid "write changes file"
  420. msgstr "skriv ändringsfil"
  421. #: scripts/dpkg-buildpackage.pl:421
  422. msgid "dpkg-genchanges"
  423. msgstr "dpkg-genchanges"
  424. #: scripts/dpkg-buildpackage.pl:434
  425. msgid "source only upload: Debian-native package"
  426. msgstr "insändning med endast källkod: Debianeget paket"
  427. #: scripts/dpkg-buildpackage.pl:436
  428. msgid "source only, diff-only upload (original source NOT included)"
  429. msgstr ""
  430. "insändning enbart med källkod, enbart med diff (originalkällkod tas EJ med)"
  431. #: scripts/dpkg-buildpackage.pl:438
  432. msgid "source only upload (original source is included)"
  433. msgstr "insändning enbart med källkod (originalkällkod tas med)"
  434. #: scripts/dpkg-buildpackage.pl:441 scripts/dpkg-buildpackage.pl:449
  435. msgid "full upload (original source is included)"
  436. msgstr "komplett insändning (originalkällkod tas med)"
  437. #: scripts/dpkg-buildpackage.pl:443
  438. msgid "binary only upload (no source included)"
  439. msgstr "endast binär insändning (ingen källkod tas med)"
  440. #: scripts/dpkg-buildpackage.pl:445
  441. msgid "full upload; Debian-native package (full source is included)"
  442. msgstr "komplett insändnig; Debianeget paket (komplett källkod tas med)"
  443. #: scripts/dpkg-buildpackage.pl:447
  444. msgid "binary and diff upload (original source NOT included)"
  445. msgstr "binär- och diffinsändning (originalkällkod tas EJ med)"
  446. #: scripts/dpkg-buildpackage.pl:454
  447. msgid "Failed to sign .changes file"
  448. msgstr "Misslyckades att signera .changes-fil"
  449. #: scripts/dpkg-checkbuilddeps.pl:23
  450. #, perl-format
  451. msgid ""
  452. "Usage: %s [<option> ...] [<control-file>]\n"
  453. "\n"
  454. "Options:\n"
  455. " control-file control file to process (default: debian/control).\n"
  456. " -B binary-only, ignore -Indep.\n"
  457. " --admindir=<directory>\n"
  458. " change the administrative directory.\n"
  459. " -h show this help message.\n"
  460. msgstr ""
  461. "Använd: %s [<flagga> ...] [<control-fil>]\n"
  462. "\n"
  463. "Flaggor:\n"
  464. " control-fil control-fil att behandla (standard: debian/control).\n"
  465. " -B endast binärer, ignorera -Indep.\n"
  466. " --admindir=<katalog>\n"
  467. " välj administrativ katalog.\n"
  468. " -h visa detta hjälpmeddelande.\n"
  469. #: scripts/dpkg-checkbuilddeps.pl:77
  470. #, perl-format
  471. msgid "%s: Unmet build dependencies: "
  472. msgstr "%s: Ej uppfyllda byggberoenden: "
  473. #: scripts/dpkg-checkbuilddeps.pl:81
  474. #, perl-format
  475. msgid "%s: Build conflicts: "
  476. msgstr "%s: Byggkonflikter: "
  477. #: scripts/dpkg-checkbuilddeps.pl:157 scripts/dpkg-gencontrol.pl:263
  478. #: scripts/dpkg-gencontrol.pl:270 scripts/dpkg-source.pl:324
  479. #, perl-format
  480. msgid "error occurred while parsing %s"
  481. msgstr "fel vid tolkning av %s"
  482. #: scripts/dpkg-distaddfile.pl:23 scripts/changelog/debian.pl:33
  483. msgid ""
  484. "\n"
  485. "Copyright (C) 1996 Ian Jackson."
  486. msgstr ""
  487. "\n"
  488. "Copyright © 1996 Ian Jackson."
  489. #: scripts/dpkg-distaddfile.pl:34
  490. #, perl-format
  491. msgid ""
  492. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  493. "\n"
  494. "Options:\n"
  495. " -f<fileslistfile> write files here instead of debian/files.\n"
  496. " -h, --help show this help message.\n"
  497. " --version show the version.\n"
  498. msgstr ""
  499. "Använd: %s [<flagga>...] <filnamn> <sektion> <prioritet>\n"
  500. "\n"
  501. "Flaggor:\n"
  502. " -f<fillistfil> skriver filer här istället för debian/files.\n"
  503. " -h, --help visa detta hjälpmeddelande.\n"
  504. " --version visa versionsnummer.\n"
  505. #: scripts/dpkg-distaddfile.pl:58
  506. msgid "need exactly a filename, section and priority"
  507. msgstr "behöver exakt ett filnamn, en sektion och en prioritet"
  508. #: scripts/dpkg-distaddfile.pl:62
  509. msgid "filename, section and priority may contain no whitespace"
  510. msgstr "filnamn, sektion och prioritet kan inte innehålla blanktecken"
  511. #: scripts/dpkg-distaddfile.pl:65 scripts/dpkg-gencontrol.pl:335
  512. msgid "open new files list file"
  513. msgstr "öppnar ny fillistfil"
  514. #: scripts/dpkg-distaddfile.pl:67 scripts/dpkg-gencontrol.pl:338
  515. msgid "chown new files list file"
  516. msgstr "byt ägare ny fillistfil"
  517. #: scripts/dpkg-distaddfile.pl:72 scripts/dpkg-gencontrol.pl:348
  518. msgid "copy old entry to new files list file"
  519. msgstr "kopiera gammal post till ny fillistfil"
  520. #: scripts/dpkg-distaddfile.pl:75 scripts/dpkg-gencontrol.pl:352
  521. msgid "read old files list file"
  522. msgstr "läs gammal fillistfil"
  523. #: scripts/dpkg-distaddfile.pl:78 scripts/dpkg-gencontrol.pl:361
  524. msgid "write new entry to new files list file"
  525. msgstr "skriv ny post i ny fillistfil"
  526. #: scripts/dpkg-distaddfile.pl:79 scripts/dpkg-gencontrol.pl:362
  527. msgid "close new files list file"
  528. msgstr "stäng ny fillistfil"
  529. #: scripts/dpkg-genchanges.pl:72
  530. msgid ""
  531. "\n"
  532. "Copyright (C) 1996 Ian Jackson.\n"
  533. "Copyright (C) 2000,2001 Wichert Akkerman."
  534. msgstr ""
  535. "\n"
  536. "Copyright © 1996 Ian Jackson.\n"
  537. "Copyright © 2000,2001 Wichert Akkerman."
  538. #: scripts/dpkg-genchanges.pl:84
  539. #, perl-format
  540. msgid ""
  541. "Usage: %s [<option> ...]\n"
  542. "\n"
  543. "Options:\n"
  544. " -b binary-only build - no source files.\n"
  545. " -B arch-specific - no source or arch-indep files.\n"
  546. " -S source-only upload.\n"
  547. " -c<controlfile> get control info from this file.\n"
  548. " -l<changelogfile> get per-version info from this file.\n"
  549. " -f<fileslistfile> get .deb files list from this file.\n"
  550. " -v<sinceversion> include all changes later than version.\n"
  551. " -C<changesdescription> use change description from this file.\n"
  552. " -m<maintainer> override control's maintainer value.\n"
  553. " -e<maintainer> override changelog's maintainer value.\n"
  554. " -u<uploadfilesdir> directory with files (default is `..').\n"
  555. " -si (default) src includes orig for debian-revision 0 or 1.\n"
  556. " -sa source includes orig src.\n"
  557. " -sd source is diff and .dsc only.\n"
  558. " -q quiet - no informational messages on stderr.\n"
  559. " -F<changelogformat> force change log format.\n"
  560. " -V<name>=<value> set a substitution variable.\n"
  561. " -T<varlistfile> read variables here, not debian/substvars.\n"
  562. " -D<field>=<value> override or add a field and value.\n"
  563. " -U<field> remove a field.\n"
  564. " -h, --help show this help message.\n"
  565. " --version show the version.\n"
  566. msgstr ""
  567. "Använd: %s [<flagga> ...]\n"
  568. "\n"
  569. "Flaggor:\n"
  570. " -b bygg endast binärer - inga källkodsfiler.\n"
  571. " -B arkitekturspecifik - ingen källkod eller\n"
  572. " arkitekturoberoende filer.\n"
  573. " -S endast källkod.\n"
  574. " -c<control-fil> hämta styrinformation från denna fil.\n"
  575. " -l<ändringsloggfil> hämta per-version-information från denna fil.\n"
  576. " -f<fillistfil> hämta .deb-fillistan från denna fil.\n"
  577. " -v<sedanversion> ta med alla ändringar senare än denna version.\n"
  578. " -C<ändringsbeskrivning> använd ändringsbeskrivning från denna fil.\n"
  579. " -m<ansvarig> överstyr ansvarigvärde från styrfilen.\n"
  580. " -e<ansvarig> överstyr ansvarigvärde från ändringsloggen.\n"
  581. " -u<insändningskatalog> katalog med filer (standard är \"..\").\n"
  582. " -si (standard) källa har orig för debianrevision 0 och 1.\n"
  583. " -sa källa innehåller orig-källa.\n"
  584. " -sd källa är diff och endast .dsc.\n"
  585. " -q tyst - inga informationsmeddelanden på std fel.\n"
  586. " -F<ändringsloggformat> tvinga ändringsloggformat.\n"
  587. " -V<namn>=<värde> ställ in en substitueringsvariabel.\n"
  588. " -T<varlistfil> läs variabler härifrån, inte debian/substvars.\n"
  589. " -D<fält>=<värde> överstyr eller lägg till ett fält eller värde.\n"
  590. " -U<fält> ta bort ett fält.\n"
  591. " -h, --help visa detta hjälpmeddelande.\n"
  592. " --version visa versionsnummer.\n"
  593. #: scripts/dpkg-genchanges.pl:116 scripts/dpkg-genchanges.pl:119
  594. #: scripts/dpkg-genchanges.pl:124
  595. msgid "cannot combine -b or -B and -S"
  596. msgstr "kan inte kombinera -b eller -B och -S"
  597. #: scripts/dpkg-genchanges.pl:122
  598. #, perl-format
  599. msgid "%s: arch-specific upload - not including arch-independent packages"
  600. msgstr ""
  601. "%s: arkitekturspecifik insändning - inkluderar inte ark.-oberoende paket"
  602. #: scripts/dpkg-genchanges.pl:170
  603. msgid "cannot read files list file"
  604. msgstr "kan inte läsa fillistfil"
  605. #: scripts/dpkg-genchanges.pl:174
  606. #, perl-format
  607. msgid "duplicate files list entry for package %s (line %d)"
  608. msgstr "duplicerad fillistpost för paketet %s (rad %d)"
  609. #: scripts/dpkg-genchanges.pl:181 scripts/dpkg-genchanges.pl:194
  610. #, perl-format
  611. msgid "duplicate files list entry for file %s (line %d)"
  612. msgstr "duplicerad fillistpost för filen %s (rad %d)"
  613. #: scripts/dpkg-genchanges.pl:200
  614. #, perl-format
  615. msgid "badly formed line in files list file, line %d"
  616. msgstr "felformaterad rad i fillistfilen, rad %d"
  617. #: scripts/dpkg-genchanges.pl:221 scripts/dpkg-gencontrol.pl:176
  618. #: scripts/dpkg-source.pl:332
  619. msgid "general section of control info file"
  620. msgstr "allmän sektion i styrinfofilen"
  621. #: scripts/dpkg-genchanges.pl:231
  622. #, perl-format
  623. msgid "package %s in control file but not in files list"
  624. msgstr "paketet %s i styrinfofilen men inte i fillistfilen"
  625. #: scripts/dpkg-genchanges.pl:269 scripts/dpkg-gencontrol.pl:207
  626. #: scripts/dpkg-source.pl:372
  627. msgid "package's section of control info file"
  628. msgstr "paketets sektion av styrinfofilen"
  629. #: scripts/dpkg-genchanges.pl:286 scripts/dpkg-gencontrol.pl:226
  630. #: scripts/dpkg-source.pl:389
  631. #, perl-format
  632. msgid "value from nowhere, with key >%s< and value >%s<"
  633. msgstr "värde från ingenstans med nyckel \"%s\" och värde \"%s\""
  634. #: scripts/dpkg-genchanges.pl:294
  635. msgid "read changesdescription"
  636. msgstr "läs ändringsbeskrivning"
  637. #: scripts/dpkg-genchanges.pl:305
  638. #, perl-format
  639. msgid "package %s listed in files list but not in control info"
  640. msgstr "paketet %s listat i fillista men inte i styrinfo"
  641. #: scripts/dpkg-genchanges.pl:316
  642. #, perl-format
  643. msgid "missing Section for binary package %s; using '-'"
  644. msgstr "\"Section\" saknas för binärpaket %s; använder \"-\""
  645. #: scripts/dpkg-genchanges.pl:318
  646. #, perl-format
  647. msgid "package %s has section %s in control file but %s in files list"
  648. msgstr "paketet %s har sektionen %s i styrinfofilen men %s i fillistan"
  649. #: scripts/dpkg-genchanges.pl:325
  650. #, perl-format
  651. msgid "missing Priority for binary package %s; using '-'"
  652. msgstr "\"Priority\" saknas för binärpaketet %s; använder \"-\""
  653. #: scripts/dpkg-genchanges.pl:327
  654. #, perl-format
  655. msgid "package %s has priority %s in control file but %s in files list"
  656. msgstr "paketet %s har prioritet %s i styrfilen men %s i fillistan"
  657. #: scripts/dpkg-genchanges.pl:341
  658. msgid "missing Section for source files"
  659. msgstr "\"Section\" saknas för källfiler"
  660. #: scripts/dpkg-genchanges.pl:346
  661. msgid "missing Priority for source files"
  662. msgstr "\"Priority\" saknas för källfiler"
  663. #: scripts/dpkg-genchanges.pl:351 scripts/dpkg-source.pl:797
  664. #: scripts/dpkg-source.pl:828
  665. #, perl-format
  666. msgid "cannot open .dsc file %s: %s"
  667. msgstr "kan inte öppna .dsc-filen %s: %s"
  668. #: scripts/dpkg-genchanges.pl:354 scripts/dpkg-source.pl:829
  669. #, perl-format
  670. msgid "source control file %s"
  671. msgstr "källstyrfilen %s"
  672. #: scripts/dpkg-genchanges.pl:360 scripts/dpkg-source.pl:868
  673. #, perl-format
  674. msgid "Files field contains bad line `%s'"
  675. msgstr "Files-fältet innehåller felaktig rad \"%s\""
  676. #: scripts/dpkg-genchanges.pl:372
  677. msgid "not including original source code in upload"
  678. msgstr "tar inte med ursprunglig källkod i denna insändning"
  679. #: scripts/dpkg-genchanges.pl:376
  680. msgid "ignoring -sd option for native Debian package"
  681. msgstr "ignorerar flaggan -sd för Debianspecifikt paket"
  682. #: scripts/dpkg-genchanges.pl:378
  683. msgid "including full source code in upload"
  684. msgstr "sänder med komplett källkod med denna insändning"
  685. #: scripts/dpkg-genchanges.pl:381
  686. msgid "binary-only upload - not including any source code"
  687. msgstr "endast binär insändning - tar inte med någon källkod"
  688. #: scripts/dpkg-genchanges.pl:385
  689. msgid "write original source message"
  690. msgstr "skriver meddelande om originalkällkod"
  691. #: scripts/dpkg-genchanges.pl:411
  692. #, perl-format
  693. msgid "cannot open upload file %s for reading"
  694. msgstr "kan inte öppna insändningsfilen %s för läsning"
  695. #: scripts/dpkg-genchanges.pl:412
  696. #, perl-format
  697. msgid "cannot fstat upload file %s"
  698. msgstr "kan inte ta status (fstat) på insändningsfilen %s"
  699. #: scripts/dpkg-genchanges.pl:414
  700. #, perl-format
  701. msgid "upload file %s is empty"
  702. msgstr "insändningsfilen %s är tom"
  703. #: scripts/dpkg-genchanges.pl:416
  704. #, perl-format
  705. msgid "md5sum upload file %s"
  706. msgstr "beräkna md5-summa för insändningsfilen %s"
  707. #: scripts/dpkg-genchanges.pl:418
  708. #, perl-format
  709. msgid "md5sum upload file %s gave strange output `%s'"
  710. msgstr ""
  711. "beräkning av md5-summa för insändningsfilen %s gav underlig utdata \"%s\""
  712. #: scripts/dpkg-genchanges.pl:422
  713. #, perl-format
  714. msgid "md5sum of source file %s (%s) is different from md5sum in %s (%s)"
  715. msgstr ""
  716. "md5-summa för källkodsfilen %s (%s) skiljer sig från md5-summan i %s (%s)"
  717. #: scripts/dpkg-genchanges.pl:437 scripts/dpkg-source.pl:401
  718. #, perl-format
  719. msgid "missing information for critical output field %s"
  720. msgstr "saknar information för kritiskt utdatafält %s"
  721. #: scripts/dpkg-genchanges.pl:442 scripts/dpkg-gencontrol.pl:280
  722. #: scripts/dpkg-gencontrol.pl:283 scripts/dpkg-source.pl:405
  723. #, perl-format
  724. msgid "missing information for output field %s"
  725. msgstr "saknar information för utdatafält %s"
  726. #: scripts/dpkg-gencontrol.pl:52
  727. msgid ""
  728. "\n"
  729. "Copyright (C) 1996 Ian Jackson.\n"
  730. "Copyright (C) 2000,2002 Wichert Akkerman."
  731. msgstr ""
  732. "\n"
  733. "Copyright © 1996 Ian Jackson.\n"
  734. "Copyright © 2000,2002 Wichert Akkerman."
  735. #: scripts/dpkg-gencontrol.pl:64
  736. #, perl-format
  737. msgid ""
  738. "Usage: %s [<option> ...]\n"
  739. "\n"
  740. "Options:\n"
  741. " -p<package> print control file for package.\n"
  742. " -c<controlfile> get control info from this file.\n"
  743. " -l<changelogfile> get per-version info from this file.\n"
  744. " -F<changelogformat> force change log format.\n"
  745. " -v<forceversion> set version of binary package.\n"
  746. " -f<fileslistfile> write files here instead of debian/files.\n"
  747. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  748. " -n<filename> assume the package filename will be <filename>.\n"
  749. " -O write to stdout, not .../DEBIAN/control.\n"
  750. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  751. " -D<field>=<value> override or add a field and value.\n"
  752. " -U<field> remove a field.\n"
  753. " -V<name>=<value> set a substitution variable.\n"
  754. " -T<varlistfile> read variables here, not debian/substvars.\n"
  755. " -h, --help show this help message.\n"
  756. " --version show the version.\n"
  757. msgstr ""
  758. "Använd: %s [<flagga> ...]\n"
  759. "\n"
  760. "Flaggor:\n"
  761. " -p<paket> skriv styrfil för paket.\n"
  762. " -c<styrfil> hämta styrinfo från filen.\n"
  763. " -l<ändringsloggfil> hämta info per version från filen.\n"
  764. " -F<ändringsloggformat> tvinga ändringsloggformat.\n"
  765. " -v<tvingaversion> sätt version på binärpaket.\n"
  766. " -f<fillistefil> skriv filer här istället för debian/files.\n"
  767. " -P<paketbyggkatalog> temporär byggkatalog istället för debian/tmp.\n"
  768. " -n<filnamn> anta att paketfilnamnet kommer vara <filnamn>.\n"
  769. " -O skriv till standard ut, ej .../DEBIAN/control.\n"
  770. " -is, -ip, -isp, -ips avråds, ignoreras för kompatibilitet.\n"
  771. " -D<fält>=<värde> överstyr eller lägg till ett fält och värde.\n"
  772. " -U<fält> ta bort ett fält.\n"
  773. " -V<namn>=<värde> sätt en substitueringsvariabel.\n"
  774. " -T<varlistfil> läs variabler här, inte debian/substvars.\n"
  775. " -h, --help visa detta hjälpmeddelande.\n"
  776. " --version visa versionsnummer.\n"
  777. #: scripts/dpkg-gencontrol.pl:99 scripts/dpkg-gensymbols.pl:93
  778. #, perl-format
  779. msgid "Illegal package name `%s'"
  780. msgstr "ogiltigt paketnamn \"%s\""
  781. #: scripts/dpkg-gencontrol.pl:143
  782. #, perl-format
  783. msgid "package %s not in control info"
  784. msgstr "paketet %s inte i styrinfo"
  785. #: scripts/dpkg-gencontrol.pl:148 scripts/dpkg-gensymbols.pl:124
  786. #, perl-format
  787. msgid "must specify package since control info has many (%s)"
  788. msgstr "måste ange paket eftersom styrinfo har flera (%s)"
  789. #: scripts/dpkg-gencontrol.pl:193
  790. #, perl-format
  791. msgid "`%s' is not a legal architecture string."
  792. msgid_plural "`%s' are not legal architecture strings."
  793. msgstr[0] "\"%s\" är inte en giltig arkitektursträng."
  794. msgstr[1] "\"%s\" är inte giltiga arkitektursträngar."
  795. #: scripts/dpkg-gencontrol.pl:199
  796. #, perl-format
  797. msgid ""
  798. "current host architecture '%s' does not appear in package's architecture "
  799. "list (%s)"
  800. msgstr "aktuell värdarkitekturen \"%s\" finns i paketets arkitekturlista (%s)"
  801. #: scripts/dpkg-gencontrol.pl:291
  802. #, perl-format
  803. msgid "%s package with udeb specific field %s"
  804. msgstr "%s-paket med udeb-specifikt fält %s"
  805. #: scripts/dpkg-gencontrol.pl:304
  806. msgid "fork for du"
  807. msgstr "grenar för du"
  808. #: scripts/dpkg-gencontrol.pl:307
  809. #, perl-format
  810. msgid "chdir for du to `%s'"
  811. msgstr "chdir för du till \"%s\""
  812. #: scripts/dpkg-gencontrol.pl:308
  813. msgid "exec du"
  814. msgstr "kör du"
  815. #: scripts/dpkg-gencontrol.pl:315
  816. #, perl-format
  817. msgid "du in `%s'"
  818. msgstr "du i \"%s\""
  819. #: scripts/dpkg-gencontrol.pl:317
  820. #, perl-format
  821. msgid "du gave unexpected output `%s'"
  822. msgstr "du gav oväntade utdata \"%s\""
  823. #: scripts/dpkg-gencontrol.pl:350
  824. msgid "close old files list file"
  825. msgstr "stänger gammal fillistfil"
  826. #: scripts/dpkg-gencontrol.pl:363
  827. msgid "install new files list file"
  828. msgstr "installerar ny fillistfil"
  829. #: scripts/dpkg-gencontrol.pl:370
  830. #, perl-format
  831. msgid "cannot open new output control file `%s'"
  832. msgstr "kan inte skapa ny utdatastyrfil \"%s\""
  833. #: scripts/dpkg-gencontrol.pl:379
  834. #, perl-format
  835. msgid "cannot install output control file `%s'"
  836. msgstr "kan inte installera utdatastyrfil \"%s\""
  837. #: scripts/dpkg-gensymbols.pl:38
  838. msgid ""
  839. "\n"
  840. "Copyright (C) 2007 Raphael Hertzog.\n"
  841. msgstr ""
  842. "\n"
  843. "Copyright © 2007 Raphael Hertzog.\n"
  844. #: scripts/dpkg-gensymbols.pl:50
  845. #, perl-format
  846. msgid ""
  847. "Usage: %s [<option> ...]\n"
  848. "\n"
  849. "Options:\n"
  850. " -p<package> generate symbols file for package.\n"
  851. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  852. " -e<library> explicitely list libraries to scan.\n"
  853. " -v<version> version of the packages (defaults to\n"
  854. " version extracted from debian/changelog).\n"
  855. " -c<level> compare generated symbols file with the\n"
  856. " reference file in the debian directory.\n"
  857. "\t\t\t Fails if difference are too important\n"
  858. "\t\t\t (level goes from 0 for no check, to 4\n"
  859. "\t\t\t for all checks). By default checks at\n"
  860. "\t\t\t level 1.\n"
  861. " -I<file> force usage of <file> as reference symbols\n"
  862. " file instead of the default file.\n"
  863. " -O<file> write to <file>, not .../DEBIAN/symbols.\n"
  864. " -O write to stdout, not .../DEBIAN/symbols.\n"
  865. " -d display debug information during work.\n"
  866. " -h, --help show this help message.\n"
  867. " --version show the version.\n"
  868. msgstr ""
  869. "Användning: %s [<flaggor> ...]\n"
  870. "\n"
  871. "Flaggor:\n"
  872. " -p<paket> skapar symbolfil för paket.\n"
  873. " -P<paketbyggkatalog> temporär byggkatalog istället för debian/tmp.\n"
  874. " -e<bibliotek> explicit lista över bibliotek att söka i.\n"
  875. " -v<version> version på paketet (standardvärde är versionen\n"
  876. " som utläses ur debian/changelog).\n"
  877. " -c<nivå> jämför genererade symbolfiler med referensfilen\n"
  878. " i katalogen \"debian\".\n"
  879. "\t\t\t Misslyckas om skillnaderna är för viktiga\n"
  880. "\t\t\t (nivå går från 0 för ingen kontroll, till 4\n"
  881. "\t\t\t för alla kontroller). Standardvärde är\n"
  882. "\t\t\t kontroller på nivå 1.\n"
  883. " -I<fil> tvinga användning av <fil> som symbolreferensfil\n"
  884. " istället för standardfilen.\n"
  885. " -O<fil> skriv till <fil>, inte .../DEBIAN/symbols.\n"
  886. " -O skriv till standard ut, inte .../DEBIAN/symbols.\n"
  887. " -d visa felsökningsinformation under körnng.\n"
  888. " -h, --help visa detta hjälpmeddelande.\n"
  889. " --version visa versionsnummer.\n"
  890. #: scripts/dpkg-gensymbols.pl:152
  891. #, perl-format
  892. msgid "Can't read directory %s: %s"
  893. msgstr "kan inte läsa katalogen %s: %s"
  894. #: scripts/dpkg-gensymbols.pl:167
  895. #, perl-format
  896. msgid "Objdump couldn't parse %s\n"
  897. msgstr "objdump kunde inte tolka %s\n"
  898. #: scripts/dpkg-gensymbols.pl:209
  899. msgid "new libraries appeared in the symbols file."
  900. msgstr "nya bibliotek dök upp i symbolfilen."
  901. #: scripts/dpkg-gensymbols.pl:213
  902. msgid "some libraries disappeared in the symbols file."
  903. msgstr "några bibliotek försvann ur symbolfilen."
  904. #: scripts/dpkg-gensymbols.pl:217
  905. msgid "some new symbols appeared in the symbols file."
  906. msgstr "några nya symboler dök upp i symbolfilen."
  907. #: scripts/dpkg-gensymbols.pl:221
  908. msgid "some symbols disappeared in the symbols file."
  909. msgstr "några symboler försvann ur symbolfilen."
  910. #: scripts/dpkg-gensymbols.pl:234
  911. #, perl-format
  912. msgid "%s doesn't match completely %s\n"
  913. msgstr "%s stämmer inte helt överrens med %s\n"
  914. #: scripts/dpkg-gensymbols.pl:237
  915. #, perl-format
  916. msgid "no debian/symbols file used as basis for generating %s\n"
  917. msgstr "använde ingen debian/symbols-fil som grund för att generera %s\n"
  918. #: scripts/dpkg-parsechangelog.pl:26
  919. msgid ""
  920. "\n"
  921. "Copyright (C) 1996 Ian Jackson.\n"
  922. "Copyright (C) 2001 Wichert Akkerman"
  923. msgstr ""
  924. "\n"
  925. "Copyright © 1996 Ian Jackson.\n"
  926. "Copyright © 2001 Wichert Akkerman"
  927. #: scripts/dpkg-parsechangelog.pl:38
  928. #, perl-format
  929. msgid ""
  930. "Usage: %s [<option> ...]\n"
  931. "\n"
  932. "Options:\n"
  933. " -l<changelogfile> get per-version info from this file.\n"
  934. " -v<sinceversion> include all changes later than version.\n"
  935. " -F<changelogformat> force change log format.\n"
  936. " -L<libdir> look for change log parsers in <libdir>.\n"
  937. " -h, --help show this help message.\n"
  938. " --version show the version.\n"
  939. msgstr ""
  940. "Använd: %s [<flagga> ...]\n"
  941. "\n"
  942. "Flaggor:\n"
  943. " -l<ändringsloggfil> hämta per version-information från filen.\n"
  944. " -v<sedanversion> ta med alla ändringar efter denna version.\n"
  945. " -F<ändringsloggformat> tvinga ändringsloggformat.\n"
  946. " -L<bibliotekskatalog> se efter ändringsloggtolkar i katalogen.\n"
  947. " -h, --help visa detta hjälpmeddelande.\n"
  948. " --version visa versionsnummer.\n"
  949. #: scripts/dpkg-parsechangelog.pl:65
  950. #, perl-format
  951. msgid "%s takes no non-option arguments"
  952. msgstr "%s tar inga argument som inte är flaggor"
  953. #: scripts/dpkg-parsechangelog.pl:70
  954. #, perl-format
  955. msgid "cannot open %s to find format: %s"
  956. msgstr "kan inte öppna %s för att hitta format: %s"
  957. #: scripts/dpkg-parsechangelog.pl:71
  958. #, perl-format
  959. msgid "cannot fork: %s"
  960. msgstr "kan inte grena: %s"
  961. #: scripts/dpkg-parsechangelog.pl:77
  962. #, perl-format
  963. msgid "tail of %s"
  964. msgstr "tail för %s"
  965. #: scripts/dpkg-parsechangelog.pl:85
  966. #, perl-format
  967. msgid "failed to check for format parser %s"
  968. msgstr "kunde inte leta efter formattolk %s"
  969. #: scripts/dpkg-parsechangelog.pl:87
  970. #, perl-format
  971. msgid "format parser %s not executable"
  972. msgstr "formattolk %s ej körbar"
  973. #: scripts/dpkg-parsechangelog.pl:94
  974. #, perl-format
  975. msgid "format %s unknown"
  976. msgstr "formatet %s okänt"
  977. #: scripts/dpkg-parsechangelog.pl:97
  978. #, perl-format
  979. msgid "cannot open %s: %s"
  980. msgstr "kan inte öppna %s: %s"
  981. #: scripts/dpkg-parsechangelog.pl:99
  982. #, perl-format
  983. msgid "cannot exec format parser: %s"
  984. msgstr "kan inte exekvera formattolk: %s"
  985. #: scripts/dpkg-scanpackages.pl:57
  986. #, perl-format
  987. msgid ""
  988. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  989. "Packages\n"
  990. "\n"
  991. "Options:\n"
  992. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  993. " -u, --udeb scan for udebs (obsolete alias for -tudeb).\n"
  994. " -a, --arch <arch> architecture to scan for.\n"
  995. " -m, --multiversion allow multiple versions of a single package.\n"
  996. " -h, --help show this help message.\n"
  997. " --version show the version.\n"
  998. msgstr ""
  999. "Använd: %s [<flagga> ...] <binärkatalog> [<överstyrfil> [<sökvägprefix>]] > "
  1000. "Packages\n"
  1001. "\n"
  1002. "Flaggor:\n"
  1003. " -t, --type <typ> sök efter <typ>-paket (standard är \"deb\").\n"
  1004. " -u, --udeb sök efter udeb-paket (föråldrat alias till -"
  1005. "tudeb).\n"
  1006. " -a, --arch <ark> arkitektur att söka efter.\n"
  1007. " -m, --multiversion tillåt flera versioner av samma paket.\n"
  1008. " -h, --help visa detta hjälpmeddelande.\n"
  1009. " --version visa versionsnummer.\n"
  1010. #: scripts/dpkg-scanpackages.pl:73
  1011. #, perl-format
  1012. msgid "Couldn't open override file %s"
  1013. msgstr "Kunde inte öppna överstyrningsfilen %s"
  1014. #: scripts/dpkg-scanpackages.pl:99
  1015. #, perl-format
  1016. msgid " * Unconditional maintainer override for %s *"
  1017. msgstr " * Ovillkorlig överstyrning från paketansvariga för %s *"
  1018. #: scripts/dpkg-scanpackages.pl:115 scripts/dpkg-scansources.pl:507
  1019. msgid "1 to 3 args expected\n"
  1020. msgstr "1 till 3 argument förväntades\n"
  1021. #: scripts/dpkg-scanpackages.pl:138
  1022. #, perl-format
  1023. msgid "Binary dir %s not found"
  1024. msgstr "Binärkatalogen %s hittades inte"
  1025. #: scripts/dpkg-scanpackages.pl:140
  1026. #, perl-format
  1027. msgid "Override file %s not found"
  1028. msgstr "Överstyrningsfilen %s hittades inte"
  1029. #: scripts/dpkg-scanpackages.pl:154
  1030. #, perl-format
  1031. msgid "Couldn't open %s for reading"
  1032. msgstr "Kunde inte öppna %s för läsning"
  1033. #: scripts/dpkg-scanpackages.pl:161
  1034. #, perl-format
  1035. msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  1036. msgstr "Kunde inte anropa dpkg-deb på %s: %s, hoppar över paket"
  1037. #: scripts/dpkg-scanpackages.pl:165
  1038. #, perl-format
  1039. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  1040. msgstr "\"dpkg-deb -l %s control\" avslutades med %d, hoppar över paket"
  1041. #: scripts/dpkg-scanpackages.pl:179
  1042. #, perl-format
  1043. msgid ""
  1044. "Unprocessed text from %s control file; info:\n"
  1045. "%s / %s"
  1046. msgstr ""
  1047. "Ohanterad text från styrfilen %s, info:\n"
  1048. "%s / %s"
  1049. #: scripts/dpkg-scanpackages.pl:183
  1050. #, perl-format
  1051. msgid "No Package field in control file of %s"
  1052. msgstr "Inget Package-fält i styrfilen för %s"
  1053. #: scripts/dpkg-scanpackages.pl:190
  1054. #, perl-format
  1055. msgid ""
  1056. " ! Package %s (filename %s) is repeat but newer version;\n"
  1057. " used that one and ignored data from %s !\n"
  1058. msgstr ""
  1059. " ! Paketet (%s) (filnamn %s) repeterades men nyare version;\n"
  1060. " använde den och ignorerade data från %s!\n"
  1061. #: scripts/dpkg-scanpackages.pl:196
  1062. #, perl-format
  1063. msgid ""
  1064. " ! Package %s (filename %s) is repeat;\n"
  1065. " ignored that one and using data from %s !\n"
  1066. msgstr ""
  1067. " ! Paketet %s (filnamn %s) repeterades;\n"
  1068. " ignorerade den och använde data från %s!\n"
  1069. #: scripts/dpkg-scanpackages.pl:203
  1070. #, perl-format
  1071. msgid " ! Package %s (filename %s) has Filename field!\n"
  1072. msgstr " ! Paketet %s (filnamn %s) har Filename-fält!\n"
  1073. #: scripts/dpkg-scanpackages.pl:213
  1074. #, perl-format
  1075. msgid "Strange text from 'md5sum < %s': '%s'"
  1076. msgstr "Underlig text från \"md5sum < %s\": \"%s\""
  1077. #: scripts/dpkg-scanpackages.pl:216
  1078. #, perl-format
  1079. msgid "Couldn't stat %s"
  1080. msgstr "Kunde inte ta status på %s"
  1081. #: scripts/dpkg-scanpackages.pl:217
  1082. #, perl-format
  1083. msgid "file %s is empty"
  1084. msgstr "filen %s är tom"
  1085. #: scripts/dpkg-scanpackages.pl:263
  1086. msgid "Failed when writing stdout"
  1087. msgstr "Misslyckades vid skrivning på standard ut"
  1088. #: scripts/dpkg-scanpackages.pl:266
  1089. msgid "Couldn't close stdout"
  1090. msgstr "Kunde inte stänga standard ut"
  1091. #: scripts/dpkg-scanpackages.pl:270
  1092. msgid "** Packages in archive but missing from override file: **"
  1093. msgstr "** Paket i arkivet men som saknas i överstyrningsfilen: **"
  1094. #: scripts/dpkg-scanpackages.pl:274
  1095. msgid " ++ Packages in override file with incorrect old maintainer value: ++"
  1096. msgstr ""
  1097. " ++ Paket i överstyrningsfilen med felaktigt värde på gammal ansvarig: ++"
  1098. #: scripts/dpkg-scanpackages.pl:280
  1099. msgid " -- Packages specifying same maintainer as override file: --"
  1100. msgstr " -- Paket som anger samma ansvarig i överstyrningsfilen: --"
  1101. #: scripts/dpkg-scanpackages.pl:286
  1102. msgid " -- Packages in override file but not in archive: --"
  1103. msgstr " -- Paket i överstyrningsfilen men inte i arkivet: --"
  1104. #: scripts/dpkg-scanpackages.pl:291
  1105. #, perl-format
  1106. msgid " Wrote %s entries to output Packages file."
  1107. msgstr " Skrev %s poster till den skapade Packages-filen."
  1108. #: scripts/dpkg-scansources.pl:102
  1109. #, perl-format
  1110. msgid ""
  1111. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  1112. "Sources\n"
  1113. "\n"
  1114. "Options:\n"
  1115. " -n, --no-sort don't sort by package before outputting.\n"
  1116. " -s, --source-override <file>\n"
  1117. " use file for additional source overrides, "
  1118. "default\n"
  1119. " is regular override file with .src appended.\n"
  1120. " --debug turn debugging on.\n"
  1121. " --help show this help message.\n"
  1122. " --version show the version.\n"
  1123. "\n"
  1124. "See the man page for the full documentation.\n"
  1125. msgstr ""
  1126. "Använd: %s [<flagga> ...] <binarkatalog> [<överstyrfil> [<sökvägprefix>]] > "
  1127. "Sources\n"
  1128. "\n"
  1129. "Flaggor:\n"
  1130. " -n, --no-sort sortera inte paket innan de skrivs ut.\n"
  1131. " -s, --source-override <fil>\n"
  1132. " använd fil för ytterligare "
  1133. "källkodsöverstyrningar,\n"
  1134. " standard är vanliga överstyrningsfilen med "
  1135. "tillägg\n"
  1136. " .src.\n"
  1137. " --debug slå på felsökning.\n"
  1138. " --help visa detta hjälpmeddelande.\n"
  1139. " --version visa versionsnummer.\n"
  1140. "\n"
  1141. "Se manualsidan för fullständig dokumentation.\n"
  1142. #: scripts/dpkg-scansources.pl:142
  1143. #, perl-format
  1144. msgid "error closing %s ($? %d, $! `%s')"
  1145. msgstr "fel vid stängning av %s ($? %d, $! \"%s\")"
  1146. #: scripts/dpkg-scansources.pl:155
  1147. #, perl-format
  1148. msgid "can't read override file %s:"
  1149. msgstr "kan inte läsa överstyrningsfil %s:"
  1150. #: scripts/dpkg-scansources.pl:164
  1151. #, perl-format
  1152. msgid "invalid override entry at line %d (%d fields)"
  1153. msgstr "felaktig överstyrningspost på rad %d (%d fält)"
  1154. #: scripts/dpkg-scansources.pl:171
  1155. #, perl-format
  1156. msgid "ignoring duplicate override entry for %s at line %d"
  1157. msgstr "ignorerar duplicerad överstyrningspost för %s på rad %d"
  1158. #: scripts/dpkg-scansources.pl:177
  1159. #, perl-format
  1160. msgid "ignoring override entry for %s, invalid priority %s"
  1161. msgstr "ignorerar överstyrningspost för %s, ogiltig prioritet %s"
  1162. #: scripts/dpkg-scansources.pl:196
  1163. msgid "error closing override file:"
  1164. msgstr "fel vid stängning av överstyrningsfil:"
  1165. #: scripts/dpkg-scansources.pl:217
  1166. #, perl-format
  1167. msgid "can't read source override file %s:"
  1168. msgstr "kan inte läsa källkodsöverstyrningsfil %s:"
  1169. #: scripts/dpkg-scansources.pl:227
  1170. #, perl-format
  1171. msgid "invalid source override entry at line %d (%d fields)"
  1172. msgstr "felaktig källkodsöverstyrningspost på rad %d (%d fält)"
  1173. #: scripts/dpkg-scansources.pl:236
  1174. #, perl-format
  1175. msgid "ignoring duplicate source override entry for %s at line %d"
  1176. msgstr "ignorerar duplicerad källkodsöverstyrningspost för %s på rad %d"
  1177. #: scripts/dpkg-scansources.pl:243
  1178. msgid "error closing source override file:"
  1179. msgstr "fel vid stängning av källkodsöverstyrningsfil:"
  1180. #: scripts/dpkg-scansources.pl:257
  1181. #, perl-format
  1182. msgid "%s has PGP start token but not end token"
  1183. msgstr "%s har inledande men inte avslutande PGP-märke"
  1184. #: scripts/dpkg-scansources.pl:273
  1185. #, perl-format
  1186. msgid "can't read %s:"
  1187. msgstr "kan inte läsa %s:"
  1188. #: scripts/dpkg-scansources.pl:279
  1189. #, perl-format
  1190. msgid "error doing fstat on %s:"
  1191. msgstr "kan inte ta filstatus (fstat) på %s:"
  1192. #: scripts/dpkg-scansources.pl:287
  1193. #, perl-format
  1194. msgid "error reading from %s:"
  1195. msgstr "fel vid läsning från %s:"
  1196. #: scripts/dpkg-scansources.pl:295 scripts/dpkg-scansources.pl:517
  1197. msgid "can't fork:"
  1198. msgstr "kan inte grena:"
  1199. #: scripts/dpkg-scansources.pl:299
  1200. #, perl-format
  1201. msgid "can't dup %s:"
  1202. msgstr "kan inte duplicera %s:"
  1203. #: scripts/dpkg-scansources.pl:300
  1204. #, perl-format
  1205. msgid "can't rewind %s:"
  1206. msgstr "kan inte spola tillbaka %s:"
  1207. #: scripts/dpkg-scansources.pl:301
  1208. msgid "can't exec md5sum:"
  1209. msgstr "kan inte exekvera md5sum:"
  1210. #: scripts/dpkg-scansources.pl:310
  1211. #, perl-format
  1212. msgid "invalid md5 output for %s (%s)"
  1213. msgstr "felaktiga md5-utdata för %s (%s)"
  1214. #: scripts/dpkg-scansources.pl:315
  1215. #, perl-format
  1216. msgid "error closing %s:"
  1217. msgstr "fel vid stängning av %s:"
  1218. #: scripts/dpkg-scansources.pl:340
  1219. #, perl-format
  1220. msgid "%s invalid (contains blank line)"
  1221. msgstr "%s ogiltig (innehåller blank rad)"
  1222. #: scripts/dpkg-scansources.pl:367
  1223. #, perl-format
  1224. msgid "invalid field in %s: %s"
  1225. msgstr "ogiltigt fält i %s: %s"
  1226. #: scripts/dpkg-scansources.pl:375
  1227. #, perl-format
  1228. msgid "duplicate source field in %s"
  1229. msgstr "duplicerat källkodsfält i %s"
  1230. #: scripts/dpkg-scansources.pl:379
  1231. #, perl-format
  1232. msgid "invalid source field in %s"
  1233. msgstr "ogiltigt källkodsfält i %s"
  1234. #: scripts/dpkg-scansources.pl:389
  1235. #, perl-format
  1236. msgid "duplicate binary field in %s"
  1237. msgstr "duplicerat binärfält i %s"
  1238. #: scripts/dpkg-scansources.pl:394
  1239. #, perl-format
  1240. msgid "no binary packages specified in %s"
  1241. msgstr "inget binärpaket angivet i %s"
  1242. #: scripts/dpkg-shlibdeps.pl:62
  1243. #, perl-format
  1244. msgid "administrative directory '%s' does not exist"
  1245. msgstr "administrativ katalog \"%s\" finns inte"
  1246. #: scripts/dpkg-shlibdeps.pl:66
  1247. #, perl-format
  1248. msgid "unrecognised dependency field `%s'"
  1249. msgstr "okänt beroendefält \"%s\""
  1250. #: scripts/dpkg-shlibdeps.pl:84
  1251. msgid "need at least one executable"
  1252. msgstr "behöver minst en binär"
  1253. #: scripts/dpkg-shlibdeps.pl:105
  1254. #, perl-format
  1255. msgid ""
  1256. "couldn't find library %s needed by %s (its RPATH is '%s').\n"
  1257. "Note: libraries are not searched in other binary packages that do not have "
  1258. "any shlibs file.\n"
  1259. "To help dpkg-shlibdeps find private libraries, you might need to set "
  1260. "LD_LIBRARY_PATH."
  1261. msgstr ""
  1262. "hittade inte biblioteket %s som behövs för %s (dess RPATH är \"%s\").\n"
  1263. "Observera: andra binärpaket som inte har shlibs-filer söks inte genom "
  1264. "efter bibliotek.\n"
  1265. "För att hjälpa dpkg-shlibdeps att hitta privata bibliotek måste du "
  1266. "kanske sätta LD_LIBRARY_PATH."
  1267. #: scripts/dpkg-shlibdeps.pl:188
  1268. #, perl-format
  1269. msgid "no dependency information found for %s (used by %s)."
  1270. msgstr "hittade ingen beroendeinformation för %s (använd av %s)."
  1271. #: scripts/dpkg-shlibdeps.pl:240
  1272. #, perl-format
  1273. msgid "symbol %s used by %s found in none of the libraries."
  1274. msgstr "symbolen %s, som används av %s, hittades inte i något av biblioteken."
  1275. #: scripts/dpkg-shlibdeps.pl:253
  1276. #, perl-format
  1277. msgid "%d other similar warnings have been skipped (use -v to see them all)."
  1278. msgstr "%d andra liknande varningar har hoppats över (använd -v för att visa alla)."
  1279. #: scripts/dpkg-shlibdeps.pl:258
  1280. #, perl-format
  1281. msgid "%s shouldn't be linked with %s (it uses none of its symbols)."
  1282. msgstr "%s borde inte vara länkat mot %s (inga av symbolerna används)."
  1283. #: scripts/dpkg-shlibdeps.pl:270
  1284. #, perl-format
  1285. msgid "open new substvars file `%s'"
  1286. msgstr "öppna ny substvar-fil \"%s\""
  1287. #: scripts/dpkg-shlibdeps.pl:273
  1288. #, perl-format
  1289. msgid "open old varlist file `%s' for reading"
  1290. msgstr "öppna gammal varlistefil \"%s\" för läsning"
  1291. #: scripts/dpkg-shlibdeps.pl:276
  1292. #, perl-format
  1293. msgid "copy old entry to new varlist file `%s'"
  1294. msgstr "kopiera gammal post till ny varlistefil \"%s\""
  1295. #: scripts/dpkg-shlibdeps.pl:336
  1296. #, perl-format
  1297. msgid "install new varlist file `%s'"
  1298. msgstr "installerar ny varlistefil \"%s\""
  1299. #: scripts/dpkg-shlibdeps.pl:346
  1300. msgid ""
  1301. "\n"
  1302. "Copyright (C) 1996 Ian Jackson.\n"
  1303. "Copyright (C) 2000 Wichert Akkerman.\n"
  1304. "Copyright (C) 2006 Frank Lichtenheld.\n"
  1305. "Copyright (C) 2007 Raphael Hertzog.\n"
  1306. msgstr ""
  1307. "\n"
  1308. "Copyright © 1996 Ian Jackson.\n"
  1309. "Copyright © 2000 Wichert Akkerman.\n"
  1310. "Copyright © 2006 Frank Lichtenheld.Copyright © 2007 Raphael Hertzog.\n"
  1311. #: scripts/dpkg-shlibdeps.pl:361
  1312. #, perl-format
  1313. msgid ""
  1314. "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
  1315. "\n"
  1316. "Positional options (order is significant):\n"
  1317. " <executable> include dependencies for <executable>,\n"
  1318. " -e<executable> (use -e if <executable> starts with `-')\n"
  1319. " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
  1320. "\n"
  1321. "Options:\n"
  1322. " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
  1323. " -O print variable settings to stdout.\n"
  1324. " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
  1325. " -T<varlistfile> update variables here, not debian/substvars.\n"
  1326. " -t<type> set package type (default is deb).\n"
  1327. " -x<package> exclude package from the generated dependencies.\n"
  1328. " --admindir=<directory> change the administrative directory.\n"
  1329. " -h, --help show this help message.\n"
  1330. " --version show the version.\n"
  1331. "\n"
  1332. "Dependency fields recognised are:\n"
  1333. " %s\n"
  1334. msgstr ""
  1335. "Använd: %s [<flagga> ...] <binär>|-e<binär> [<flagga> ...]\n"
  1336. "\n"
  1337. "Positionsberoende flaggor (ordningen har betydelse):\n"
  1338. " <binär> ta med beroenden för <binär>,\n"
  1339. " -e<binär> (använd -e om <binär> börjar med \"-\")\n"
  1340. " -d<beroendefält> nästa binär(er) sätter shlibs:<beroendefält>.\n"
  1341. "\n"
  1342. "Flaggor:\n"
  1343. " -p<varnamnprefix> sätt <varnamnprefix>:* istället för shlibs:*.\n"
  1344. " -O skriv variabelinställningar till standard ut.\n"
  1345. " -L<lokalshlibsfil> shlibs-överstyrningsfil, inte debian/shlibs."
  1346. "local.\n"
  1347. " -T<varlistfil> uppdatera variabler här, inte debian/substvars.\n"
  1348. " -t<typ> sätt pakettyp (standard är deb).\n"
  1349. " -x<paket> uteslut ett paket från de skapade beroendena.\n"
  1350. " --admindir=<katalog> ändra den administrativa katalogen.\n"
  1351. " -h, --help visa detta hjälpmeddelande.\n"
  1352. " --version visa versionsnummer.\n"
  1353. "\n"
  1354. "Beroendefält som stöds är:\n"
  1355. " %s\n"
  1356. #: scripts/dpkg-shlibdeps.pl:421
  1357. #, perl-format
  1358. msgid "Can't extract name and version from library name `%s'"
  1359. msgstr "Kan inte extrahera namn och version från biblioteksnamnet \"%s\""
  1360. #: scripts/dpkg-shlibdeps.pl:428
  1361. #, perl-format
  1362. msgid "unable to open shared libs info file `%s'"
  1363. msgstr "kunde inte öppna informationsfil för delade bibliotek \"%s\""
  1364. #: scripts/dpkg-shlibdeps.pl:434
  1365. #, perl-format
  1366. msgid "shared libs info file `%s' line %d: bad line `%s'"
  1367. msgstr ""
  1368. "informationsfilen för delade bibliotek \"%s\" rad %d: felaktig rad \"%s\""
  1369. #: scripts/dpkg-shlibdeps.pl:475
  1370. #, perl-format
  1371. msgid "cannot open file %s"
  1372. msgstr "kan inte öppna filen %s"
  1373. #: scripts/dpkg-shlibdeps.pl:508
  1374. #, perl-format
  1375. msgid ""
  1376. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1377. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1378. "build tree"
  1379. msgstr ""
  1380. "$ORIGIN används i RPATH för %s och motsvarande katalog kunde inte "
  1381. "identifieras på grund av DEBIAN-underkatalogen saknas i roten av paketets "
  1382. "byggträd"
  1383. #: scripts/dpkg-shlibdeps.pl:555
  1384. msgid "cannot fork for dpkg --search"
  1385. msgstr "kunde inte grena för dpkg --search"
  1386. #: scripts/dpkg-shlibdeps.pl:562
  1387. msgid "cannot exec dpkg"
  1388. msgstr "kunde inte exekvera dpkg"
  1389. #: scripts/dpkg-shlibdeps.pl:567
  1390. msgid "diversions involved - output may be incorrect"
  1391. msgstr "omdirigeringar finns - utdata kan vara felaktiga"
  1392. #: scripts/dpkg-shlibdeps.pl:569
  1393. msgid "write diversion info to stderr"
  1394. msgstr "skriv omdirigeringsinformation på standard fel"
  1395. #: scripts/dpkg-shlibdeps.pl:573
  1396. #, perl-format
  1397. msgid "unknown output from dpkg --search: '%s'"
  1398. msgstr "okända utdata från dpkg --search: \"%s\""
  1399. #: scripts/dpkg-source.pl:145
  1400. msgid ""
  1401. "\n"
  1402. "Copyright (C) 1996 Ian Jackson and Klee Dienes."
  1403. msgstr ""
  1404. "\n"
  1405. "Copyright © 1996 Ian Jackson and Klee Dienes."
  1406. #: scripts/dpkg-source.pl:156
  1407. #, perl-format
  1408. msgid ""
  1409. "Usage: %s [<option> ...] <command>\n"
  1410. "\n"
  1411. "Commands:\n"
  1412. " -x <filename>.dsc [<output-dir>]\n"
  1413. " extract source package.\n"
  1414. " -b <dir> [<orig-dir>|<orig-targz>|'']\n"
  1415. " build source package.\n"
  1416. "\n"
  1417. "Build options:\n"
  1418. " -c<controlfile> get control info from this file.\n"
  1419. " -l<changelogfile> get per-version info from this file.\n"
  1420. " -F<changelogformat> force change log format.\n"
  1421. " -V<name>=<value> set a substitution variable.\n"
  1422. " -T<varlistfile> read variables here, not debian/substvars.\n"
  1423. " -D<field>=<value> override or add a .dsc field and value.\n"
  1424. " -U<field> remove a field.\n"
  1425. " -E turn certain warnings into errors.\n"
  1426. " -W when -E is enabled, -W disables it.\n"
  1427. " -q quiet operation, do not print warnings.\n"
  1428. " -i[<regexp>] filter out files to ignore diffs of\n"
  1429. " (defaults to: '%s').\n"
  1430. " -I[<pattern>] filter out files when building tarballs\n"
  1431. " (defaults to: %s).\n"
  1432. " -sa auto select orig source (-sA is default).\n"
  1433. " -sk use packed orig source (unpack & keep).\n"
  1434. " -sp use packed orig source (unpack & remove).\n"
  1435. " -su use unpacked orig source (pack & keep).\n"
  1436. " -sr use unpacked orig source (pack & remove).\n"
  1437. " -ss trust packed & unpacked orig src are same.\n"
  1438. " -sn there is no diff, do main tarfile only.\n"
  1439. " -sA,-sK,-sP,-sU,-sR like -sa,-sk,-sp,-su,-sr but may overwrite.\n"
  1440. " -Z<compression> select compression to use (defaults to 'gzip',\n"
  1441. " supported are: %s).\n"
  1442. " -z<level> compression level to use (defaults to '9',\n"
  1443. " supported are: '1'-'9', 'best', 'fast')\n"
  1444. "\n"
  1445. "Extract options:\n"
  1446. " -sp (default) leave orig source packed in current dir.\n"
  1447. " -sn do not copy original source to current dir.\n"
  1448. " -su unpack original source tree too.\n"
  1449. "\n"
  1450. "General options:\n"
  1451. " -h, --help show this help message.\n"
  1452. " --version show the version.\n"
  1453. msgstr ""
  1454. "Använd: %s [<flagga> ...] <kommando>\n"
  1455. "\n"
  1456. "Kommandon:\n"
  1457. " -x <filenamn>.dsc [<utdatakatalog>]\n"
  1458. " extrahera källkodspaket.\n"
  1459. " -b <kat> [<origkat>|<orig-targz>|'']\n"
  1460. " bygg källkodspaket.\n"
  1461. "\n"
  1462. "Byggflaggor:\n"
  1463. " -c<styrfil> hämta styrinfo från filen.\n"
  1464. " -l<ändringsloggfil> hämta per version-information från denna fil.\n"
  1465. " -F<ändringsloggformat> tvinga ändringsloggsformat.\n"
  1466. " -V<namn>=<värde> sätt en substitueringsvariabel.\n"
  1467. " -T<varlistfil> läs variabler här, inte debian/substvars.\n"
  1468. " -D<fält>=<värde> överstyr eller lägg till ett .dsc-fält och "
  1469. "värde.\n"
  1470. " -U<fält> ta bort ett fält.\n"
  1471. " -E gör vissa varningar till fel.\n"
  1472. " -W när -E är aktiverat slår -W av det.\n"
  1473. " -q tyst körning, skriv inte ut varningar.\n"
  1474. " -i[<reguttr>] filtrera ut filer att ignorera diffar från\n"
  1475. " (standardvärde: \"%s\").\n"
  1476. " -I[<mönster>] filtrera ut filer när tarboll byggs.\n"
  1477. " (standardvärde: \"%s\").\n"
  1478. " -sa välj originalkällkod automatiskt (-sA är "
  1479. "standard).\n"
  1480. " -sk använd packad originalkällkod (packa upp & "
  1481. "behåll).\n"
  1482. " -sp använd packad originalkällkod (packa upp & ta "
  1483. "bort).\n"
  1484. " -su använd uppackad originalkällkod (packa & "
  1485. "behåll).\n"
  1486. " -sr använd uppackad originalkällkod (packa & ta "
  1487. "bort).\n"
  1488. " -ss lita att packad & uppackad originalkällkod är "
  1489. "lika.\n"
  1490. " -sn det finns ingen diff, bara huvudtarfil.\n"
  1491. " -sA,-sK,-sP,-sU,-sR som -sa,-sk,-sp,-su,-sr men kan skriva över.\n"
  1492. " -Z<komprimering> välj komprimering som skall användas "
  1493. "(standardvärde\n"
  1494. " är \"gzip\", värden som stöds är:\n"
  1495. " %s).\n"
  1496. " -z<nivå> komprimeringsnivå att använda (standardvärde är\n"
  1497. " \"9\", värden som stöds är: \"1\"-\"9\", \"best"
  1498. "\", \"fast\")\n"
  1499. "\n"
  1500. "Flaggor för uppackning:\n"
  1501. " -sp (standard) låt packad originalkällkod vara i aktuell "
  1502. "katalog.\n"
  1503. " -sn kopiera inte originalkällkod till aktuell "
  1504. "katalog.\n"
  1505. " -su packa även upp originalkällkodsträd.\n"
  1506. "\n"
  1507. "Allmänna flaggor:\n"
  1508. " -h, --help visa detta hjälpmeddelande.\n"
  1509. " --version visa versionsnummer.\n"
  1510. #: scripts/dpkg-source.pl:225
  1511. #, perl-format
  1512. msgid "%s is not a supported compression"
  1513. msgstr "%s är inte en komprimering som stöds"
  1514. #: scripts/dpkg-source.pl:229
  1515. #, perl-format
  1516. msgid "%s is not a compression level"
  1517. msgstr "%s är inte en komprimeringsnivå"
  1518. #: scripts/dpkg-source.pl:232
  1519. #, perl-format
  1520. msgid "-s%s option overrides earlier -s%s option"
  1521. msgstr "flaggan -s%s ersätter tidigare flagga -s%s"
  1522. #: scripts/dpkg-source.pl:277
  1523. msgid "need -x or -b"
  1524. msgstr "behöver -x eller -b"
  1525. #: scripts/dpkg-source.pl:285
  1526. #, perl-format
  1527. msgid "source handling style -s%s not allowed with -b"
  1528. msgstr "källkodshanteringstyp -s%s tillåts inte med -b"
  1529. #: scripts/dpkg-source.pl:288
  1530. msgid "-b needs a directory"
  1531. msgstr "-b behöver en katalog"
  1532. #: scripts/dpkg-source.pl:289
  1533. msgid "-b takes at most a directory and an orig source argument"
  1534. msgstr "-b tar som mest en katalog och en originalkällkod som argument"
  1535. #: scripts/dpkg-source.pl:292
  1536. #, perl-format
  1537. msgid "cannot stat directory %s: %s"
  1538. msgstr "kan inte ta status på katalogen %s: %s"
  1539. #: scripts/dpkg-source.pl:293
  1540. #, perl-format
  1541. msgid "directory argument %s is not a directory"
  1542. msgstr "katalogargumentet %s är inte en katalog"
  1543. #: scripts/dpkg-source.pl:351
  1544. #, perl-format
  1545. msgid "`%s' is not a legal architecture string"
  1546. msgstr "\"%s\" är inte en giltig arkitektursträng"
  1547. #: scripts/dpkg-source.pl:354
  1548. #, perl-format
  1549. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1550. msgstr "arkitektur %s tillåts inte ensamt (listan för paketet %s är \"%s\")"
  1551. #: scripts/dpkg-source.pl:407
  1552. msgid "unable to determine source package name !"
  1553. msgstr "kunde inte bestämma namn på källkodspaket!"
  1554. #: scripts/dpkg-source.pl:428
  1555. #, perl-format
  1556. msgid "cannot stat orig argument %s: %s"
  1557. msgstr "kunde inte ta status på originalargument %s: %s"
  1558. #: scripts/dpkg-source.pl:434
  1559. #, perl-format
  1560. msgid ""
  1561. "orig argument is unpacked but source handling style -s%s calls for packed (."
  1562. "orig.tar.<ext>)"
  1563. msgstr ""
  1564. "originalargument har packats upp men källkodshanteringstypen -s%s ber om en "
  1565. "packad (.orig.tar.<ändelse>)"
  1566. #: scripts/dpkg-source.pl:441
  1567. #, perl-format
  1568. msgid ""
  1569. "orig argument is packed but source handling style -s%s calls for unpacked (."
  1570. "orig/)"
  1571. msgstr ""
  1572. "originalargument har packats men källkodshanteringstypen -s%s ber om en "
  1573. "uppackad (orig/)"
  1574. #: scripts/dpkg-source.pl:450
  1575. #, perl-format
  1576. msgid ""
  1577. "orig argument is empty (means no orig, no diff) but source handling style -s%"
  1578. "s wants something"
  1579. msgstr ""
  1580. "originalargument är tomt (betyder ingen orig, ingen diff) men "
  1581. "källkodshanteringstypen -s%s ber om något"
  1582. #: scripts/dpkg-source.pl:458
  1583. #, perl-format
  1584. msgid "packed orig `%s' exists but is not a plain file"
  1585. msgstr "packad orig \"%s\" finns men är inte en vanlig fil"
  1586. #: scripts/dpkg-source.pl:464
  1587. #, perl-format
  1588. msgid "unable to stat putative packed orig `%s'"
  1589. msgstr "kan inte ta status på förmodad packad orig \"%s\""
  1590. #: scripts/dpkg-source.pl:469
  1591. #, perl-format
  1592. msgid "unpacked orig `%s' exists but is not a directory"
  1593. msgstr "uppackad orig \"%s\" finns men är inte en katalog"
  1594. #: scripts/dpkg-source.pl:473
  1595. #, perl-format
  1596. msgid "unable to stat putative unpacked orig `%s'"
  1597. msgstr "kan inte ta status på förmodad uppackad orig \"%s\""
  1598. #: scripts/dpkg-source.pl:485
  1599. #, perl-format
  1600. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  1601. msgstr ""
  1602. "källkodskatalog \"%s\" är inte <källkodspaket>-<uppströmsversion> \"%s\""
  1603. #: scripts/dpkg-source.pl:499
  1604. #, perl-format
  1605. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  1606. msgstr ".orig-katalognamnet %s är inte <paket>-<uppströmsversion> (önskade %s)"
  1607. #: scripts/dpkg-source.pl:508
  1608. #, perl-format
  1609. msgid ""
  1610. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  1611. msgstr ""
  1612. ".orig.tar-namnet %s är inte <paket>_<uppströmsversion>.orig.tar (önskade %s)"
  1613. #: scripts/dpkg-source.pl:521
  1614. #, perl-format
  1615. msgid ""
  1616. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  1617. "override"
  1618. msgstr ""
  1619. "tarfilen \"%s\" finns redan, skriver inte över, ger upp, använd -sU eller -"
  1620. "sR för att överstyra"
  1621. #: scripts/dpkg-source.pl:524
  1622. #, perl-format
  1623. msgid "unable to check for existence of `%s'"
  1624. msgstr "kunde inte se om \"%s\" existerar"
  1625. #: scripts/dpkg-source.pl:527 scripts/dpkg-source.pl:597
  1626. #: scripts/dpkg-source.pl:757
  1627. #, perl-format
  1628. msgid "%s: building %s in %s"
  1629. msgstr "%s: bygger %s i %s"
  1630. #: scripts/dpkg-source.pl:529
  1631. msgid "write building tar message"
  1632. msgstr "skriver bygg-tar-meddelande"
  1633. #: scripts/dpkg-source.pl:533
  1634. msgid "fork for tar"
  1635. msgstr "grenar för tar"
  1636. #: scripts/dpkg-source.pl:536
  1637. #, perl-format
  1638. msgid "chdir to above (orig) source %s"
  1639. msgstr "byter katalog till ovanför (orig-)källkod %s"
  1640. #: scripts/dpkg-source.pl:537
  1641. msgid "reopen gzip for tar"
  1642. msgstr "öppnar gzip igen för tar"
  1643. #: scripts/dpkg-source.pl:539
  1644. msgid "exec tar"
  1645. msgstr "exekverar tar"
  1646. #: scripts/dpkg-source.pl:543
  1647. msgid "wait for tar"
  1648. msgstr "väntar på tar"
  1649. #: scripts/dpkg-source.pl:546 scripts/dpkg-source.pl:718
  1650. #, perl-format
  1651. msgid "unable to rename `%s' (newly created) to `%s'"
  1652. msgstr "kunde inte byta namn på \"%s\" (precis skapad) till \"%s\""
  1653. #: scripts/dpkg-source.pl:549 scripts/dpkg-source.pl:721
  1654. #, perl-format
  1655. msgid "unable to change permission of `%s'"
  1656. msgstr "kunde inte ändra beroenden på \"%s\""
  1657. #: scripts/dpkg-source.pl:553
  1658. #, perl-format
  1659. msgid "%s: building %s using existing %s"
  1660. msgstr "%s: bygger %s med befintlig %s"
  1661. #: scripts/dpkg-source.pl:555
  1662. msgid "write using existing tar message"
  1663. msgstr "skriver med existerande tar-meddelande"
  1664. #: scripts/dpkg-source.pl:565
  1665. #, perl-format
  1666. msgid ""
  1667. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  1668. "sP to override"
  1669. msgstr ""
  1670. "originalkatalog \"%s\" finns redan, skriver inte över, ger upp; använd -sA, -"
  1671. "sK eller -sP för att överstyra"
  1672. #: scripts/dpkg-source.pl:572
  1673. #, perl-format
  1674. msgid "unable to check for existence of orig dir `%s'"
  1675. msgstr "kan inte se om existerande originalkatalog \"%s\" finns"
  1676. #: scripts/dpkg-source.pl:582 scripts/dpkg-source.pl:943
  1677. #, perl-format
  1678. msgid "unable to create `%s'"
  1679. msgstr "kan inte skapa \"%s\""
  1680. #: scripts/dpkg-source.pl:586 scripts/dpkg-source.pl:924
  1681. #: scripts/dpkg-source.pl:947
  1682. #, perl-format
  1683. msgid "unable to rename `%s' to `%s'"
  1684. msgstr "kan inte byta namn på \"%s\" till \"%s\""
  1685. #: scripts/dpkg-source.pl:590 scripts/dpkg-source.pl:949
  1686. #, perl-format
  1687. msgid "unable to remove `%s'"
  1688. msgstr "kan inte ta bort \"%s\""
  1689. #: scripts/dpkg-source.pl:599
  1690. msgid "write building diff message"
  1691. msgstr "skriver byggdiffmeddelande"
  1692. #: scripts/dpkg-source.pl:604
  1693. msgid "fork for find"
  1694. msgstr "grenar för find"
  1695. #: scripts/dpkg-source.pl:606
  1696. #, perl-format
  1697. msgid "chdir to %s for find"
  1698. msgstr "byter katalog till %s för find"
  1699. #: scripts/dpkg-source.pl:607
  1700. msgid "exec find"
  1701. msgstr "exekverar find"
  1702. #: scripts/dpkg-source.pl:616
  1703. #, perl-format
  1704. msgid "cannot stat file %s"
  1705. msgstr "kan inte ta status på filen %s"
  1706. #: scripts/dpkg-source.pl:623
  1707. #, perl-format
  1708. msgid "cannot read link %s"
  1709. msgstr "kan inte läsa länken %s"
  1710. #: scripts/dpkg-source.pl:625
  1711. #, perl-format
  1712. msgid "cannot read orig link %s"
  1713. msgstr "kan inte läsa originallänken %s"
  1714. #: scripts/dpkg-source.pl:626 scripts/dpkg-source.pl:627
  1715. #, perl-format
  1716. msgid "symlink to %s"
  1717. msgstr "symbolisk länk till %s"
  1718. #: scripts/dpkg-source.pl:634 scripts/dpkg-source.pl:705
  1719. #, perl-format
  1720. msgid "cannot stat orig file %s"
  1721. msgstr "kan inte ta status på originalfilen %s"
  1722. #: scripts/dpkg-source.pl:637
  1723. #, perl-format
  1724. msgid "newly created empty file '%s' will not be represented in diff"
  1725. msgstr ""
  1726. "den tomma katalogen \"%s\" som just skapats kommer inte representeras i "
  1727. "diffen"
  1728. #: scripts/dpkg-source.pl:641
  1729. #, perl-format
  1730. msgid "executable mode %04o of '%s' will not be represented in diff"
  1731. msgstr "exekveringsläge %04o på \"%s\" kommer inte representeras i diffen"
  1732. #: scripts/dpkg-source.pl:646
  1733. #, perl-format
  1734. msgid "special mode %04o of '%s' will not be represented in diff"
  1735. msgstr "specialläge %04o på \"%s\" kommer inte representeras i diffen"
  1736. #: scripts/dpkg-source.pl:653 scripts/dpkg-source.pl:1528
  1737. msgid "something else"
  1738. msgstr "något annat"
  1739. #: scripts/dpkg-source.pl:654
  1740. msgid "plain file"
  1741. msgstr "vanlig fil"
  1742. #: scripts/dpkg-source.pl:657
  1743. msgid "fork for diff"
  1744. msgstr "grenar för diff"
  1745. #: scripts/dpkg-source.pl:666
  1746. msgid "exec diff"
  1747. msgstr "exekverar diff"
  1748. #: scripts/dpkg-source.pl:673
  1749. msgid "binary file contents changed"
  1750. msgstr "innehåll i binär fil ändrat"
  1751. #: scripts/dpkg-source.pl:678
  1752. #, perl-format
  1753. msgid "file %s has no final newline (either original or modified version)"
  1754. msgstr ""
  1755. "filen %s har inget avslutande nyradstecken (antingen i ursprunglig eller "
  1756. "modifierad version)"
  1757. #: scripts/dpkg-source.pl:682
  1758. #, perl-format
  1759. msgid "unknown line from diff -u on %s: `%s'"
  1760. msgstr "okänd rad från diff -u på %s: \"%s\""
  1761. #: scripts/dpkg-source.pl:685
  1762. msgid "failed to write to compression pipe"
  1763. msgstr "misslyckades att skriva till komprimeringsrör"
  1764. #: scripts/dpkg-source.pl:691
  1765. msgid "diff gave 1 but no diff lines found"
  1766. msgstr "diff gav 1 men inga diff-rader hittades"
  1767. #: scripts/dpkg-source.pl:694
  1768. #, perl-format
  1769. msgid "diff on %s"
  1770. msgstr "diff på %s"
  1771. #: scripts/dpkg-source.pl:700
  1772. msgid "device or socket is not allowed"
  1773. msgstr "enhet eller uttag inte tillåtet"
  1774. #: scripts/dpkg-source.pl:707
  1775. msgid "not a directory"
  1776. msgstr "ej katalog"
  1777. #: scripts/dpkg-source.pl:708
  1778. msgid "directory"
  1779. msgstr "katalog"
  1780. #: scripts/dpkg-source.pl:711
  1781. #, perl-format
  1782. msgid "unknown file type (%s)"
  1783. msgstr "okänd filtyp (%s)"
  1784. #: scripts/dpkg-source.pl:715
  1785. msgid "finish write to compression pipe"
  1786. msgstr "avslutar skrivning till komprimeringsrör"
  1787. #: scripts/dpkg-source.pl:723
  1788. msgid "fork for 2nd find"
  1789. msgstr "grenar för andra find"
  1790. #: scripts/dpkg-source.pl:725
  1791. #, perl-format
  1792. msgid "chdir to %s for 2nd find"
  1793. msgstr "chdir till %s för andra find"
  1794. #: scripts/dpkg-source.pl:726
  1795. msgid "exec 2nd find"
  1796. msgstr "exekverar andra find"
  1797. #: scripts/dpkg-source.pl:735
  1798. #, perl-format
  1799. msgid "cannot check orig file %s"
  1800. msgstr "kan inte kontrollera originalfilen %s"
  1801. #: scripts/dpkg-source.pl:737
  1802. #, perl-format
  1803. msgid "ignoring deletion of file %s"
  1804. msgstr "ignorerar borttagning av filen %s"
  1805. #: scripts/dpkg-source.pl:739
  1806. #, perl-format
  1807. msgid "ignoring deletion of directory %s"
  1808. msgstr "ignorerar borttagning av katalogen %s"
  1809. #: scripts/dpkg-source.pl:741
  1810. #, perl-format
  1811. msgid "ignoring deletion of symlink %s"
  1812. msgstr "ignorerar borttagning av symboliska länken %s"
  1813. #: scripts/dpkg-source.pl:743
  1814. msgid "not a file, directory or link"
  1815. msgstr "ej fil, katalog eller länk"
  1816. #: scripts/dpkg-source.pl:744 scripts/dpkg-source.pl:1523
  1817. msgid "nonexistent"
  1818. msgstr "saknas"
  1819. #: scripts/dpkg-source.pl:759
  1820. msgid "write building message"
  1821. msgstr "skriver byggmeddelande"
  1822. #: scripts/dpkg-source.pl:761
  1823. #, perl-format
  1824. msgid "create %s"
  1825. msgstr "skapar %s"
  1826. #: scripts/dpkg-source.pl:767
  1827. #, perl-format
  1828. msgid "%s: unrepresentable changes to source"
  1829. msgstr "%s: ändring i källkod kan inte representeras"
  1830. #: scripts/dpkg-source.pl:768
  1831. #, perl-format
  1832. msgid "write error msg: %s"
  1833. msgstr "skriver felmeddelande: %s"
  1834. #: scripts/dpkg-source.pl:777
  1835. #, perl-format
  1836. msgid "source handling style -s%s not allowed with -x"
  1837. msgstr "källkodshanteringstyp -s%s tillåts inte med -x"
  1838. #: scripts/dpkg-source.pl:780
  1839. msgid "-x needs at least one argument, the .dsc"
  1840. msgstr "-x behöver åtminstone ett argument, .dsc-filen"
  1841. #: scripts/dpkg-source.pl:781
  1842. msgid "-x takes no more than two arguments"
  1843. msgstr "-x tar maximalt två argument"
  1844. #: scripts/dpkg-source.pl:785
  1845. msgid "-x needs the .dsc file as first argument, not a directory"
  1846. msgstr "-x måste ha .dsc-filen som första argument, inte en katalog"
  1847. #: scripts/dpkg-source.pl:793
  1848. #, perl-format
  1849. msgid "unpack target exists: %s"
  1850. msgstr "mål för uppackning finns redan: %s"
  1851. #: scripts/dpkg-source.pl:817
  1852. #, perl-format
  1853. msgid "failed to verify signature on %s"
  1854. msgstr "misslyckades verifiera signaturen på %s"
  1855. #: scripts/dpkg-source.pl:821
  1856. #, perl-format
  1857. msgid "could not verify signature on %s since gpg isn't installed"
  1858. msgstr "kunde inte verifiera signaturen på %s eftersom gpg inte installerats"
  1859. #: scripts/dpkg-source.pl:825
  1860. #, perl-format
  1861. msgid "extracting unsigned source package (%s)"
  1862. msgstr "extraherar osignerat källkodspaket (%s)"
  1863. #: scripts/dpkg-source.pl:834
  1864. #, perl-format
  1865. msgid "missing critical source control field %s"
  1866. msgstr "saknar kritiska källkodsstyrfältet %s"
  1867. #: scripts/dpkg-source.pl:840
  1868. #, perl-format
  1869. msgid "Unsupported format of .dsc file (%s)"
  1870. msgstr "Formatet på .dsc-filen stöds inte (%s)"
  1871. #: scripts/dpkg-source.pl:872
  1872. #, perl-format
  1873. msgid "Files field contains invalid filename `%s'"
  1874. msgstr "Files-fältet innehåller ogiltigt filnamn \"%s\""
  1875. #: scripts/dpkg-source.pl:877
  1876. #, perl-format
  1877. msgid "repeated file type - files `%s' and `%s'"
  1878. msgstr "repeterad filtyp - filerna \"%s\" och \"%s\""
  1879. #: scripts/dpkg-source.pl:891
  1880. #, perl-format
  1881. msgid "unrecognised file type - `%s'"
  1882. msgstr "okänd filtyp - \"%s\""
  1883. #: scripts/dpkg-source.pl:895
  1884. msgid "no tarfile in Files field"
  1885. msgstr "ej tarfil i Files-fältet"
  1886. #: scripts/dpkg-source.pl:898
  1887. msgid "multiple tarfiles in native package"
  1888. msgstr "flera tarfiler i Debianspecifikt paket"
  1889. #: scripts/dpkg-source.pl:899
  1890. msgid "native package with .orig.tar"
  1891. msgstr "Debianspecifikt paket med .orig.tar"
  1892. #: scripts/dpkg-source.pl:902
  1893. msgid "no upstream tarfile in Files field"
  1894. msgstr "uppströmstarfil saknas i Files-fältet"
  1895. #: scripts/dpkg-source.pl:905
  1896. #, perl-format
  1897. msgid "multiple upstream tarballs in %s format dsc"
  1898. msgstr "flera uppströms-tarbollar i dsc på %s-format"
  1899. #: scripts/dpkg-source.pl:907
  1900. #, perl-format
  1901. msgid "debian.tar in %s format dsc"
  1902. msgstr "debian.tar i dsc på %s-format"
  1903. #: scripts/dpkg-source.pl:917
  1904. #, perl-format
  1905. msgid "%s: extracting %s in %s"
  1906. msgstr "%s: extraherar %s i %s"
  1907. #: scripts/dpkg-source.pl:919
  1908. msgid "write extracting message"
  1909. msgstr "skriver extraheringsmeddelande"
  1910. #: scripts/dpkg-source.pl:944
  1911. #, perl-format
  1912. msgid "%s: unpacking %s"
  1913. msgstr "%s: packar upp %s"
  1914. #: scripts/dpkg-source.pl:957
  1915. #, perl-format
  1916. msgid "failed to stat `%s' to see if need to copy"
  1917. msgstr "kunde inte ta status på \"%s\" för att se om det måste kopieras"
  1918. #: scripts/dpkg-source.pl:969
  1919. #, perl-format
  1920. msgid "failed to check destination `%s' to see if need to copy"
  1921. msgstr ""
  1922. "misslyckades kontrollera destinationen \"%s\" för att se om det behöver "
  1923. "kopieras"
  1924. #: scripts/dpkg-source.pl:982
  1925. msgid "unable to keep orig directory (already exists)"
  1926. msgstr "kan inte behålla originalkatalog (finns redan)"
  1927. #: scripts/dpkg-source.pl:1016 scripts/dpkg-source.pl:1076
  1928. #, perl-format
  1929. msgid "cannot stat %s"
  1930. msgstr "kan inte ta status på %s"
  1931. #: scripts/dpkg-source.pl:1018
  1932. #, perl-format
  1933. msgid "failed to create %s subdirectory"
  1934. msgstr "misslyckades att skapa underkatalogen %s"
  1935. #: scripts/dpkg-source.pl:1021
  1936. #, perl-format
  1937. msgid "diff patches file in directory `%s', but %s isn't a directory !"
  1938. msgstr "diff-patchfil i katalogen \"%s\", men %s är inte en katalog!"
  1939. #: scripts/dpkg-source.pl:1031
  1940. #, perl-format
  1941. msgid "failed to rename newly-extracted %s to %s"
  1942. msgstr "misslyckades att ta bort %s, som just extraherats, till %s"
  1943. #: scripts/dpkg-source.pl:1037
  1944. #, perl-format
  1945. msgid "failed to rename saved %s to %s"
  1946. msgstr "misslyckades att byta namn på sparad %s till %s"
  1947. #: scripts/dpkg-source.pl:1042
  1948. #, perl-format
  1949. msgid "%s: applying %s"
  1950. msgstr "%s: tillämpar %s"
  1951. #: scripts/dpkg-source.pl:1047 scripts/dpkg-source.pl:1358
  1952. #, perl-format
  1953. msgid "can't open diff `%s'"
  1954. msgstr "kan inte öppna diff \"%s\""
  1955. #: scripts/dpkg-source.pl:1050
  1956. msgid "fork for patch"
  1957. msgstr "grenar för patch"
  1958. #: scripts/dpkg-source.pl:1052
  1959. msgid "reopen gzip for patch"
  1960. msgstr "öppnar gzip på nytt för patch"
  1961. #: scripts/dpkg-source.pl:1053
  1962. #, perl-format
  1963. msgid "chdir to %s for patch"
  1964. msgstr "chdir till %s för patch"
  1965. #: scripts/dpkg-source.pl:1057
  1966. msgid "exec patch"
  1967. msgstr "exekverar patch"
  1968. #: scripts/dpkg-source.pl:1060
  1969. msgid "wait for patch"
  1970. msgstr "väntar på patch"
  1971. #: scripts/dpkg-source.pl:1070
  1972. #, perl-format
  1973. msgid "cannot change timestamp for %s"
  1974. msgstr "kan inte ändra tidsstämpel på %s"
  1975. #: scripts/dpkg-source.pl:1072
  1976. #, perl-format
  1977. msgid "remove patch backup file %s"
  1978. msgstr "tar bort patchsäkerhetskopian %s"
  1979. #: scripts/dpkg-source.pl:1077
  1980. #, perl-format
  1981. msgid "%s does not exist"
  1982. msgstr "%s finns inte"
  1983. #: scripts/dpkg-source.pl:1080
  1984. #, perl-format
  1985. msgid "cannot make %s executable"
  1986. msgstr "kan inte göra %s exekverbar"
  1987. #: scripts/dpkg-source.pl:1082
  1988. #, perl-format
  1989. msgid "%s is not a plain file"
  1990. msgstr "%s är inte en vanlig fil"
  1991. #: scripts/dpkg-source.pl:1086
  1992. msgid "cannot stat `.'"
  1993. msgstr "kan inte ta status på \".\""
  1994. #: scripts/dpkg-source.pl:1094
  1995. #, perl-format
  1996. msgid "cannot stat extracted object `%s'"
  1997. msgstr "kan inte ta status på extraherat objekt \"%s\""
  1998. #: scripts/dpkg-source.pl:1105
  1999. #, perl-format
  2000. msgid "unknown object `%s' after extract (mode 0%o)"
  2001. msgstr "okänt objekt \"%s\" efter extrahering (läge 0%o)"
  2002. #: scripts/dpkg-source.pl:1110
  2003. #, perl-format
  2004. msgid "cannot change mode of `%s' to 0%o from 0%o"
  2005. msgstr "kan inte byta läge på \"%s\" till 0%o från 0%o"
  2006. #: scripts/dpkg-source.pl:1121
  2007. #, perl-format
  2008. msgid "cannot read %s"
  2009. msgstr "kan inte läsa %s"
  2010. #: scripts/dpkg-source.pl:1122
  2011. #, perl-format
  2012. msgid "cannot fstat %s"
  2013. msgstr "kan inte ta status (fstat) på %s"
  2014. #: scripts/dpkg-source.pl:1123
  2015. #, perl-format
  2016. msgid "file %s has size %s instead of expected %s"
  2017. msgstr "filen %s har storleken %s istället för förväntad %s"
  2018. #: scripts/dpkg-source.pl:1127
  2019. #, perl-format
  2020. msgid "file %s has md5sum %s instead of expected %s"
  2021. msgstr "filen %s har md5summa %s istället för förväntad %s"
  2022. #: scripts/dpkg-source.pl:1129
  2023. msgid "reopen stdin from /dev/null"
  2024. msgstr "öppnar standard in på nytt från /dev/null"
  2025. #: scripts/dpkg-source.pl:1136
  2026. #, perl-format
  2027. msgid "cannot stat directory %s (before removal)"
  2028. msgstr "kan inte ta status på katalogen %s (före borttagning)"
  2029. #: scripts/dpkg-source.pl:1142
  2030. #, perl-format
  2031. msgid "unable to check for removal of dir `%s'"
  2032. msgstr "kan inte kontrollera för borttagning av katalogen \"%s\""
  2033. #: scripts/dpkg-source.pl:1144
  2034. #, perl-format
  2035. msgid "rm -rf failed to remove `%s'"
  2036. msgstr "rm -rf misslyckades att ta bort \"%s\""
  2037. #: scripts/dpkg-source.pl:1156
  2038. msgid "fork for cpio"
  2039. msgstr "grenar för cpio"
  2040. #: scripts/dpkg-source.pl:1160
  2041. msgid "reopen gzip for cpio"
  2042. msgstr "öppnar gzip på nytt för cpio"
  2043. #: scripts/dpkg-source.pl:1162
  2044. msgid "exec cpio"
  2045. msgstr "exekverar cpio"
  2046. #: scripts/dpkg-source.pl:1176
  2047. #, perl-format
  2048. msgid "tarfile `%s' contains object with newline in its name (%s)"
  2049. msgstr "tarfilen \"%s\" innehåller objekt med nyrad i sitt namn (%s)"
  2050. #: scripts/dpkg-source.pl:1184
  2051. #, perl-format
  2052. msgid ""
  2053. "first output from cpio -0t (from `%s') contains newline - you probably have "
  2054. "an out of date version of cpio. GNU cpio 2.4.2-2 is known to work"
  2055. msgstr ""
  2056. "första utdata från cpio -0t (från \"%s\") innehåller nyrad - du har "
  2057. "antagligen en för gammal version av cpio. GNU cpio 2.4.2-2 vet vi fungerar"
  2058. #: scripts/dpkg-source.pl:1193
  2059. #, perl-format
  2060. msgid ""
  2061. "tarfile `%s' does not extract into a directory off the current directory (%s "
  2062. "from %s)"
  2063. msgstr ""
  2064. "tarfilen \"%s\" extraherar inte till en katalog som kommer från den aktuella "
  2065. "katalogen (%s från %s)"
  2066. #: scripts/dpkg-source.pl:1202
  2067. #, perl-format
  2068. msgid "tarfile `%s' contains object (%s) not in expected directory (%s)"
  2069. msgstr "tarfilen \"%s\" innehåller objekt (%s) i en oväntad katalog (%s)"
  2070. #: scripts/dpkg-source.pl:1208 scripts/dpkg-source.pl:1308
  2071. #, perl-format
  2072. msgid "tarfile `%s' contains object with /../ in its name (%s)"
  2073. msgstr "tarfilen \"%s\" innehåller objekt med /../ i namnet (%s)"
  2074. #: scripts/dpkg-source.pl:1235
  2075. msgid "fork for tar -t"
  2076. msgstr "grenar för tar -t"
  2077. #: scripts/dpkg-source.pl:1239
  2078. msgid "reopen gzip for tar -t"
  2079. msgstr "öppnar gzip på nytt för tar -t"
  2080. #: scripts/dpkg-source.pl:1240
  2081. msgid "exec tar -vvtf -"
  2082. msgstr "exekverar tar -vvtf -"
  2083. #: scripts/dpkg-source.pl:1250
  2084. #, perl-format
  2085. msgid "tarfile `%s' contains unknown object listed by tar as `%s'"
  2086. msgstr "tarfilen \"%s\" innehåller okänt objekt som tar visar som \"%s\""
  2087. #: scripts/dpkg-source.pl:1257
  2088. #, perl-format
  2089. msgid "tarfile `%s' contains object `%s' with unknown or forbidden type `%s'"
  2090. msgstr ""
  2091. "tarfilen \"%s\" innehåller objektet \"%s\" med okänd eller förbjuden typ \"%s"
  2092. "\""
  2093. #: scripts/dpkg-source.pl:1267
  2094. #, perl-format
  2095. msgid "tarfile `%s' contains incomplete entry `%s'\n"
  2096. msgstr "tarfilen \"%s\" innehåller ofullständig post \"%s\"\n"
  2097. #: scripts/dpkg-source.pl:1291
  2098. #, perl-format
  2099. msgid "filename '%s' was truncated by cpio; unable to check full pathname"
  2100. msgstr ""
  2101. "filnamnet \"%s\" trunkerades av cpio; kan inte kontrollera komplett sökväg"
  2102. #: scripts/dpkg-source.pl:1298
  2103. #, perl-format
  2104. msgid ""
  2105. "tarfile `%s' contains unexpected object listed by tar as `%s'; expected `%s'"
  2106. msgstr ""
  2107. "tarfilen \"%s\" innehåller oväntat objekt som tar visar som \"%s\"; "
  2108. "förväntade \"%s\""
  2109. #: scripts/dpkg-source.pl:1313
  2110. #, perl-format
  2111. msgid "tarfile `%s' contains file with name ending in .dpkg-orig"
  2112. msgstr "tarfilen \"%s\" innehåller filer med namn som slutar på .dpkg-orig"
  2113. #: scripts/dpkg-source.pl:1318
  2114. #, perl-format
  2115. msgid "tarfile `%s' contains setuid, setgid or sticky object `%s'"
  2116. msgstr ""
  2117. "tarfilen \"%s\" innehåller setuid-, setgid- eller klistrigt objekt \"%s\""
  2118. #: scripts/dpkg-source.pl:1323
  2119. #, perl-format
  2120. msgid "tarfile `%s' contains object `debian' that isn't a directory"
  2121. msgstr "tarfilen \"%s\" innehåller objektet \"debian\" som inte är en katalog"
  2122. #: scripts/dpkg-source.pl:1332
  2123. #, perl-format
  2124. msgid ""
  2125. "tarfile `%s' contains object `%s' but its containing directory `%s' does not "
  2126. "precede it"
  2127. msgstr ""
  2128. "tarfilen \"%s\" innehåller objektet \"%s\", men behållarkatalogen \"%s\" "
  2129. "föregår det inte"
  2130. #: scripts/dpkg-source.pl:1370 scripts/dpkg-source.pl:1415
  2131. #: scripts/dpkg-source.pl:1426
  2132. #, perl-format
  2133. msgid "diff `%s' is missing trailing newline"
  2134. msgstr "diffen \"%s\" saknar avslutande nyradstecken"
  2135. #: scripts/dpkg-source.pl:1372
  2136. #, perl-format
  2137. msgid "expected ^--- in line %d of diff `%s'"
  2138. msgstr "förväntade ^--- på rad %d i diffen \"%s\""
  2139. #: scripts/dpkg-source.pl:1375
  2140. #, perl-format
  2141. msgid "diff `%s' patches file with no subdirectory"
  2142. msgstr "diffen \"%s\" patchar fil utan underkatalog"
  2143. #: scripts/dpkg-source.pl:1377
  2144. #, perl-format
  2145. msgid "diff `%s' patches file with name ending .dpkg-orig"
  2146. msgstr "diffen \"%s\" patchar fil vars namn slutar på .dpkg-orig"
  2147. #: scripts/dpkg-source.pl:1382
  2148. #, perl-format
  2149. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  2150. msgstr "diffen \"%s\" slutar mitt i en ---/+++ (rad %d)"
  2151. #: scripts/dpkg-source.pl:1387 scripts/dpkg-source.pl:1394
  2152. #, perl-format
  2153. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  2154. msgstr "raden efter --- är inte som förväntad i diffen \"%s\" (rad %d)"
  2155. #: scripts/dpkg-source.pl:1403
  2156. #, perl-format
  2157. msgid "diff `%s' patches something which is not a plain file"
  2158. msgstr "diffen \"%s\" patchar något som inte är en vanlig fil"
  2159. #: scripts/dpkg-source.pl:1408
  2160. #, perl-format
  2161. msgid "diff patches file %s twice"
  2162. msgstr "diffen patchar filen %s två gånger"
  2163. #: scripts/dpkg-source.pl:1418
  2164. #, perl-format
  2165. msgid "Expected ^@@ in line %d of diff `%s'"
  2166. msgstr "Förväntade ^@@ på rad %d i diffen \"%s\""
  2167. #: scripts/dpkg-source.pl:1424
  2168. #, perl-format
  2169. msgid "unexpected end of diff `%s'"
  2170. msgstr "oväntad slut på diffen \"%s\""
  2171. #: scripts/dpkg-source.pl:1432
  2172. #, perl-format
  2173. msgid "expected [ +-] at start of line %d of diff `%s'"
  2174. msgstr "förväntade [ + ] vid början av rad %d i diffen \"%s\""
  2175. #: scripts/dpkg-source.pl:1437
  2176. #, perl-format
  2177. msgid "expected ^@@ at line %d of diff `%s'"
  2178. msgstr "förväntade ^@@ på rad %d i diffen \"%s\""
  2179. #: scripts/dpkg-source.pl:1448
  2180. msgid "fork for tar -xkf -"
  2181. msgstr "grenar för tar -xkf -"
  2182. #: scripts/dpkg-source.pl:1450
  2183. msgid "reopen gzip for tar -xkf -"
  2184. msgstr "öppnar gzip på nytt för tar -xkf -"
  2185. #: scripts/dpkg-source.pl:1453
  2186. #, perl-format
  2187. msgid "cannot chdir to `%s' for tar extract"
  2188. msgstr "kan inte chdir till \"%s\" för tar-uppackning"
  2189. #: scripts/dpkg-source.pl:1455
  2190. msgid "exec tar -xkf -"
  2191. msgstr "exekverar tar -xkf -"
  2192. #: scripts/dpkg-source.pl:1458
  2193. msgid "wait for tar -xkf -"
  2194. msgstr "väntar på tar -xkf -"
  2195. #: scripts/dpkg-source.pl:1490
  2196. #, perl-format
  2197. msgid "Unable to open dir %s"
  2198. msgstr "Kan inte öppna katalogen %s"
  2199. #: scripts/dpkg-source.pl:1492
  2200. #, perl-format
  2201. msgid "Unable to close dir %s"
  2202. msgstr "Kan inte stänga katalogen %s"
  2203. #: scripts/dpkg-source.pl:1495 scripts/dpkg-source.pl:1503
  2204. #: scripts/dpkg-source.pl:1508
  2205. #, perl-format
  2206. msgid "Unable to rename %s to %s"
  2207. msgstr "Kan inte byta namn på %s till %s"
  2208. #: scripts/dpkg-source.pl:1500
  2209. #, perl-format
  2210. msgid "Unable to mkdir %s"
  2211. msgstr "Kan inte mkdir %s"
  2212. #: scripts/dpkg-source.pl:1516
  2213. msgid "reopen stderr for tar to grep out blocks message"
  2214. msgstr "öppnar stderr på nytt för tar för att grep:a ut blockmeddelande"
  2215. #: scripts/dpkg-source.pl:1526
  2216. #, perl-format
  2217. msgid "checktype %s (%s)"
  2218. msgstr "kontrollerar typ %s (%s)"
  2219. #: scripts/dpkg-source.pl:1534
  2220. msgid "only one of -x or -b allowed, and only once"
  2221. msgstr "endast en av -x och -b tillåts, och endast en gång"
  2222. #: scripts/dpkg-source.pl:1539
  2223. #, perl-format
  2224. msgid "%s: cannot represent change to %s: %s"
  2225. msgstr "%s: kan inte representera ändringen för %s: %s"
  2226. #: scripts/dpkg-source.pl:1541 scripts/dpkg-source.pl:1550
  2227. msgid "write syserr unrep"
  2228. msgstr "skriver systemfel i unrep"
  2229. #: scripts/dpkg-source.pl:1546
  2230. #, perl-format
  2231. msgid ""
  2232. "%s: cannot represent change to %s:\n"
  2233. "%s: new version is %s\n"
  2234. "%s: old version is %s\n"
  2235. msgstr ""
  2236. "%s: kan inte representera ändringen på %s:\n"
  2237. "%s: ny versionen är %s\n"
  2238. "%s: gamla versionen är %s\n"
  2239. #: scripts/dpkg-source.pl:1568 scripts/dpkg-source.pl:1599
  2240. #, perl-format
  2241. msgid "unknown compression type on file %s"
  2242. msgstr "okänd komprimeringstyp på filen %s"
  2243. #: scripts/dpkg-source.pl:1575
  2244. #, perl-format
  2245. msgid "create file %s"
  2246. msgstr "skapar filen %s"
  2247. #: scripts/dpkg-source.pl:1576
  2248. msgid "pipe for gzip"
  2249. msgstr "rör för gzip"
  2250. #: scripts/dpkg-source.pl:1577
  2251. msgid "fork for gzip"
  2252. msgstr "grenar för gzip"
  2253. #: scripts/dpkg-source.pl:1579
  2254. msgid "reopen gzip pipe"
  2255. msgstr "öppnar gzip-rör på nytt"
  2256. #: scripts/dpkg-source.pl:1581
  2257. msgid "reopen tar"
  2258. msgstr "öppnar tar på nytt"
  2259. #: scripts/dpkg-source.pl:1582
  2260. msgid "exec gzip"
  2261. msgstr "exekverar gzip"
  2262. #: scripts/dpkg-source.pl:1602
  2263. #, perl-format
  2264. msgid "read file %s"
  2265. msgstr "läser filen %s"
  2266. #: scripts/dpkg-source.pl:1603
  2267. #, perl-format
  2268. msgid "pipe for %s"
  2269. msgstr "rör för %s"
  2270. #: scripts/dpkg-source.pl:1604
  2271. #, perl-format
  2272. msgid "fork for %s"
  2273. msgstr "grenar för %s"
  2274. #: scripts/dpkg-source.pl:1606
  2275. #, perl-format
  2276. msgid "reopen %s pipe"
  2277. msgstr "öppnar %s-rör på nytt"
  2278. #: scripts/dpkg-source.pl:1608
  2279. msgid "reopen input file"
  2280. msgstr "öppnar indatafilen på nytt"
  2281. #: scripts/dpkg-source.pl:1609
  2282. #, perl-format
  2283. msgid "exec %s"
  2284. msgstr "exekverar %s"
  2285. #: scripts/dpkg-source.pl:1616
  2286. msgid "wait for gzip"
  2287. msgstr "väntar på gzip"
  2288. #: scripts/dpkg-source.pl:1626
  2289. #, perl-format
  2290. msgid "tried to add file `%s' twice"
  2291. msgstr "försökte lägga till filen \"%s\" två gånger"
  2292. #: scripts/dpkg-source.pl:1627
  2293. #, perl-format
  2294. msgid "could not stat output file `%s'"
  2295. msgstr "kunde inte ta status på utdatafilen \"%s\""
  2296. #: scripts/dpkg-source.pl:1648
  2297. #, perl-format
  2298. msgid "bogus character `\\%s' in `%s'"
  2299. msgstr "skräptecken \"\\%s\" i \"%s\""
  2300. #: scripts/changelog/debian.pl:43
  2301. #, perl-format
  2302. msgid ""
  2303. "Usage: %s [<option>]\n"
  2304. "\n"
  2305. "Options:\n"
  2306. " -l<changelog> use <changelog> as the file name when reporting.\n"
  2307. " -v<versionsince> print changes since <versionsince>.\n"
  2308. " -h, --help print this help message.\n"
  2309. " --version print program version.\n"
  2310. msgstr ""
  2311. "Använd: %s [<flagga>]\n"
  2312. "\n"
  2313. "Flaggor:\n"
  2314. " -l<ändringslogg> används <ändringslogg> som filnamn vid rapportering.\n"
  2315. " -v<sedanversion> skriv ändringar sedan <sedanversion>.\n"
  2316. " -h, --help visa detta hjälpmeddelande.\n"
  2317. " --version visa versionsnummer.\n"
  2318. #: scripts/changelog/debian.pl:83
  2319. msgid "-v<since> option specifies most recent version"
  2320. msgstr "-v<sedan>-flaggan anger den senaste versionen"
  2321. #: scripts/changelog/debian.pl:90
  2322. #, perl-format
  2323. msgid "found start of entry where expected %s"
  2324. msgstr "hittade början på posten där %s förväntades"
  2325. #: scripts/changelog/debian.pl:97
  2326. #, perl-format
  2327. msgid "bad key-value after `;': `%s'"
  2328. msgstr "felaktigt nyckelvärde efter \";\": \"%s\""
  2329. #: scripts/changelog/debian.pl:100
  2330. #, perl-format
  2331. msgid "repeated key-value %s"
  2332. msgstr "repeterat nyckelvärde %s"
  2333. #: scripts/changelog/debian.pl:103
  2334. msgid "badly formatted urgency value"
  2335. msgstr "felaktigt formaterat värde för \"urgency\""
  2336. #: scripts/changelog/debian.pl:113
  2337. #, perl-format
  2338. msgid "unknown urgency value %s - comparing very low"
  2339. msgstr "okänt värde %s för \"urgency\" - jämförs som väldigt lågt"
  2340. #: scripts/changelog/debian.pl:116
  2341. #, perl-format
  2342. msgid "urgency >%s<"
  2343. msgstr "brådska \"%s\""
  2344. #: scripts/changelog/debian.pl:134
  2345. #, perl-format
  2346. msgid "unknown key-value key %s - copying to %s"
  2347. msgstr "okänt nyckelvärdenyckel %s - kopierar till %s"
  2348. #: scripts/changelog/debian.pl:141
  2349. msgid "badly formatted heading line"
  2350. msgstr "felaktigt formaterad rubrikrad"
  2351. #: scripts/changelog/debian.pl:144
  2352. #, perl-format
  2353. msgid "found trailer where expected %s"
  2354. msgstr "hittade fot där %s förväntades"
  2355. #: scripts/changelog/debian.pl:151
  2356. msgid "badly formatted trailer line"
  2357. msgstr "felaktigt formaterad fotrad"
  2358. #: scripts/changelog/debian.pl:154
  2359. #, perl-format
  2360. msgid "found change data where expected %s"
  2361. msgstr "hittade ändringsdata där %s förväntades"
  2362. #: scripts/changelog/debian.pl:160
  2363. #, perl-format
  2364. msgid "found blank line where expected %s"
  2365. msgstr "hittade blank rad där %s förväntades"
  2366. #: scripts/changelog/debian.pl:163
  2367. msgid "unrecognised line"
  2368. msgstr "okänd rad"
  2369. #: scripts/changelog/debian.pl:167
  2370. #, perl-format
  2371. msgid "found eof where expected %s"
  2372. msgstr "hittade filslut där %s förväntades"
  2373. #: scripts/changelog/debian.pl:184 scripts/changelog/debian.pl:189
  2374. #, perl-format
  2375. msgid "%s, at file %s line %d"
  2376. msgstr "%s, i filen %s på rad %d"
  2377. #: scripts/Dpkg/Arch.pm:69
  2378. msgid ""
  2379. "Couldn't determine gcc system type, falling back to default (native "
  2380. "compilation)"
  2381. msgstr ""
  2382. "Kunde inte bestämma gcc-systemtyp, faller tillbaka på standard (lokal "
  2383. "kompilering)"
  2384. #: scripts/Dpkg/Arch.pm:78
  2385. #, perl-format
  2386. msgid ""
  2387. "Unknown gcc system type %s, falling back to default (native compilation)"
  2388. msgstr ""
  2389. "Okänd gcc-systemtyp %s, faller tillbaka på standard (lokal kompilering)"
  2390. #: scripts/Dpkg/Arch.pm:121
  2391. msgid "unable to open cputable"
  2392. msgstr "kan inte öppna cputable"
  2393. #: scripts/Dpkg/Arch.pm:138
  2394. msgid "unable to open ostable"
  2395. msgstr "kan inte öppna ostable"
  2396. #: scripts/Dpkg/Arch.pm:157
  2397. msgid "unable to open triplettable"
  2398. msgstr "kan inte öppna triplettable"
  2399. #: scripts/Dpkg/Shlibs.pm:51
  2400. #, perl-format
  2401. msgid "couldn't open %s"
  2402. msgstr "kan inte öppna \"%s\""
  2403. #: scripts/Dpkg/Shlibs.pm:70
  2404. #, perl-format
  2405. msgid "couldn't close %s"
  2406. msgstr "Kunde inte stänga %s"
  2407. #: scripts/Dpkg/Shlibs/Objdump.pm:74
  2408. msgid "cannot fork for objdump"
  2409. msgstr "kunde inte grena för objdump"
  2410. #: scripts/Dpkg/Shlibs/Objdump.pm:82
  2411. #, perl-format
  2412. msgid "objdump on `%s'"
  2413. msgstr "objdump på \"%s\""
  2414. #: scripts/Dpkg/Shlibs/Objdump.pm:90
  2415. #, perl-format
  2416. msgid "Can't open %s for test: %s"
  2417. msgstr "Kunde inte öppna %s för testning: %s"
  2418. #: scripts/Dpkg/Shlibs/Objdump.pm:148
  2419. #, perl-format
  2420. msgid "Can't execute objdump: %s"
  2421. msgstr "kunde inte exekvera objdump: %s"
  2422. #: scripts/Dpkg/Shlibs/Objdump.pm:286
  2423. #, perl-format
  2424. msgid "Couldn't parse dynamic symbol definition: %s"
  2425. msgstr "Kunde inte tolka definition av dynamisk symbol: %s"
  2426. #: scripts/Dpkg/Shlibs/SymbolFile.pm:100
  2427. #, perl-format
  2428. msgid "Can't open %s: %s"
  2429. msgstr "Kan inte öppna %s: %s"
  2430. #: scripts/Dpkg/Shlibs/SymbolFile.pm:106
  2431. #, perl-format
  2432. msgid "Symbol information must be preceded by a header (file %s, line %s)."
  2433. msgstr "Symbolinformation måste föregås av ett huvud (fil %s, rad %s)."
  2434. #: scripts/Dpkg/Shlibs/SymbolFile.pm:146
  2435. #, perl-format
  2436. msgid "Failed to parse a line in %s: %s"
  2437. msgstr "misslyckades att tolka en rad i %s: %s"
  2438. #: scripts/Dpkg/Shlibs/SymbolFile.pm:160
  2439. #, perl-format
  2440. msgid "Can't open %s for writing: %s"
  2441. msgstr "Kunde inte öppna %s för skrivning: %s"
  2442. #: scripts/Dpkg/Shlibs/SymbolFile.pm:189
  2443. msgid "Can't merge symbols from objects without SONAME."
  2444. msgstr "Kan inte slå ihop symboler från objekt utan SONAMN."
  2445. #: scripts/Dpkg/ErrorHandling.pm:23
  2446. msgid "warning"
  2447. msgstr "varning"
  2448. #: scripts/Dpkg/ErrorHandling.pm:37 scripts/Dpkg/ErrorHandling.pm:43
  2449. msgid "failure"
  2450. msgstr "misslyckades"
  2451. #: scripts/Dpkg/ErrorHandling.pm:48
  2452. msgid "error"
  2453. msgstr "fel"
  2454. #: scripts/Dpkg/ErrorHandling.pm:53
  2455. msgid "internal error"
  2456. msgstr "internt fel"
  2457. #: scripts/Dpkg/ErrorHandling.pm:60
  2458. #, perl-format
  2459. msgid "unknown information field '%s' in input data in %s"
  2460. msgstr "okänt informationsfält \"%s\" i indata i %s"
  2461. #: scripts/Dpkg/ErrorHandling.pm:73
  2462. #, perl-format
  2463. msgid "%s gave error exit status %s"
  2464. msgstr "%s returnerade felkod %s"
  2465. #: scripts/Dpkg/ErrorHandling.pm:75
  2466. #, perl-format
  2467. msgid "%s died from signal %s"
  2468. msgstr "%s dog av signal %s"
  2469. #: scripts/Dpkg/ErrorHandling.pm:77
  2470. #, perl-format
  2471. msgid "%s failed with unknown exit code %d"
  2472. msgstr "%s misslyckades med okänd felkod %d"
  2473. #~ msgid "`md5sum < %s' exited with %d"
  2474. #~ msgstr "\"md5sum < %s\" avslutade med %d"
  2475. #~ msgid "%s is empty"
  2476. #~ msgstr "%s är tom"
  2477. #~ msgid ""
  2478. #~ "couldn't find library %s (note: only packages with 'shlibs' files are "
  2479. #~ "looked into)."
  2480. #~ msgstr ""
  2481. #~ "hittade inte biblioteket %s (observera: ser bara på paket med \"shlibs\"-"
  2482. #~ "filer)."
  2483. #~ msgid "can't parse dependency %s"
  2484. #~ msgstr "kan inte tolka beroende %s"
  2485. #~ msgid "%s: failure: %s: %s"
  2486. #~ msgstr "%s: misslyckades: %s: %s"
  2487. #~ msgid "%s: error: %s"
  2488. #~ msgstr "%s: fel: %s"
  2489. #~ msgid "unable to open '%s' for test"
  2490. #~ msgstr "kunde inte öppna \"%s\" för test"
  2491. #~ msgid "unable to read first four bytes of '%s' as magic number"
  2492. #~ msgstr "kunde inte läsa de första fyra byten av \"%s\" som magiskt nummer"
  2493. #~ msgid "unrecognized file type for '%s'"
  2494. #~ msgstr "okänd filtyp för \"%s\""
  2495. #~ msgid "couldn't open /etc/ld.so.conf: %s"
  2496. #~ msgstr "kunde inte öppna /etc/ld.so.conf: %s"
  2497. #~ msgid "format of 'NEEDED %s' not recognized"
  2498. #~ msgstr "formatet på \"NEEDED %s\" är okänt"
  2499. #~ msgid "could not find any packages for %s"
  2500. #~ msgstr "kunde inte hitta några paket för %s"
  2501. #~ msgid ""
  2502. #~ "unable to find dependency information for shared library %s (soname %s, "
  2503. #~ "path %s, dependency field %s)"
  2504. #~ msgstr ""
  2505. #~ "kunde inte hitta beroendeinformation för delat bibliotek %s (sonamn %s, "
  2506. #~ "sökväg %s, beroendefält %s)"
  2507. #~ msgid "chown of `%s'"
  2508. #~ msgstr "byter ägare (chown) på \"%s\""
  2509. #~ msgid "write output entry"
  2510. #~ msgstr "skriver utdatapost"
  2511. #~ msgid "write userdef output entry"
  2512. #~ msgstr "skriver användardefinierad utdatapost"
  2513. #~ msgid "close output"
  2514. #~ msgstr "stänger utdata"
  2515. #~ msgid "tarfile `%s' contains object with/../ in its name (%s)"
  2516. #~ msgstr "tarfilen \"%s\" innehåller objekt med /../ i namnet (%s)"