de.po 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066
  1. # German messages for the apt suite.
  2. # Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others.
  3. # Holger Wansing <linux@wansing-online.de>, 2008, 2009.
  4. # Jens Seidel <jensseidel@users.sf.net>, 2008.
  5. # Michael Piefel <piefel@informatik.hu-berlin.de>, 2001, 2002, 2003, 2004, 2006.
  6. # Rüdiger Kuhlmann <Uebersetzung@ruediger-kuhlmann.de>, 2002.
  7. #
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: apt 0.7.21\n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2009-08-27 19:43+0200\n"
  14. "PO-Revision-Date: 2009-07-12 01:12+0200\n"
  15. "Last-Translator: Holger Wansing <linux@wansing-online.de>\n"
  16. "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: 8bit\n"
  20. "Plural-Forms: nplurals=2; plural=(n != 1);>\n"
  21. #: cmdline/apt-cache.cc:141
  22. #, c-format
  23. msgid "Package %s version %s has an unmet dep:\n"
  24. msgstr "Paket %s Version %s hat eine nicht erfüllte Abhängigkeit:\n"
  25. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  26. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  27. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  28. #, c-format
  29. msgid "Unable to locate package %s"
  30. msgstr "Kann Paket %s nicht finden"
  31. #: cmdline/apt-cache.cc:245
  32. msgid "Total package names: "
  33. msgstr "Gesamtzahl an Paketnamen: "
  34. #: cmdline/apt-cache.cc:285
  35. msgid " Normal packages: "
  36. msgstr " davon gewöhnliche Pakete: "
  37. #: cmdline/apt-cache.cc:286
  38. msgid " Pure virtual packages: "
  39. msgstr " davon rein virtuelle Pakete: "
  40. #: cmdline/apt-cache.cc:287
  41. msgid " Single virtual packages: "
  42. msgstr " davon einzelne virtuelle Pakete: "
  43. #: cmdline/apt-cache.cc:288
  44. msgid " Mixed virtual packages: "
  45. msgstr " davon gemischte virtuelle Pakete: "
  46. #: cmdline/apt-cache.cc:289
  47. msgid " Missing: "
  48. msgstr " davon fehlend: "
  49. #: cmdline/apt-cache.cc:291
  50. msgid "Total distinct versions: "
  51. msgstr "Gesamtzahl an unterschiedlichen Versionen: "
  52. #: cmdline/apt-cache.cc:293
  53. msgid "Total distinct descriptions: "
  54. msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: "
  55. #: cmdline/apt-cache.cc:295
  56. msgid "Total dependencies: "
  57. msgstr "Gesamtzahl an Abhängigkeiten: "
  58. #: cmdline/apt-cache.cc:298
  59. msgid "Total ver/file relations: "
  60. msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
  61. #: cmdline/apt-cache.cc:300
  62. msgid "Total Desc/File relations: "
  63. msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: "
  64. #: cmdline/apt-cache.cc:302
  65. msgid "Total Provides mappings: "
  66. msgstr "Gesamtzahl an Bereitstellungen: "
  67. #: cmdline/apt-cache.cc:314
  68. msgid "Total globbed strings: "
  69. msgstr "Gesamtzahl an Mustern: "
  70. #: cmdline/apt-cache.cc:328
  71. msgid "Total dependency version space: "
  72. msgstr "Gesamtmenge an Abhängigkeits/Versionsspeicher: "
  73. #: cmdline/apt-cache.cc:333
  74. msgid "Total slack space: "
  75. msgstr "Gesamtmenge an Slack: "
  76. #: cmdline/apt-cache.cc:341
  77. msgid "Total space accounted for: "
  78. msgstr "Gesamtmenge an Speicher: "
  79. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  80. #, c-format
  81. msgid "Package file %s is out of sync."
  82. msgstr "Paketdatei %s ist nicht synchronisiert."
  83. #: cmdline/apt-cache.cc:1297
  84. msgid "You must give exactly one pattern"
  85. msgstr "Sie müssen genau ein Muster angeben"
  86. #: cmdline/apt-cache.cc:1451
  87. msgid "No packages found"
  88. msgstr "Keine Pakete gefunden"
  89. #: cmdline/apt-cache.cc:1528
  90. msgid "Package files:"
  91. msgstr "Paketdateien:"
  92. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  93. msgid "Cache is out of sync, can't x-ref a package file"
  94. msgstr "Cache ist nicht sychron, kann eine Paketdatei nicht querverweisen"
  95. #. Show any packages have explicit pins
  96. #: cmdline/apt-cache.cc:1549
  97. msgid "Pinned packages:"
  98. msgstr "Per Pinning verwaltete Pakete:"
  99. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  100. msgid "(not found)"
  101. msgstr "(nicht gefunden)"
  102. #. Installed version
  103. #: cmdline/apt-cache.cc:1582
  104. msgid " Installed: "
  105. msgstr " Installiert: "
  106. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  107. msgid "(none)"
  108. msgstr "(keine)"
  109. #. Candidate Version
  110. #: cmdline/apt-cache.cc:1589
  111. msgid " Candidate: "
  112. msgstr " Kandidat: "
  113. #: cmdline/apt-cache.cc:1599
  114. msgid " Package pin: "
  115. msgstr " Paket-Pinning: "
  116. #. Show the priority tables
  117. #: cmdline/apt-cache.cc:1608
  118. msgid " Version table:"
  119. msgstr " Versions-Tabelle:"
  120. #: cmdline/apt-cache.cc:1623
  121. #, c-format
  122. msgid " %4i %s\n"
  123. msgstr " %4i %s\n"
  124. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  125. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  126. #: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144
  127. #, c-format
  128. msgid "%s %s for %s compiled on %s %s\n"
  129. msgstr "%s %s für %s, kompiliert am %s %s\n"
  130. #: cmdline/apt-cache.cc:1725
  131. msgid ""
  132. "Usage: apt-cache [options] command\n"
  133. " apt-cache [options] add file1 [file2 ...]\n"
  134. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  135. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  136. "\n"
  137. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  138. "cache files, and query information from them\n"
  139. "\n"
  140. "Commands:\n"
  141. " add - Add a package file to the source cache\n"
  142. " gencaches - Build both the package and source cache\n"
  143. " showpkg - Show some general information for a single package\n"
  144. " showsrc - Show source records\n"
  145. " stats - Show some basic statistics\n"
  146. " dump - Show the entire file in a terse form\n"
  147. " dumpavail - Print an available file to stdout\n"
  148. " unmet - Show unmet dependencies\n"
  149. " search - Search the package list for a regex pattern\n"
  150. " show - Show a readable record for the package\n"
  151. " depends - Show raw dependency information for a package\n"
  152. " rdepends - Show reverse dependency information for a package\n"
  153. " pkgnames - List the names of all packages in the system\n"
  154. " dotty - Generate package graphs for GraphViz\n"
  155. " xvcg - Generate package graphs for xvcg\n"
  156. " policy - Show policy settings\n"
  157. "\n"
  158. "Options:\n"
  159. " -h This help text.\n"
  160. " -p=? The package cache.\n"
  161. " -s=? The source cache.\n"
  162. " -q Disable progress indicator.\n"
  163. " -i Show only important deps for the unmet command.\n"
  164. " -c=? Read this configuration file\n"
  165. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  166. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  167. msgstr ""
  168. "Aufruf: apt-cache [Optionen] befehl\n"
  169. " apt-cache [Optionen] add datei1 [datei2 ...]\n"
  170. " apt-cache [Optionen] showpkg paket1 [paket2 ...]\n"
  171. " apt-cache [Optionen] showsrc paket1 [paket2 ...]\n"
  172. "\n"
  173. "apt-cache ist ein Low-Level-Werkzeug, um die binären Cache-Dateien von\n"
  174. "APT zu manipulieren und Informationen daraus zu erfragen.\n"
  175. "\n"
  176. "Befehle:\n"
  177. " add – Paket-Datei dem Quell-Cache hinzufügen\n"
  178. " gencaches – Paket- und Quell-Cache neu erzeugen\n"
  179. " showpkg – grundsätzliche Informationen für ein einzelnes Paket zeigen\n"
  180. " showsrc – Aufzeichnungen zu Quellen zeigen\n"
  181. " stats – einige grundlegenden Statistiken zeigen\n"
  182. " dump – gesamte Datei in Kurzform zeigen\n"
  183. " dumpavail – gesamte Datei verfügbarer Pakete ausgeben\n"
  184. " unmet – unerfüllte Abhängigkeiten zeigen\n"
  185. " search – in der Paketliste mittels regulären Ausdrucks suchen\n"
  186. " show – einen lesbaren Datensatz für das Paket zeigen\n"
  187. " depends – normale Abhängigkeitsinformationen für ein Paket zeigen\n"
  188. " rdepends – umgekehrte Abhängigkeitsinformationen für ein Paket zeigen\n"
  189. " pkgnames – die Namen aller Pakete im System auflisten\n"
  190. " dotty – einen Paketgraph zur Verwendung mit GraphViz erzeugen\n"
  191. " xvcg – einen Paketgraph zur Verwendung mit xvcg erzeugen\n"
  192. " policy – »policy«-Einstellungen zeigen\n"
  193. "\n"
  194. "Optionen:\n"
  195. " -h dieser Hilfe-Text.\n"
  196. " -p=? der Paket-Cache.\n"
  197. " -s=? der Quell-Cache.\n"
  198. " -q Fortschrittsanzeige abschalten\n"
  199. " -i nur wichtige Abhängigkeiten für den »unmet«-Befehl zeigen\n"
  200. " -c=? diese Konfigurationsdatei lesen\n"
  201. " -o=? eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/tmp\n"
  202. "Weitere Informationen finden Sie unter apt-cache(8) und apt.conf(5).\n"
  203. #: cmdline/apt-cdrom.cc:77
  204. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  205. msgstr ""
  206. "Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 2.1r1 "
  207. "Disk 1«"
  208. #: cmdline/apt-cdrom.cc:92
  209. msgid "Please insert a Disc in the drive and press enter"
  210. msgstr ""
  211. "Bitte legen Sie ein Medium ins Laufwerk und drücken Sie die Eingabetaste"
  212. #: cmdline/apt-cdrom.cc:114
  213. msgid "Repeat this process for the rest of the CDs in your set."
  214. msgstr "Wiederholen Sie dieses Prozedere für die restlichen CDs Ihres Satzes."
  215. #: cmdline/apt-config.cc:41
  216. msgid "Arguments not in pairs"
  217. msgstr "Argumente nicht paarweise"
  218. #: cmdline/apt-config.cc:76
  219. msgid ""
  220. "Usage: apt-config [options] command\n"
  221. "\n"
  222. "apt-config is a simple tool to read the APT config file\n"
  223. "\n"
  224. "Commands:\n"
  225. " shell - Shell mode\n"
  226. " dump - Show the configuration\n"
  227. "\n"
  228. "Options:\n"
  229. " -h This help text.\n"
  230. " -c=? Read this configuration file\n"
  231. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  232. msgstr ""
  233. "Aufruf: apt-config [optionen] befehl\n"
  234. "\n"
  235. "apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu "
  236. "lesen.\n"
  237. "\n"
  238. "Befehle:\n"
  239. " shell – Shell-Modus\n"
  240. " dump – Die Konfiguration ausgeben\n"
  241. "\n"
  242. "Optionen:\n"
  243. " -h Dieser Hilfetext\n"
  244. " -c=? Diese Konfigurationsdatei lesen\n"
  245. " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
  246. "tmp\n"
  247. #: cmdline/apt-extracttemplates.cc:98
  248. #, c-format
  249. msgid "%s not a valid DEB package."
  250. msgstr "%s ist kein gültiges DEB-Paket."
  251. #: cmdline/apt-extracttemplates.cc:232
  252. msgid ""
  253. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  254. "\n"
  255. "apt-extracttemplates is a tool to extract config and template info\n"
  256. "from debian packages\n"
  257. "\n"
  258. "Options:\n"
  259. " -h This help text\n"
  260. " -t Set the temp dir\n"
  261. " -c=? Read this configuration file\n"
  262. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  263. msgstr ""
  264. "Aufruf: apt-extracttemplates datei1 [datei2 ...]\n"
  265. "\n"
  266. "apt-extracttemplates ist ein Werkzeug zum Extrahieren von Konfigurations- "
  267. "und\n"
  268. "Template-Informationen aus Debian-Paketen.\n"
  269. "\n"
  270. "Optionen:\n"
  271. " -h Dieser Hilfetext\n"
  272. " -t Das temporäre Verzeichnis setzen\n"
  273. " -c=? Diese Konfigurationsdatei lesen\n"
  274. " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
  275. "tmp\n"
  276. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  277. #, c-format
  278. msgid "Unable to write to %s"
  279. msgstr "Kann nicht nach %s schreiben"
  280. #: cmdline/apt-extracttemplates.cc:310
  281. msgid "Cannot get debconf version. Is debconf installed?"
  282. msgstr "Kann debconf-Version nicht ermitteln. Ist debconf installiert?"
  283. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  284. msgid "Package extension list is too long"
  285. msgstr "Paketerweiterungsliste ist zu lang"
  286. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  287. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  288. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  289. #, c-format
  290. msgid "Error processing directory %s"
  291. msgstr "Fehler beim Verarbeiten von Verzeichnis %s"
  292. #: ftparchive/apt-ftparchive.cc:251
  293. msgid "Source extension list is too long"
  294. msgstr "Quellerweiterungsliste ist zu lang"
  295. #: ftparchive/apt-ftparchive.cc:368
  296. msgid "Error writing header to contents file"
  297. msgstr "Fehler beim Schreiben der Kopfzeilen in die Inhaltsdatei"
  298. #: ftparchive/apt-ftparchive.cc:398
  299. #, c-format
  300. msgid "Error processing contents %s"
  301. msgstr "Fehler beim Verarbeiten der Inhaltsdatei %s"
  302. #: ftparchive/apt-ftparchive.cc:553
  303. msgid ""
  304. "Usage: apt-ftparchive [options] command\n"
  305. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  306. " sources srcpath [overridefile [pathprefix]]\n"
  307. " contents path\n"
  308. " release path\n"
  309. " generate config [groups]\n"
  310. " clean config\n"
  311. "\n"
  312. "apt-ftparchive generates index files for Debian archives. It supports\n"
  313. "many styles of generation from fully automated to functional replacements\n"
  314. "for dpkg-scanpackages and dpkg-scansources\n"
  315. "\n"
  316. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  317. "Package file contains the contents of all the control fields from\n"
  318. "each package as well as the MD5 hash and filesize. An override file\n"
  319. "is supported to force the value of Priority and Section.\n"
  320. "\n"
  321. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  322. "The --source-override option can be used to specify a src override file\n"
  323. "\n"
  324. "The 'packages' and 'sources' command should be run in the root of the\n"
  325. "tree. BinaryPath should point to the base of the recursive search and \n"
  326. "override file should contain the override flags. Pathprefix is\n"
  327. "appended to the filename fields if present. Example usage from the \n"
  328. "Debian archive:\n"
  329. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  330. " dists/potato/main/binary-i386/Packages\n"
  331. "\n"
  332. "Options:\n"
  333. " -h This help text\n"
  334. " --md5 Control MD5 generation\n"
  335. " -s=? Source override file\n"
  336. " -q Quiet\n"
  337. " -d=? Select the optional caching database\n"
  338. " --no-delink Enable delinking debug mode\n"
  339. " --contents Control contents file generation\n"
  340. " -c=? Read this configuration file\n"
  341. " -o=? Set an arbitrary configuration option"
  342. msgstr ""
  343. "Aufruf: apt-ftparchive [optionen] befehl\n"
  344. "Befehle: packages Binärpfad [Override-Datei [Pfadpräfix]]\n"
  345. " sources Quellpfad [Override-Datei [Pfadpräfix]]\n"
  346. " contents Pfad\n"
  347. " release Pfad\n"
  348. " generate Konfigurationsdatei [Gruppen]\n"
  349. " clean Konfigurationsdatei\n"
  350. "\n"
  351. "apt-ftparchive generiert Indexdateien für Debian-Archive. Es unterstützt "
  352. "viele\n"
  353. "verschiedene Arten der Generierung, von vollautomatisch bis hin zu den\n"
  354. "funktionalen Äquivalenten von dpkg-scanpackages und dpkg-scansources.\n"
  355. "\n"
  356. "apt-ftparchive generiert Package-Dateien aus einem Baum von .debs. Die "
  357. "Package-\n"
  358. "Datei enthält den Inhalt aller Kontrollfelder aus jedem Paket sowie einen "
  359. "MD5-\n"
  360. "Hashwert und die Dateigröße. Eine Override-Datei wird unterstützt, um Werte "
  361. "für\n"
  362. "Priorität und Sektion zu erzwingen.\n"
  363. "\n"
  364. "Auf ganz ähnliche Weise erzeugt apt-ftparchive Sources-Dateien aus einem "
  365. "Baum\n"
  366. "von .dscs. Die Option --source-override kann benutzt werden, um eine "
  367. "Override-\n"
  368. "Datei für Quellen anzugeben.\n"
  369. "\n"
  370. "Die Befehle »packages« und »source« sollten in der Wurzel des Baumes "
  371. "aufgerufen\n"
  372. "werden. Binärpfad sollte auf die Basis der rekursiven Suche zeigen und\n"
  373. "Override-Datei sollte die Override-Flags enthalten. Pfadpräfix wird, so\n"
  374. "vorhanden, jedem Dateinamen vorangestellt. Beispielaufruf im Debian-Archiv:\n"
  375. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  376. " dists/potato/main/binary-i386/Packages\n"
  377. "\n"
  378. "Optionen:\n"
  379. " -h dieser Hilfe-Text\n"
  380. " --md5 MD5-Hashes erzeugen\n"
  381. " -s=? Override-Datei für Quellen\n"
  382. " -q ruhig\n"
  383. " -d=? optionale Cache-Datenbank auswählen\n"
  384. " --no-delink Debug-Modus für Delinking setzen\n"
  385. " --contents Inhaltsdatei erzeugen\n"
  386. " -c=? diese Konfigurationsdatei lesen\n"
  387. " -o=? eine beliebige Konfigurationsoption setzen"
  388. #: ftparchive/apt-ftparchive.cc:759
  389. msgid "No selections matched"
  390. msgstr "Keine Auswahl passt"
  391. #: ftparchive/apt-ftparchive.cc:832
  392. #, c-format
  393. msgid "Some files are missing in the package file group `%s'"
  394. msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«"
  395. #: ftparchive/cachedb.cc:43
  396. #, c-format
  397. msgid "DB was corrupted, file renamed to %s.old"
  398. msgstr "DB wurde beschädigt, Datei umbenannt in %s.old"
  399. #: ftparchive/cachedb.cc:61
  400. #, c-format
  401. msgid "DB is old, attempting to upgrade %s"
  402. msgstr "DB ist alt, versuche %s zu erneuern"
  403. #: ftparchive/cachedb.cc:72
  404. msgid ""
  405. "DB format is invalid. If you upgraded from a older version of apt, please "
  406. "remove and re-create the database."
  407. msgstr ""
  408. "DB-Format ist ungültig. Wenn Sie ein Update von einer älteren Version von "
  409. "apt gemacht haben, entfernen Sie bitte die Datenbank und erstellen sie neu."
  410. #: ftparchive/cachedb.cc:77
  411. #, c-format
  412. msgid "Unable to open DB file %s: %s"
  413. msgstr "Kann DB-Datei %s nicht öffnen: %s"
  414. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  415. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  416. #, c-format
  417. msgid "Failed to stat %s"
  418. msgstr "Konnte kein »stat« auf %s durchführen."
  419. #: ftparchive/cachedb.cc:238
  420. msgid "Archive has no control record"
  421. msgstr "Archiv hat keinen Steuerungs-Datensatz"
  422. #: ftparchive/cachedb.cc:444
  423. msgid "Unable to get a cursor"
  424. msgstr "Kann keinen Cursor bekommen"
  425. #: ftparchive/writer.cc:76
  426. #, c-format
  427. msgid "W: Unable to read directory %s\n"
  428. msgstr "W: Kann Verzeichnis %s nicht lesen\n"
  429. #: ftparchive/writer.cc:81
  430. #, c-format
  431. msgid "W: Unable to stat %s\n"
  432. msgstr "W: Kann kein »stat« auf %s durchführen\n"
  433. #: ftparchive/writer.cc:132
  434. msgid "E: "
  435. msgstr "F: "
  436. #: ftparchive/writer.cc:134
  437. msgid "W: "
  438. msgstr "W: "
  439. #: ftparchive/writer.cc:141
  440. msgid "E: Errors apply to file "
  441. msgstr "F: Fehler gehören zu Datei "
  442. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  443. #, c-format
  444. msgid "Failed to resolve %s"
  445. msgstr "Konnte %s nicht auflösen"
  446. #: ftparchive/writer.cc:170
  447. msgid "Tree walking failed"
  448. msgstr "Verzeichniswechsel im Verzeichnisbaum fehlgeschlagen"
  449. #: ftparchive/writer.cc:195
  450. #, c-format
  451. msgid "Failed to open %s"
  452. msgstr "Konnte %s nicht öffnen"
  453. #: ftparchive/writer.cc:254
  454. #, c-format
  455. msgid " DeLink %s [%s]\n"
  456. msgstr " DeLink %s [%s]\n"
  457. #: ftparchive/writer.cc:262
  458. #, c-format
  459. msgid "Failed to readlink %s"
  460. msgstr "Kann kein readlink auf %s durchführen"
  461. #: ftparchive/writer.cc:266
  462. #, c-format
  463. msgid "Failed to unlink %s"
  464. msgstr "Konnte %s nicht entfernen (unlink)"
  465. #: ftparchive/writer.cc:273
  466. #, c-format
  467. msgid "*** Failed to link %s to %s"
  468. msgstr "*** Konnte keine Verknüpfung von %s zu %s anlegen"
  469. #: ftparchive/writer.cc:283
  470. #, c-format
  471. msgid " DeLink limit of %sB hit.\n"
  472. msgstr " DeLink-Limit von %sB erreicht.\n"
  473. #: ftparchive/writer.cc:387
  474. msgid "Archive had no package field"
  475. msgstr "Archiv hatte kein Paket-Feld"
  476. #: ftparchive/writer.cc:395 ftparchive/writer.cc:610
  477. #, c-format
  478. msgid " %s has no override entry\n"
  479. msgstr " %s hat keinen Eintrag in der Override-Liste.\n"
  480. #: ftparchive/writer.cc:440 ftparchive/writer.cc:698
  481. #, c-format
  482. msgid " %s maintainer is %s not %s\n"
  483. msgstr " %s-Betreuer ist %s und nicht %s\n"
  484. #: ftparchive/writer.cc:620
  485. #, c-format
  486. msgid " %s has no source override entry\n"
  487. msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n"
  488. #: ftparchive/writer.cc:624
  489. #, c-format
  490. msgid " %s has no binary override entry either\n"
  491. msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n"
  492. #: ftparchive/contents.cc:321
  493. #, c-format
  494. msgid "Internal error, could not locate member %s"
  495. msgstr "Interner Fehler, konnte Bestandteil %s nicht finden"
  496. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  497. msgid "realloc - Failed to allocate memory"
  498. msgstr "realloc – Speicheranforderung fehlgeschlagen"
  499. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  500. #, c-format
  501. msgid "Unable to open %s"
  502. msgstr "Kann %s nicht öffnen"
  503. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  504. #, c-format
  505. msgid "Malformed override %s line %lu #1"
  506. msgstr "Missgestaltetes Override %s Zeile %lu #1"
  507. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  508. #, c-format
  509. msgid "Malformed override %s line %lu #2"
  510. msgstr "Missgestaltetes Override %s Zeile %lu #2"
  511. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  512. #, c-format
  513. msgid "Malformed override %s line %lu #3"
  514. msgstr "Missgestaltetes Override %s Zeile %lu #3"
  515. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  516. #, c-format
  517. msgid "Failed to read the override file %s"
  518. msgstr "Konnte die Override-Datei %s nicht lesen."
  519. #: ftparchive/multicompress.cc:72
  520. #, c-format
  521. msgid "Unknown compression algorithm '%s'"
  522. msgstr "Unbekannter Komprimierungsalgorithmus »%s«"
  523. #: ftparchive/multicompress.cc:102
  524. #, c-format
  525. msgid "Compressed output %s needs a compression set"
  526. msgstr "Komprimierte Ausgabe %s braucht einen Komprimierungs-Satz"
  527. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  528. msgid "Failed to create IPC pipe to subprocess"
  529. msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen"
  530. #: ftparchive/multicompress.cc:195
  531. msgid "Failed to create FILE*"
  532. msgstr "Konnte FILE* nicht erzeugen"
  533. #: ftparchive/multicompress.cc:198
  534. msgid "Failed to fork"
  535. msgstr "Fork fehlgeschlagen"
  536. #: ftparchive/multicompress.cc:212
  537. msgid "Compress child"
  538. msgstr "Komprimierungskindprozess"
  539. #: ftparchive/multicompress.cc:235
  540. #, c-format
  541. msgid "Internal error, failed to create %s"
  542. msgstr "Interner Fehler, konnte %s nicht erzeugen"
  543. #: ftparchive/multicompress.cc:286
  544. msgid "Failed to create subprocess IPC"
  545. msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht herstellen"
  546. #: ftparchive/multicompress.cc:321
  547. msgid "Failed to exec compressor "
  548. msgstr "Konnte Komprimierer nicht ausführen"
  549. #: ftparchive/multicompress.cc:360
  550. msgid "decompressor"
  551. msgstr "Dekomprimierer"
  552. #: ftparchive/multicompress.cc:403
  553. msgid "IO to subprocess/file failed"
  554. msgstr "E/A zu Kindprozess/Datei fehlgeschlagen"
  555. #: ftparchive/multicompress.cc:455
  556. msgid "Failed to read while computing MD5"
  557. msgstr "Konnte während der MD5-Berechnung nicht lesen"
  558. #: ftparchive/multicompress.cc:472
  559. #, c-format
  560. msgid "Problem unlinking %s"
  561. msgstr "Problem beim Unlinking von %s"
  562. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  563. #, c-format
  564. msgid "Failed to rename %s to %s"
  565. msgstr "Konnte %s nicht in %s umbenennen"
  566. #: cmdline/apt-get.cc:127
  567. msgid "Y"
  568. msgstr "J"
  569. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695
  570. #, c-format
  571. msgid "Regex compilation error - %s"
  572. msgstr "Fehler beim Kompilieren eines regulären Ausdrucks – %s"
  573. #: cmdline/apt-get.cc:244
  574. msgid "The following packages have unmet dependencies:"
  575. msgstr "Die folgenden Pakete haben nicht erfüllte Abhängigkeiten:"
  576. #: cmdline/apt-get.cc:334
  577. #, c-format
  578. msgid "but %s is installed"
  579. msgstr "aber %s ist installiert"
  580. #: cmdline/apt-get.cc:336
  581. #, c-format
  582. msgid "but %s is to be installed"
  583. msgstr "aber %s soll installiert werden"
  584. #: cmdline/apt-get.cc:343
  585. msgid "but it is not installable"
  586. msgstr "ist aber nicht installierbar"
  587. #: cmdline/apt-get.cc:345
  588. msgid "but it is a virtual package"
  589. msgstr "ist aber ein virtuelles Paket"
  590. #: cmdline/apt-get.cc:348
  591. msgid "but it is not installed"
  592. msgstr "ist aber nicht installiert"
  593. #: cmdline/apt-get.cc:348
  594. msgid "but it is not going to be installed"
  595. msgstr "soll aber nicht installiert werden"
  596. #: cmdline/apt-get.cc:353
  597. msgid " or"
  598. msgstr " oder"
  599. #: cmdline/apt-get.cc:382
  600. msgid "The following NEW packages will be installed:"
  601. msgstr "Die folgenden NEUEN Pakete werden installiert:"
  602. #: cmdline/apt-get.cc:408
  603. msgid "The following packages will be REMOVED:"
  604. msgstr "Die folgenden Pakete werden ENTFERNT:"
  605. #: cmdline/apt-get.cc:430
  606. msgid "The following packages have been kept back:"
  607. msgstr "Die folgenden Pakete sind zurückgehalten worden:"
  608. #: cmdline/apt-get.cc:451
  609. msgid "The following packages will be upgraded:"
  610. msgstr "Die folgenden Pakete werden aktualisiert:"
  611. #: cmdline/apt-get.cc:472
  612. msgid "The following packages will be DOWNGRADED:"
  613. msgstr "Die folgenden Pakete werden DEAKTUALISIERT:"
  614. #: cmdline/apt-get.cc:492
  615. msgid "The following held packages will be changed:"
  616. msgstr "Die folgenden gehaltenen Pakete werden verändert:"
  617. #: cmdline/apt-get.cc:545
  618. #, c-format
  619. msgid "%s (due to %s) "
  620. msgstr "%s (wegen %s) "
  621. #: cmdline/apt-get.cc:553
  622. msgid ""
  623. "WARNING: The following essential packages will be removed.\n"
  624. "This should NOT be done unless you know exactly what you are doing!"
  625. msgstr ""
  626. "WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n"
  627. "Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!"
  628. #: cmdline/apt-get.cc:584
  629. #, c-format
  630. msgid "%lu upgraded, %lu newly installed, "
  631. msgstr "%lu aktualisiert, %lu neu installiert, "
  632. #: cmdline/apt-get.cc:588
  633. #, c-format
  634. msgid "%lu reinstalled, "
  635. msgstr "%lu erneut installiert, "
  636. #: cmdline/apt-get.cc:590
  637. #, c-format
  638. msgid "%lu downgraded, "
  639. msgstr "%lu deaktualisiert, "
  640. #: cmdline/apt-get.cc:592
  641. #, c-format
  642. msgid "%lu to remove and %lu not upgraded.\n"
  643. msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n"
  644. #: cmdline/apt-get.cc:596
  645. #, c-format
  646. msgid "%lu not fully installed or removed.\n"
  647. msgstr "%lu nicht vollständig installiert oder entfernt.\n"
  648. #: cmdline/apt-get.cc:669
  649. msgid "Correcting dependencies..."
  650. msgstr "Abhängigkeiten werden korrigiert..."
  651. #: cmdline/apt-get.cc:672
  652. msgid " failed."
  653. msgstr " fehlgeschlagen."
  654. #: cmdline/apt-get.cc:675
  655. msgid "Unable to correct dependencies"
  656. msgstr "Kann Abhängigkeiten nicht korrigieren"
  657. #: cmdline/apt-get.cc:678
  658. msgid "Unable to minimize the upgrade set"
  659. msgstr "Kann die Menge zu aktualisierender Pakete nicht minimieren"
  660. #: cmdline/apt-get.cc:680
  661. msgid " Done"
  662. msgstr " Fertig"
  663. #: cmdline/apt-get.cc:684
  664. msgid "You might want to run `apt-get -f install' to correct these."
  665. msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren."
  666. #: cmdline/apt-get.cc:687
  667. msgid "Unmet dependencies. Try using -f."
  668. msgstr "Nicht erfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen."
  669. #: cmdline/apt-get.cc:712
  670. msgid "WARNING: The following packages cannot be authenticated!"
  671. msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!"
  672. #: cmdline/apt-get.cc:716
  673. msgid "Authentication warning overridden.\n"
  674. msgstr "Authentifizierungswarnung überstimmt.\n"
  675. #: cmdline/apt-get.cc:723
  676. msgid "Install these packages without verification [y/N]? "
  677. msgstr "Diese Pakete ohne Überprüfung installieren [j/N]? "
  678. #: cmdline/apt-get.cc:725
  679. msgid "Some packages could not be authenticated"
  680. msgstr "Einige Pakete konnten nicht authentifiziert werden"
  681. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886
  682. msgid "There are problems and -y was used without --force-yes"
  683. msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet"
  684. #: cmdline/apt-get.cc:775
  685. msgid "Internal error, InstallPackages was called with broken packages!"
  686. msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!"
  687. #: cmdline/apt-get.cc:784
  688. msgid "Packages need to be removed but remove is disabled."
  689. msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet."
  690. #: cmdline/apt-get.cc:795
  691. msgid "Internal error, Ordering didn't finish"
  692. msgstr "Interner Fehler, Anordnung beendete nicht"
  693. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070
  694. msgid "Unable to lock the download directory"
  695. msgstr "Kann das Downloadverzeichnis nicht sperren."
  696. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367
  697. #: apt-pkg/cachefile.cc:65
  698. msgid "The list of sources could not be read."
  699. msgstr "Die Liste der Quellen konnte nicht gelesen werden."
  700. #: cmdline/apt-get.cc:836
  701. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  702. msgstr ""
  703. "Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie an "
  704. "apt@packages.debian.org"
  705. #: cmdline/apt-get.cc:841
  706. #, c-format
  707. msgid "Need to get %sB/%sB of archives.\n"
  708. msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n"
  709. #: cmdline/apt-get.cc:844
  710. #, c-format
  711. msgid "Need to get %sB of archives.\n"
  712. msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n"
  713. #: cmdline/apt-get.cc:849
  714. #, c-format
  715. msgid "After this operation, %sB of additional disk space will be used.\n"
  716. msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n"
  717. #: cmdline/apt-get.cc:852
  718. #, c-format
  719. msgid "After this operation, %sB disk space will be freed.\n"
  720. msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n"
  721. #: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213
  722. #, c-format
  723. msgid "Couldn't determine free space in %s"
  724. msgstr "Konnte freien Platz in %s nicht bestimmen"
  725. #: cmdline/apt-get.cc:876
  726. #, c-format
  727. msgid "You don't have enough free space in %s."
  728. msgstr "Sie haben nicht genug Platz in %s."
  729. #: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912
  730. msgid "Trivial Only specified but this is not a trivial operation."
  731. msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation."
  732. #: cmdline/apt-get.cc:894
  733. msgid "Yes, do as I say!"
  734. msgstr "Ja, tue was ich sage!"
  735. #: cmdline/apt-get.cc:896
  736. #, c-format
  737. msgid ""
  738. "You are about to do something potentially harmful.\n"
  739. "To continue type in the phrase '%s'\n"
  740. " ?] "
  741. msgstr ""
  742. "Sie sind im Begriff, etwas potenziell Schädliches zu tun.\n"
  743. "Zum Fortfahren geben Sie bitte »%s« ein.\n"
  744. " ?] "
  745. #: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921
  746. msgid "Abort."
  747. msgstr "Abbruch."
  748. #: cmdline/apt-get.cc:917
  749. msgid "Do you want to continue [Y/n]? "
  750. msgstr "Möchten Sie fortfahren [J/n]? "
  751. #: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389
  752. #, c-format
  753. msgid "Failed to fetch %s %s\n"
  754. msgstr "Konnte %s nicht holen %s\n"
  755. #: cmdline/apt-get.cc:1007
  756. msgid "Some files failed to download"
  757. msgstr "Einige Dateien konnten nicht heruntergeladen werden"
  758. #: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273
  759. msgid "Download complete and in download only mode"
  760. msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv"
  761. #: cmdline/apt-get.cc:1014
  762. msgid ""
  763. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  764. "missing?"
  765. msgstr ""
  766. "Konnte einige Archive nicht herunterladen; vielleicht »apt-get update« "
  767. "ausführen oder mit »--fix-missing« probieren?"
  768. #: cmdline/apt-get.cc:1018
  769. msgid "--fix-missing and media swapping is not currently supported"
  770. msgstr "--fix-missing und Wechselmedien werden zurzeit nicht unterstützt"
  771. #: cmdline/apt-get.cc:1023
  772. msgid "Unable to correct missing packages."
  773. msgstr "Konnte fehlende Pakete nicht korrigieren."
  774. #: cmdline/apt-get.cc:1024
  775. msgid "Aborting install."
  776. msgstr "Installation abgebrochen."
  777. #: cmdline/apt-get.cc:1058
  778. #, c-format
  779. msgid "Note, selecting %s instead of %s\n"
  780. msgstr "Hinweis: wähle %s an Stelle von %s\n"
  781. #: cmdline/apt-get.cc:1068
  782. #, c-format
  783. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  784. msgstr ""
  785. "Überspringe %s, es ist schon installiert und »upgrade« ist nicht gesetzt.\n"
  786. #: cmdline/apt-get.cc:1086
  787. #, c-format
  788. msgid "Package %s is not installed, so not removed\n"
  789. msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt\n"
  790. #: cmdline/apt-get.cc:1097
  791. #, c-format
  792. msgid "Package %s is a virtual package provided by:\n"
  793. msgstr "Paket %s ist ein virtuelles Paket, das bereitgestellt wird von:\n"
  794. #: cmdline/apt-get.cc:1109
  795. msgid " [Installed]"
  796. msgstr " [Installiert]"
  797. #: cmdline/apt-get.cc:1114
  798. msgid "You should explicitly select one to install."
  799. msgstr "Sie sollten eines explizit zum Installieren auswählen."
  800. #: cmdline/apt-get.cc:1119
  801. #, c-format
  802. msgid ""
  803. "Package %s is not available, but is referred to by another package.\n"
  804. "This may mean that the package is missing, has been obsoleted, or\n"
  805. "is only available from another source\n"
  806. msgstr ""
  807. "Paket %s ist nicht verfügbar, wird aber von einem anderen\n"
  808. "Paket referenziert. Das kann heißen, dass das Paket fehlt, dass es veraltet\n"
  809. "ist oder nur aus einer anderen Quelle verfügbar ist.\n"
  810. #: cmdline/apt-get.cc:1138
  811. msgid "However the following packages replace it:"
  812. msgstr "Doch die folgenden Pakete ersetzen es:"
  813. #: cmdline/apt-get.cc:1141
  814. #, c-format
  815. msgid "Package %s has no installation candidate"
  816. msgstr "Paket %s hat keinen Installationskandidaten"
  817. #: cmdline/apt-get.cc:1161
  818. #, c-format
  819. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  820. msgstr ""
  821. "Erneute Installation von %s ist nicht möglich,\n"
  822. "es kann nicht heruntergeladen werden.\n"
  823. #: cmdline/apt-get.cc:1169
  824. #, c-format
  825. msgid "%s is already the newest version.\n"
  826. msgstr "%s ist schon die neueste Version.\n"
  827. #: cmdline/apt-get.cc:1198
  828. #, c-format
  829. msgid "Release '%s' for '%s' was not found"
  830. msgstr "Release »%s« für »%s« konnte nicht gefunden werden"
  831. #: cmdline/apt-get.cc:1200
  832. #, c-format
  833. msgid "Version '%s' for '%s' was not found"
  834. msgstr "Version »%s« für »%s« konnte nicht gefunden werden"
  835. #: cmdline/apt-get.cc:1206
  836. #, c-format
  837. msgid "Selected version %s (%s) for %s\n"
  838. msgstr "Gewählte Version %s (%s) für %s\n"
  839. #: cmdline/apt-get.cc:1323
  840. #, c-format
  841. msgid "No source package '%s' picking '%s' instead\n"
  842. msgstr "Kein Quellpaket »%s«, wähle stattdessen »%s«\n"
  843. #: cmdline/apt-get.cc:1360
  844. msgid "The update command takes no arguments"
  845. msgstr "Der Befehl »update« akzeptiert keine Argumente"
  846. #: cmdline/apt-get.cc:1373
  847. msgid "Unable to lock the list directory"
  848. msgstr "Kann das Listenverzeichnis nicht sperren"
  849. #: cmdline/apt-get.cc:1429
  850. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  851. msgstr "Es soll nichts gelöscht werden, kann AutoRemover nicht starten"
  852. #: cmdline/apt-get.cc:1478
  853. msgid ""
  854. "The following packages were automatically installed and are no longer "
  855. "required:"
  856. msgstr ""
  857. "Die folgenden Pakete wurden automatisch installiert und werden nicht länger "
  858. "benötigt:"
  859. #: cmdline/apt-get.cc:1480
  860. #, fuzzy, c-format
  861. msgid "%lu packages were automatically installed and are no longer required.\n"
  862. msgstr ""
  863. "Die folgenden Pakete wurden automatisch installiert und werden nicht länger "
  864. "benötigt:"
  865. #: cmdline/apt-get.cc:1481
  866. msgid "Use 'apt-get autoremove' to remove them."
  867. msgstr "Verwenden Sie »apt-get autoremove«, um sie zu entfernen."
  868. #: cmdline/apt-get.cc:1486
  869. msgid ""
  870. "Hmm, seems like the AutoRemover destroyed something which really\n"
  871. "shouldn't happen. Please file a bug report against apt."
  872. msgstr ""
  873. "Hmm, es sieht so aus, als ob der AutoRemover etwas zerstört hat, was\n"
  874. "wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n"
  875. "gegen apt."
  876. #.
  877. #. if (Packages == 1)
  878. #. {
  879. #. c1out << endl;
  880. #. c1out <<
  881. #. _("Since you only requested a single operation it is extremely likely that\n"
  882. #. "the package is simply not installable and a bug report against\n"
  883. #. "that package should be filed.") << endl;
  884. #. }
  885. #.
  886. #: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779
  887. msgid "The following information may help to resolve the situation:"
  888. msgstr ""
  889. "Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:"
  890. #: cmdline/apt-get.cc:1493
  891. msgid "Internal Error, AutoRemover broke stuff"
  892. msgstr "Interner Fehler, AutoRemover hat was kaputt gemacht"
  893. #: cmdline/apt-get.cc:1512
  894. msgid "Internal error, AllUpgrade broke stuff"
  895. msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht"
  896. #: cmdline/apt-get.cc:1567
  897. #, c-format
  898. msgid "Couldn't find task %s"
  899. msgstr "Konnte Task %s nicht finden"
  900. #: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718
  901. #, c-format
  902. msgid "Couldn't find package %s"
  903. msgstr "Konnte Paket %s nicht finden"
  904. #: cmdline/apt-get.cc:1705
  905. #, c-format
  906. msgid "Note, selecting %s for regex '%s'\n"
  907. msgstr "Hinweis: wähle %s für regulären Ausdruck »%s«\n"
  908. #: cmdline/apt-get.cc:1736
  909. #, c-format
  910. msgid "%s set to manually installed.\n"
  911. msgstr "%s wurde als manuell installiert festgelegt.\n"
  912. #: cmdline/apt-get.cc:1749
  913. msgid "You might want to run `apt-get -f install' to correct these:"
  914. msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:"
  915. #: cmdline/apt-get.cc:1752
  916. msgid ""
  917. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  918. "solution)."
  919. msgstr ""
  920. "Nicht erfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne "
  921. "jegliche Pakete (oder geben Sie eine Lösung an)."
  922. #: cmdline/apt-get.cc:1764
  923. msgid ""
  924. "Some packages could not be installed. This may mean that you have\n"
  925. "requested an impossible situation or if you are using the unstable\n"
  926. "distribution that some required packages have not yet been created\n"
  927. "or been moved out of Incoming."
  928. msgstr ""
  929. "Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n"
  930. "Sie eine unmögliche Situation angefordert haben oder dass, wenn Sie die\n"
  931. "Unstable-Distribution verwenden, einige erforderliche Pakete noch nicht\n"
  932. "erstellt wurden oder Incoming noch nicht verlassen haben."
  933. #: cmdline/apt-get.cc:1782
  934. msgid "Broken packages"
  935. msgstr "Kaputte Pakete"
  936. #: cmdline/apt-get.cc:1811
  937. msgid "The following extra packages will be installed:"
  938. msgstr "Die folgenden zusätzlichen Pakete werden installiert:"
  939. #: cmdline/apt-get.cc:1900
  940. msgid "Suggested packages:"
  941. msgstr "Vorgeschlagene Pakete:"
  942. #: cmdline/apt-get.cc:1901
  943. msgid "Recommended packages:"
  944. msgstr "Empfohlene Pakete:"
  945. #: cmdline/apt-get.cc:1930
  946. msgid "Calculating upgrade... "
  947. msgstr "Berechne Upgrade (Paketaktualisierung) ..."
  948. #: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112
  949. msgid "Failed"
  950. msgstr "Fehlgeschlagen"
  951. #: cmdline/apt-get.cc:1938
  952. msgid "Done"
  953. msgstr "Fertig"
  954. #: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013
  955. msgid "Internal error, problem resolver broke stuff"
  956. msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht"
  957. #: cmdline/apt-get.cc:2113
  958. msgid "Must specify at least one package to fetch source for"
  959. msgstr ""
  960. "Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden "
  961. "sollen"
  962. #: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385
  963. #, c-format
  964. msgid "Unable to find a source package for %s"
  965. msgstr "Kann Quellpaket für %s nicht finden"
  966. #: cmdline/apt-get.cc:2192
  967. #, c-format
  968. msgid "Skipping already downloaded file '%s'\n"
  969. msgstr "Überspringe schon heruntergeladene Datei »%s«\n"
  970. #: cmdline/apt-get.cc:2223
  971. #, c-format
  972. msgid "You don't have enough free space in %s"
  973. msgstr "Sie haben nicht genug freien Platz in %s"
  974. #: cmdline/apt-get.cc:2229
  975. #, c-format
  976. msgid "Need to get %sB/%sB of source archives.\n"
  977. msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n"
  978. #: cmdline/apt-get.cc:2232
  979. #, c-format
  980. msgid "Need to get %sB of source archives.\n"
  981. msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n"
  982. #: cmdline/apt-get.cc:2238
  983. #, c-format
  984. msgid "Fetch source %s\n"
  985. msgstr "Hole Quelle %s\n"
  986. #: cmdline/apt-get.cc:2269
  987. msgid "Failed to fetch some archives."
  988. msgstr "Konnte einige Archive nicht holen."
  989. #: cmdline/apt-get.cc:2297
  990. #, c-format
  991. msgid "Skipping unpack of already unpacked source in %s\n"
  992. msgstr "Überspringe Entpacken der schon entpackten Quelle in %s\n"
  993. #: cmdline/apt-get.cc:2309
  994. #, c-format
  995. msgid "Unpack command '%s' failed.\n"
  996. msgstr "Entpack-Befehl »%s« fehlgeschlagen.\n"
  997. #: cmdline/apt-get.cc:2310
  998. #, c-format
  999. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1000. msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n"
  1001. #: cmdline/apt-get.cc:2327
  1002. #, c-format
  1003. msgid "Build command '%s' failed.\n"
  1004. msgstr "Build-Befehl »%s« fehlgeschlagen.\n"
  1005. #: cmdline/apt-get.cc:2346
  1006. msgid "Child process failed"
  1007. msgstr "Kindprozess fehlgeschlagen"
  1008. #: cmdline/apt-get.cc:2362
  1009. msgid "Must specify at least one package to check builddeps for"
  1010. msgstr ""
  1011. "Es muss zumindest ein Paket angegeben werden, dessen Bau-Abhängigkeiten\n"
  1012. "überprüft werden sollen."
  1013. #: cmdline/apt-get.cc:2390
  1014. #, c-format
  1015. msgid "Unable to get build-dependency information for %s"
  1016. msgstr ""
  1017. "Informationen zu Bau-Abhängigkeiten für %s konnten nicht gefunden werden."
  1018. #: cmdline/apt-get.cc:2410
  1019. #, c-format
  1020. msgid "%s has no build depends.\n"
  1021. msgstr "%s hat keine Bau-Abhängigkeiten.\n"
  1022. #: cmdline/apt-get.cc:2462
  1023. #, c-format
  1024. msgid ""
  1025. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1026. "found"
  1027. msgstr ""
  1028. "%s-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht gefunden "
  1029. "werden kann."
  1030. #: cmdline/apt-get.cc:2515
  1031. #, c-format
  1032. msgid ""
  1033. "%s dependency for %s cannot be satisfied because no available versions of "
  1034. "package %s can satisfy version requirements"
  1035. msgstr ""
  1036. "%s-Abhängigkeit für %s kann nicht erfüllt werden, da keine verfügbare "
  1037. "Version von Paket %s die Versionsanforderungen erfüllen kann."
  1038. #: cmdline/apt-get.cc:2551
  1039. #, c-format
  1040. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1041. msgstr ""
  1042. "Konnte die %s-Abhängigkeit für %s nicht erfüllen: Installiertes Paket %s ist "
  1043. "zu neu."
  1044. #: cmdline/apt-get.cc:2578
  1045. #, c-format
  1046. msgid "Failed to satisfy %s dependency for %s: %s"
  1047. msgstr "Konnte die %s-Abhängigkeit für %s nicht erfüllen: %s"
  1048. #: cmdline/apt-get.cc:2594
  1049. #, c-format
  1050. msgid "Build-dependencies for %s could not be satisfied."
  1051. msgstr "Bau-Abhängigkeiten für %s konnten nicht erfüllt werden."
  1052. #: cmdline/apt-get.cc:2599
  1053. msgid "Failed to process build dependencies"
  1054. msgstr "Verarbeitung der Bau-Abhängigkeiten fehlgeschlagen"
  1055. #: cmdline/apt-get.cc:2631
  1056. msgid "Supported modules:"
  1057. msgstr "Unterstützte Module:"
  1058. #: cmdline/apt-get.cc:2672
  1059. msgid ""
  1060. "Usage: apt-get [options] command\n"
  1061. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1062. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1063. "\n"
  1064. "apt-get is a simple command line interface for downloading and\n"
  1065. "installing packages. The most frequently used commands are update\n"
  1066. "and install.\n"
  1067. "\n"
  1068. "Commands:\n"
  1069. " update - Retrieve new lists of packages\n"
  1070. " upgrade - Perform an upgrade\n"
  1071. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1072. " remove - Remove packages\n"
  1073. " autoremove - Remove automatically all unused packages\n"
  1074. " purge - Remove packages and config files\n"
  1075. " source - Download source archives\n"
  1076. " build-dep - Configure build-dependencies for source packages\n"
  1077. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1078. " dselect-upgrade - Follow dselect selections\n"
  1079. " clean - Erase downloaded archive files\n"
  1080. " autoclean - Erase old downloaded archive files\n"
  1081. " check - Verify that there are no broken dependencies\n"
  1082. "\n"
  1083. "Options:\n"
  1084. " -h This help text.\n"
  1085. " -q Loggable output - no progress indicator\n"
  1086. " -qq No output except for errors\n"
  1087. " -d Download only - do NOT install or unpack archives\n"
  1088. " -s No-act. Perform ordering simulation\n"
  1089. " -y Assume Yes to all queries and do not prompt\n"
  1090. " -f Attempt to correct a system with broken dependencies in place\n"
  1091. " -m Attempt to continue if archives are unlocatable\n"
  1092. " -u Show a list of upgraded packages as well\n"
  1093. " -b Build the source package after fetching it\n"
  1094. " -V Show verbose version numbers\n"
  1095. " -c=? Read this configuration file\n"
  1096. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1097. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1098. "pages for more information and options.\n"
  1099. " This APT has Super Cow Powers.\n"
  1100. msgstr ""
  1101. "Aufruf: apt-get [Optionen] befehl\n"
  1102. " apt-get [Optionen] install|remove paket1 [paket2 ...]\n"
  1103. " apt-get [Optionen] source paket1 [paket2 ...]\n"
  1104. "\n"
  1105. "apt-get ist ein einfaches Kommandozeilenwerkzeug zum Herunterladen\n"
  1106. "und Installieren von Paketen. Die am häufigsten benutzten Befehle\n"
  1107. "sind update und install.\n"
  1108. "\n"
  1109. "Befehle:\n"
  1110. " update – neue Paketinformationen einlesen\n"
  1111. " upgrade – ein Upgrade (Paketaktualisierung) durchführen\n"
  1112. " install – neue Pakete installieren (paket ist libc6, nicht libc6."
  1113. "deb)\n"
  1114. " remove – Pakete entfernen\n"
  1115. " autoremove – alle nicht mehr verwendeten Pakete automatisch "
  1116. "entfernen\n"
  1117. " purge – entferne Pakete restlos (inkl. Konfigurationsdateien)\n"
  1118. " source – Quellarchive herunterladen\n"
  1119. " build-dep – die Bau-Abhängigkeiten für Quellpakete konfigurieren\n"
  1120. " dist-upgrade – spezielles Upgrade (Paketaktualisierung) für die "
  1121. "komplette\n"
  1122. " Distribution durchführen, siehe apt-get(8)\n"
  1123. " dselect-upgrade – der Auswahl von »dselect« folgen\n"
  1124. " clean – heruntergeladene Archive löschen\n"
  1125. " autoclean – veraltete heruntergeladene Archive löschen\n"
  1126. " check – überprüfen, dass es keine nicht-erfüllten "
  1127. "Abhängigkeiten\n"
  1128. " gibt\n"
  1129. "\n"
  1130. "Optionen:\n"
  1131. " -h dieser Hilfetext\n"
  1132. " -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n"
  1133. " -qq keine Ausgabe außer bei Fehlern\n"
  1134. " -d nur herunterladen – Archive NICHT installieren oder entpacken\n"
  1135. " -s nichts tun; nur eine Simulation der Vorgänge durchführen\n"
  1136. " -y für alle Antworten »Ja« annehmen und nicht nachfragen\n"
  1137. " -f versuchen, ein System mit defekten Abhängigkeiten zu korrigieren\n"
  1138. " -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n"
  1139. " -u auch eine Liste der aktualisierten Pakete mit anzeigen\n"
  1140. " -b ein Quellpaket nach dem Herunterladen übersetzen\n"
  1141. " -V ausführliche Versionsnummern anzeigen\n"
  1142. " -c=? Diese Konfigurationsdatei benutzen\n"
  1143. " -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n"
  1144. "Siehe auch die Handbuch-Seiten apt-get(8), sources.list(5) und apt.conf(5) "
  1145. "für\n"
  1146. "weitergehende Informationen und Optionen.\n"
  1147. " Dieses APT hat Super-Kuh-Kräfte.\n"
  1148. #: cmdline/apt-get.cc:2839
  1149. msgid ""
  1150. "NOTE: This is only a simulation!\n"
  1151. " apt-get needs root privileges for real execution.\n"
  1152. " Keep also in mind that locking is deactivated,\n"
  1153. " so don't depend on the relevance to the real current situation!"
  1154. msgstr ""
  1155. "HINWEIS: Dies ist nur eine Simulation!\n"
  1156. " apt-get benötigt root-Privilegien für die reale Ausführung.\n"
  1157. " Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n"
  1158. " sind, verlassen Sie sich also bezüglich des realen aktuellen\n"
  1159. " Status' der Sperre nicht darauf!"
  1160. #: cmdline/acqprogress.cc:55
  1161. msgid "Hit "
  1162. msgstr "OK "
  1163. #: cmdline/acqprogress.cc:79
  1164. msgid "Get:"
  1165. msgstr "Hole:"
  1166. #: cmdline/acqprogress.cc:110
  1167. msgid "Ign "
  1168. msgstr "Ign "
  1169. #: cmdline/acqprogress.cc:114
  1170. msgid "Err "
  1171. msgstr "Fehl "
  1172. #: cmdline/acqprogress.cc:135
  1173. #, c-format
  1174. msgid "Fetched %sB in %s (%sB/s)\n"
  1175. msgstr "Es wurden %sB in %s geholt (%sB/s)\n"
  1176. #: cmdline/acqprogress.cc:225
  1177. #, c-format
  1178. msgid " [Working]"
  1179. msgstr " [Verarbeite]"
  1180. #: cmdline/acqprogress.cc:271
  1181. #, c-format
  1182. msgid ""
  1183. "Media change: please insert the disc labeled\n"
  1184. " '%s'\n"
  1185. "in the drive '%s' and press enter\n"
  1186. msgstr ""
  1187. "Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n"
  1188. " »%s«\n"
  1189. "in Laufwerk »%s« und drücken Sie die Eingabetaste.\n"
  1190. #: cmdline/apt-sortpkgs.cc:86
  1191. msgid "Unknown package record!"
  1192. msgstr "Unbekannter Paketeintrag!"
  1193. #: cmdline/apt-sortpkgs.cc:150
  1194. msgid ""
  1195. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1196. "\n"
  1197. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1198. "to indicate what kind of file it is.\n"
  1199. "\n"
  1200. "Options:\n"
  1201. " -h This help text\n"
  1202. " -s Use source file sorting\n"
  1203. " -c=? Read this configuration file\n"
  1204. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1205. msgstr ""
  1206. "Aufruf: apt-sortpkgs [optionen] datei1 [datei2 ...]\n"
  1207. "\n"
  1208. "apt-sortpkgs ist ein einfaches Werkzeug, um Paketdateien zu sortieren. Die\n"
  1209. "Option -s wird benutzt, um anzuzeigen, um was für eine Datei es sich "
  1210. "handelt.\n"
  1211. "\n"
  1212. "Optionen:\n"
  1213. " -h Dieser Hilfetext\n"
  1214. " -s Quelldateisortierung benutzen\n"
  1215. " -c=? Diese Konfigurationsdatei lesen\n"
  1216. " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/tmp\n"
  1217. #: dselect/install:32
  1218. msgid "Bad default setting!"
  1219. msgstr "Fehlerhafte Voreinstellung!"
  1220. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1221. #: dselect/install:105 dselect/update:45
  1222. msgid "Press enter to continue."
  1223. msgstr "Zum Fortfahren Enter drücken."
  1224. #: dselect/install:91
  1225. msgid "Do you want to erase any previously downloaded .deb files?"
  1226. msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?"
  1227. #: dselect/install:101
  1228. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1229. msgstr ""
  1230. "Einige Fehler traten während des Entpackens auf. Ich werde die installierten"
  1231. #: dselect/install:102
  1232. msgid "packages that were installed. This may result in duplicate errors"
  1233. msgstr ""
  1234. "Pakete konfigurieren. Dies kann zu doppelten Fehlermeldungen oder Fehlern "
  1235. "durch"
  1236. #: dselect/install:103
  1237. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1238. msgstr ""
  1239. "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler über "
  1240. "dieser"
  1241. #: dselect/install:104
  1242. msgid ""
  1243. "above this message are important. Please fix them and run [I]nstall again"
  1244. msgstr ""
  1245. "Meldung sind wichtig. Bitte beseitigen Sie sie und [I]nstallieren Sie erneut."
  1246. #: dselect/update:30
  1247. msgid "Merging available information"
  1248. msgstr "Führe verfügbare Information zusammen"
  1249. #: apt-inst/contrib/extracttar.cc:114
  1250. msgid "Failed to create pipes"
  1251. msgstr "Konnte Pipes (Weiterleitungen) nicht erzeugen"
  1252. #: apt-inst/contrib/extracttar.cc:141
  1253. msgid "Failed to exec gzip "
  1254. msgstr "Konnte gzip nicht ausführen"
  1255. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1256. msgid "Corrupted archive"
  1257. msgstr "Beschädigtes Archiv"
  1258. #: apt-inst/contrib/extracttar.cc:193
  1259. msgid "Tar checksum failed, archive corrupted"
  1260. msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt"
  1261. #: apt-inst/contrib/extracttar.cc:296
  1262. #, c-format
  1263. msgid "Unknown TAR header type %u, member %s"
  1264. msgstr "Unbekannter Tar-Header-Typ %u, Bestandteil %s"
  1265. #: apt-inst/contrib/arfile.cc:70
  1266. msgid "Invalid archive signature"
  1267. msgstr "Ungültige Archiv-Signatur"
  1268. #: apt-inst/contrib/arfile.cc:78
  1269. msgid "Error reading archive member header"
  1270. msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen"
  1271. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1272. msgid "Invalid archive member header"
  1273. msgstr "Ungültige Archivdatei-Kopfzeilen"
  1274. #: apt-inst/contrib/arfile.cc:128
  1275. msgid "Archive is too short"
  1276. msgstr "Archiv ist zu kurz"
  1277. #: apt-inst/contrib/arfile.cc:132
  1278. msgid "Failed to read the archive headers"
  1279. msgstr "Konnte Archiv-Kopfzeilen nicht lesen"
  1280. #: apt-inst/filelist.cc:380
  1281. msgid "DropNode called on still linked node"
  1282. msgstr "»DropNode« auf noch verknüpftem Knoten aufgerufen"
  1283. #: apt-inst/filelist.cc:412
  1284. msgid "Failed to locate the hash element!"
  1285. msgstr "Konnte Hash-Element nicht finden!"
  1286. #: apt-inst/filelist.cc:459
  1287. msgid "Failed to allocate diversion"
  1288. msgstr "Konnte Umleitung nicht reservieren"
  1289. #: apt-inst/filelist.cc:464
  1290. msgid "Internal error in AddDiversion"
  1291. msgstr "Interner Fehler in »AddDiversion«"
  1292. #: apt-inst/filelist.cc:477
  1293. #, c-format
  1294. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1295. msgstr "Versuche, Umleitung zu überschreiben: %s -> %s und %s/%s"
  1296. #: apt-inst/filelist.cc:506
  1297. #, c-format
  1298. msgid "Double add of diversion %s -> %s"
  1299. msgstr "Doppelte Hinzufügung der Umleitung %s -> %s"
  1300. #: apt-inst/filelist.cc:549
  1301. #, c-format
  1302. msgid "Duplicate conf file %s/%s"
  1303. msgstr "Doppelte Konfigurationsdatei %s/%s"
  1304. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1305. #, c-format
  1306. msgid "Failed to write file %s"
  1307. msgstr "Konnte Datei %s nicht schreiben"
  1308. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1309. #, c-format
  1310. msgid "Failed to close file %s"
  1311. msgstr "Konnte Datei %s nicht schließen"
  1312. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1313. #, c-format
  1314. msgid "The path %s is too long"
  1315. msgstr "Der Pfad %s ist zu lang"
  1316. #: apt-inst/extract.cc:124
  1317. #, c-format
  1318. msgid "Unpacking %s more than once"
  1319. msgstr "Packe %s mehr als einmal aus"
  1320. #: apt-inst/extract.cc:134
  1321. #, c-format
  1322. msgid "The directory %s is diverted"
  1323. msgstr "Das Verzeichnis %s ist umgeleitet"
  1324. #: apt-inst/extract.cc:144
  1325. #, c-format
  1326. msgid "The package is trying to write to the diversion target %s/%s"
  1327. msgstr "Das Paket versucht, auf das Umleitungsziel %s/%s zu schreiben"
  1328. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1329. msgid "The diversion path is too long"
  1330. msgstr "Der Umleitungspfad ist zu lang"
  1331. #: apt-inst/extract.cc:240
  1332. #, c-format
  1333. msgid "The directory %s is being replaced by a non-directory"
  1334. msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt"
  1335. #: apt-inst/extract.cc:280
  1336. msgid "Failed to locate node in its hash bucket"
  1337. msgstr "Konnte Knoten nicht in seinem Hash finden"
  1338. #: apt-inst/extract.cc:284
  1339. msgid "The path is too long"
  1340. msgstr "Der Pfad ist zu lang"
  1341. #: apt-inst/extract.cc:414
  1342. #, c-format
  1343. msgid "Overwrite package match with no version for %s"
  1344. msgstr "Überschreibe Paket-Treffer ohne Version für %s"
  1345. #: apt-inst/extract.cc:431
  1346. #, c-format
  1347. msgid "File %s/%s overwrites the one in the package %s"
  1348. msgstr "Datei %s/%s überschreibt die Datei in Paket %s"
  1349. #. Only warn if there are no sources.list.d.
  1350. #. Only warn if there is no sources.list file.
  1351. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:822
  1352. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1353. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1354. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1355. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1356. #, c-format
  1357. msgid "Unable to read %s"
  1358. msgstr "Kann %s nicht lesen"
  1359. #: apt-inst/extract.cc:491
  1360. #, c-format
  1361. msgid "Unable to stat %s"
  1362. msgstr "Kann kein »stat« auf %s durchführen"
  1363. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1364. #, c-format
  1365. msgid "Failed to remove %s"
  1366. msgstr "Konnte %s nicht entfernen"
  1367. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1368. #, c-format
  1369. msgid "Unable to create %s"
  1370. msgstr "Konnte %s nicht erzeugen"
  1371. #: apt-inst/deb/dpkgdb.cc:114
  1372. #, c-format
  1373. msgid "Failed to stat %sinfo"
  1374. msgstr "Konnte kein »stat« auf %sinfo durchführen"
  1375. #: apt-inst/deb/dpkgdb.cc:119
  1376. msgid "The info and temp directories need to be on the same filesystem"
  1377. msgstr "Die »info«- und »temp«-Verzeichnisse müssen im selben Dateisystem liegen"
  1378. #. Build the status cache
  1379. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1380. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1381. #: apt-pkg/pkgcachegen.cc:961
  1382. msgid "Reading package lists"
  1383. msgstr "Paketlisten werden gelesen"
  1384. #: apt-inst/deb/dpkgdb.cc:176
  1385. #, c-format
  1386. msgid "Failed to change to the admin dir %sinfo"
  1387. msgstr "Kann nicht ins Administrationsverzeichnis %sinfo wechseln"
  1388. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1389. #: apt-inst/deb/dpkgdb.cc:444
  1390. msgid "Internal error getting a package name"
  1391. msgstr "Interner Fehler beim Holen des Paketnamens"
  1392. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1393. msgid "Reading file listing"
  1394. msgstr "Paketlisten werden gelesen"
  1395. #: apt-inst/deb/dpkgdb.cc:212
  1396. #, c-format
  1397. msgid ""
  1398. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1399. "then make it empty and immediately re-install the same version of the "
  1400. "package!"
  1401. msgstr ""
  1402. "Fehler beim Öffnen der Listendatei »%sinfo/%s«. Wenn Sie diese Datei nicht "
  1403. "wiederherstellen können, dann leeren Sie sie und installieren Sie sofort "
  1404. "dieselbe Version des Paketes erneut!"
  1405. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1406. #, c-format
  1407. msgid "Failed reading the list file %sinfo/%s"
  1408. msgstr "Fehler beim Lesen der Listendatei »%sinfo/%s«."
  1409. #: apt-inst/deb/dpkgdb.cc:262
  1410. msgid "Internal error getting a node"
  1411. msgstr "Interner Fehler beim Holen eines Knotens"
  1412. #: apt-inst/deb/dpkgdb.cc:305
  1413. #, c-format
  1414. msgid "Failed to open the diversions file %sdiversions"
  1415. msgstr "Fehler beim Öffnen der Umleitungsdatei %sdiversions"
  1416. #: apt-inst/deb/dpkgdb.cc:320
  1417. msgid "The diversion file is corrupted"
  1418. msgstr "Die Umleitungsdatei ist beschädigt"
  1419. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1420. #: apt-inst/deb/dpkgdb.cc:337
  1421. #, c-format
  1422. msgid "Invalid line in the diversion file: %s"
  1423. msgstr "Ungültige Zeile in der Umleitungsdatei: %s"
  1424. #: apt-inst/deb/dpkgdb.cc:358
  1425. msgid "Internal error adding a diversion"
  1426. msgstr "Interner Fehler beim Hinzufügen einer Umleitung"
  1427. #: apt-inst/deb/dpkgdb.cc:379
  1428. msgid "The pkg cache must be initialized first"
  1429. msgstr "Der Paket-Cache muss erst initialisiert werden"
  1430. #: apt-inst/deb/dpkgdb.cc:439
  1431. #, c-format
  1432. msgid "Failed to find a Package: header, offset %lu"
  1433. msgstr "Konnte keine »Package:«-Kopfzeile finden, Offset %lu"
  1434. #: apt-inst/deb/dpkgdb.cc:461
  1435. #, c-format
  1436. msgid "Bad ConfFile section in the status file. Offset %lu"
  1437. msgstr "Fehlerhafter »ConfFile«-Abschnitt in der Statusdatei, Offset %lu"
  1438. #: apt-inst/deb/dpkgdb.cc:466
  1439. #, c-format
  1440. msgid "Error parsing MD5. Offset %lu"
  1441. msgstr "Fehler beim Verarbeiten der MD5-Summe. Offset %lu"
  1442. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1443. #, c-format
  1444. msgid "This is not a valid DEB archive, missing '%s' member"
  1445. msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält"
  1446. #: apt-inst/deb/debfile.cc:50
  1447. #, c-format
  1448. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1449. msgstr ""
  1450. "Dies ist kein gültiges DEB-Archiv, da es weder »%s«, »%s« noch »%s« enthält"
  1451. #: apt-inst/deb/debfile.cc:110
  1452. #, c-format
  1453. msgid "Couldn't change to %s"
  1454. msgstr "Konnte nicht in %s wechseln"
  1455. #: apt-inst/deb/debfile.cc:140
  1456. msgid "Internal error, could not locate member"
  1457. msgstr "Interner Fehler, konnte Bestandteil nicht finden"
  1458. #: apt-inst/deb/debfile.cc:173
  1459. msgid "Failed to locate a valid control file"
  1460. msgstr "Konnte gültige »control«-Datei nicht finden"
  1461. #: apt-inst/deb/debfile.cc:258
  1462. msgid "Unparsable control file"
  1463. msgstr "Nicht einlesbare »control«-Datei"
  1464. #: methods/cdrom.cc:200
  1465. #, c-format
  1466. msgid "Unable to read the cdrom database %s"
  1467. msgstr "Kann CD-ROM-Datenbank %s nicht lesen"
  1468. #: methods/cdrom.cc:209
  1469. msgid ""
  1470. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1471. "cannot be used to add new CD-ROMs"
  1472. msgstr ""
  1473. "Bitte verwenden Sie apt-cdrom, um diese CD-ROM für APT erkennbar zu machen. "
  1474. "apt-get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen"
  1475. #: methods/cdrom.cc:219
  1476. msgid "Wrong CD-ROM"
  1477. msgstr "Falsche CD-ROM"
  1478. #: methods/cdrom.cc:245
  1479. #, c-format
  1480. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1481. msgstr ""
  1482. "Kann Einbindung von CD-ROM in %s nicht lösen, möglicherweise wird sie noch "
  1483. "verwendet."
  1484. #: methods/cdrom.cc:250
  1485. msgid "Disk not found."
  1486. msgstr "Disk nicht gefunden."
  1487. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1488. msgid "File not found"
  1489. msgstr "Datei nicht gefunden"
  1490. # looks like someone hardcoded English grammar
  1491. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1492. #: methods/rred.cc:234 methods/rred.cc:243
  1493. msgid "Failed to stat"
  1494. msgstr "Konnte kein »stat« durchführen."
  1495. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1496. msgid "Failed to set modification time"
  1497. msgstr "Kann Änderungszeitpunkt nicht setzen"
  1498. #: methods/file.cc:44
  1499. msgid "Invalid URI, local URIS must not start with //"
  1500. msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen"
  1501. #. Login must be before getpeername otherwise dante won't work.
  1502. #: methods/ftp.cc:167
  1503. msgid "Logging in"
  1504. msgstr "Logge ein"
  1505. #: methods/ftp.cc:173
  1506. msgid "Unable to determine the peer name"
  1507. msgstr "Kann Namen des Kommunikationspartners nicht bestimmen"
  1508. #: methods/ftp.cc:178
  1509. msgid "Unable to determine the local name"
  1510. msgstr "Kann lokalen Namen nicht bestimmen"
  1511. #: methods/ftp.cc:209 methods/ftp.cc:237
  1512. #, c-format
  1513. msgid "The server refused the connection and said: %s"
  1514. msgstr "Der Server hat die Verbindung abgelehnt: %s"
  1515. #: methods/ftp.cc:215
  1516. #, c-format
  1517. msgid "USER failed, server said: %s"
  1518. msgstr "Befehl USER fehlgeschlagen: %s"
  1519. #: methods/ftp.cc:222
  1520. #, c-format
  1521. msgid "PASS failed, server said: %s"
  1522. msgstr "Befehl PASS fehlgeschlagen: %s"
  1523. #: methods/ftp.cc:242
  1524. msgid ""
  1525. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1526. "is empty."
  1527. msgstr ""
  1528. "Es war ein Proxy-Server angegeben, aber kein Einlogg-Skript, Acquire::ftp::"
  1529. "ProxyLogin ist leer."
  1530. #: methods/ftp.cc:270
  1531. #, c-format
  1532. msgid "Login script command '%s' failed, server said: %s"
  1533. msgstr "Befehl »%s« des Einlog-Skriptes ist fehlgeschlagen: %s"
  1534. #: methods/ftp.cc:296
  1535. #, c-format
  1536. msgid "TYPE failed, server said: %s"
  1537. msgstr "Befehl TYPE fehlgeschlagen: %s"
  1538. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1539. msgid "Connection timeout"
  1540. msgstr "Zeitüberschreitung der Verbindung"
  1541. #: methods/ftp.cc:340
  1542. msgid "Server closed the connection"
  1543. msgstr "Der Server hat die Verbindung geschlossen"
  1544. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1545. msgid "Read error"
  1546. msgstr "Lesefehler"
  1547. #: methods/ftp.cc:350 methods/rsh.cc:197
  1548. msgid "A response overflowed the buffer."
  1549. msgstr "Eine Antwort hat den Puffer zum Überlaufen gebracht."
  1550. #: methods/ftp.cc:367 methods/ftp.cc:379
  1551. msgid "Protocol corruption"
  1552. msgstr "Protokoll beschädigt"
  1553. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1554. msgid "Write error"
  1555. msgstr "Schreibfehler"
  1556. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1557. msgid "Could not create a socket"
  1558. msgstr "Konnte kein Socket erzeugen"
  1559. #: methods/ftp.cc:703
  1560. msgid "Could not connect data socket, connection timed out"
  1561. msgstr "Konnte Daten-Socket wegen Zeitüberschreitung nicht verbinden"
  1562. #: methods/ftp.cc:709
  1563. msgid "Could not connect passive socket."
  1564. msgstr "Konnte passiven Socket nicht verbinden."
  1565. #: methods/ftp.cc:727
  1566. msgid "getaddrinfo was unable to get a listening socket"
  1567. msgstr "Die Funktion getaddrinfo konnte keinen lauschenden Socket finden"
  1568. #: methods/ftp.cc:741
  1569. msgid "Could not bind a socket"
  1570. msgstr "Konnte ein Socket nicht verbinden"
  1571. #: methods/ftp.cc:745
  1572. msgid "Could not listen on the socket"
  1573. msgstr "Konnte auf dem Socket nicht lauschen"
  1574. #: methods/ftp.cc:752
  1575. msgid "Could not determine the socket's name"
  1576. msgstr "Konnte den Namen des Sockets nicht bestimmen"
  1577. #: methods/ftp.cc:784
  1578. msgid "Unable to send PORT command"
  1579. msgstr "Konnte PORT-Befehl nicht senden"
  1580. #: methods/ftp.cc:794
  1581. #, c-format
  1582. msgid "Unknown address family %u (AF_*)"
  1583. msgstr "Unbekannte Adressfamilie %u (AF_*)"
  1584. #: methods/ftp.cc:803
  1585. #, c-format
  1586. msgid "EPRT failed, server said: %s"
  1587. msgstr "Befehl EPRT fehlgeschlagen: %s"
  1588. #: methods/ftp.cc:823
  1589. msgid "Data socket connect timed out"
  1590. msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung"
  1591. #: methods/ftp.cc:830
  1592. msgid "Unable to accept connection"
  1593. msgstr "Kann Verbindung nicht annehmen"
  1594. #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303
  1595. msgid "Problem hashing file"
  1596. msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf"
  1597. #: methods/ftp.cc:882
  1598. #, c-format
  1599. msgid "Unable to fetch file, server said '%s'"
  1600. msgstr "Kann Datei nicht holen, Server antwortete: »%s«"
  1601. #: methods/ftp.cc:897 methods/rsh.cc:322
  1602. msgid "Data socket timed out"
  1603. msgstr "Datenverbindung erlitt Zeitüberschreitung"
  1604. #: methods/ftp.cc:927
  1605. #, c-format
  1606. msgid "Data transfer failed, server said '%s'"
  1607. msgstr "Datenübertragung fehlgeschlagen, Server antwortete: »%s«"
  1608. #. Get the files information
  1609. #: methods/ftp.cc:1002
  1610. msgid "Query"
  1611. msgstr "Abfrage"
  1612. #: methods/ftp.cc:1114
  1613. msgid "Unable to invoke "
  1614. msgstr "Kann nicht aufrufen: "
  1615. #: methods/connect.cc:70
  1616. #, c-format
  1617. msgid "Connecting to %s (%s)"
  1618. msgstr "Verbinde mit %s (%s)"
  1619. #: methods/connect.cc:81
  1620. #, c-format
  1621. msgid "[IP: %s %s]"
  1622. msgstr "[IP: %s %s]"
  1623. #: methods/connect.cc:90
  1624. #, c-format
  1625. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1626. msgstr "Konnte kein Socket für %s erzeugen (f=%u t=%u p=%u)"
  1627. #: methods/connect.cc:96
  1628. #, c-format
  1629. msgid "Cannot initiate the connection to %s:%s (%s)."
  1630. msgstr "Kann keine Verbindung mit %s:%s aufbauen (%s)."
  1631. #: methods/connect.cc:104
  1632. #, c-format
  1633. msgid "Could not connect to %s:%s (%s), connection timed out"
  1634. msgstr ""
  1635. "Konnte keine Verbindung mit %s:%s aufbauen (%s), eine Zeitüberschreitung "
  1636. "trat auf"
  1637. #: methods/connect.cc:119
  1638. #, c-format
  1639. msgid "Could not connect to %s:%s (%s)."
  1640. msgstr "Konnte nicht mit %s:%s verbinden (%s)."
  1641. #. We say this mainly because the pause here is for the
  1642. #. ssh connection that is still going
  1643. #: methods/connect.cc:147 methods/rsh.cc:425
  1644. #, c-format
  1645. msgid "Connecting to %s"
  1646. msgstr "Verbinde mit %s"
  1647. #: methods/connect.cc:165 methods/connect.cc:184
  1648. #, c-format
  1649. msgid "Could not resolve '%s'"
  1650. msgstr "Konnte »%s« nicht auflösen"
  1651. #: methods/connect.cc:190
  1652. #, c-format
  1653. msgid "Temporary failure resolving '%s'"
  1654. msgstr "Temporärer Fehlschlag beim Auflösen von »%s«"
  1655. #: methods/connect.cc:193
  1656. #, c-format
  1657. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1658. msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i)"
  1659. #: methods/connect.cc:240
  1660. #, c-format
  1661. msgid "Unable to connect to %s %s:"
  1662. msgstr "Kann nicht mit %s %s verbinden:"
  1663. #: methods/gpgv.cc:71
  1664. #, c-format
  1665. msgid "Couldn't access keyring: '%s'"
  1666. msgstr "Konnte nicht auf Schlüsselring zugreifen: »%s«"
  1667. #: methods/gpgv.cc:107
  1668. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1669. msgstr "F: Argumentliste von Acquire::gpgv::Options zu lang. Abbruch."
  1670. #: methods/gpgv.cc:223
  1671. msgid ""
  1672. "Internal error: Good signature, but could not determine key fingerprint?!"
  1673. msgstr ""
  1674. "Interner Fehler: Gültige Signatur, aber konnte den Fingerabdruck des "
  1675. "Schlüssels nicht ermitteln?!"
  1676. #: methods/gpgv.cc:228
  1677. msgid "At least one invalid signature was encountered."
  1678. msgstr "Mindestens eine ungültige Signatur wurde entdeckt."
  1679. #: methods/gpgv.cc:232
  1680. #, c-format
  1681. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1682. msgstr ""
  1683. "Konnte »%s« zum Überprüfen der Signatur nicht ausführen (ist gpgv "
  1684. "installiert?)"
  1685. #: methods/gpgv.cc:237
  1686. msgid "Unknown error executing gpgv"
  1687. msgstr "Unbekannter Fehler beim Ausführen von gpgv"
  1688. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1689. msgid "The following signatures were invalid:\n"
  1690. msgstr "Die folgenden Signaturen waren ungültig:\n"
  1691. #: methods/gpgv.cc:285
  1692. msgid ""
  1693. "The following signatures couldn't be verified because the public key is not "
  1694. "available:\n"
  1695. msgstr ""
  1696. "Die folgenden Signaturen konnten nicht überprüft werden, weil ihr "
  1697. "öffentlicher\n"
  1698. "Schlüssel nicht verfügbar ist:\n"
  1699. #: methods/gzip.cc:64
  1700. #, c-format
  1701. msgid "Couldn't open pipe for %s"
  1702. msgstr "Konnte keine Pipe (Weiterleitung) für %s öffnen"
  1703. #: methods/gzip.cc:109
  1704. #, c-format
  1705. msgid "Read error from %s process"
  1706. msgstr "Lesefehler von Prozess %s"
  1707. #: methods/http.cc:384
  1708. msgid "Waiting for headers"
  1709. msgstr "Warte auf Kopfzeilen"
  1710. #: methods/http.cc:530
  1711. #, c-format
  1712. msgid "Got a single header line over %u chars"
  1713. msgstr "Erhielt einzelne Kopfzeile aus %u Zeichen"
  1714. #: methods/http.cc:538
  1715. msgid "Bad header line"
  1716. msgstr "Ungültige Kopfzeile"
  1717. #: methods/http.cc:557 methods/http.cc:564
  1718. msgid "The HTTP server sent an invalid reply header"
  1719. msgstr "Der HTTP-Server sandte eine ungültige Antwort-Kopfzeile"
  1720. #: methods/http.cc:593
  1721. msgid "The HTTP server sent an invalid Content-Length header"
  1722. msgstr "Der HTTP-Server sandte eine ungültige »Content-Length«-Kopfzeile"
  1723. #: methods/http.cc:608
  1724. msgid "The HTTP server sent an invalid Content-Range header"
  1725. msgstr "Der HTTP-Server sandte eine ungültige »Content-Range«-Kopfzeile"
  1726. #: methods/http.cc:610
  1727. msgid "This HTTP server has broken range support"
  1728. msgstr "Der HTTP-Server unterstützt Datei-Teilübertragung nur fehlerhaft."
  1729. #: methods/http.cc:634
  1730. msgid "Unknown date format"
  1731. msgstr "Unbekanntes Datumsformat"
  1732. #: methods/http.cc:787
  1733. msgid "Select failed"
  1734. msgstr "Auswahl fehlgeschlagen"
  1735. #: methods/http.cc:792
  1736. msgid "Connection timed out"
  1737. msgstr "Verbindung erlitt Zeitüberschreitung"
  1738. #: methods/http.cc:815
  1739. msgid "Error writing to output file"
  1740. msgstr "Fehler beim Schreiben der Ausgabedatei"
  1741. #: methods/http.cc:846
  1742. msgid "Error writing to file"
  1743. msgstr "Fehler beim Schreiben einer Datei"
  1744. #: methods/http.cc:874
  1745. msgid "Error writing to the file"
  1746. msgstr "Fehler beim Schreiben der Datei"
  1747. #: methods/http.cc:888
  1748. msgid "Error reading from server. Remote end closed connection"
  1749. msgstr ""
  1750. "Fehler beim Lesen vom Server: Der Server am anderen Ende hat die Verbindung "
  1751. "geschlossen"
  1752. #: methods/http.cc:890
  1753. msgid "Error reading from server"
  1754. msgstr "Fehler beim Lesen vom Server"
  1755. #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215
  1756. msgid "Failed to truncate file"
  1757. msgstr "Konnte Datei nicht einkürzen"
  1758. #: methods/http.cc:1146
  1759. msgid "Bad header data"
  1760. msgstr "Fehlerhafte Kopfzeilendaten"
  1761. #: methods/http.cc:1163 methods/http.cc:1218
  1762. msgid "Connection failed"
  1763. msgstr "Verbindung fehlgeschlagen"
  1764. #: methods/http.cc:1310
  1765. msgid "Internal error"
  1766. msgstr "Interner Fehler"
  1767. #: apt-pkg/contrib/mmap.cc:76
  1768. msgid "Can't mmap an empty file"
  1769. msgstr "Kann eine leere Datei nicht mit mmap abbilden"
  1770. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187
  1771. #, c-format
  1772. msgid "Couldn't make mmap of %lu bytes"
  1773. msgstr "Konnte kein mmap von %lu Bytes durchführen"
  1774. #: apt-pkg/contrib/mmap.cc:234
  1775. #, c-format
  1776. msgid ""
  1777. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1778. "Current value: %lu. (man 5 apt.conf)"
  1779. msgstr ""
  1780. "Nicht genügend Platz für Dynamic MMap. Bitte erhöhen Sie den Wert von APT::"
  1781. "Cache-Limit. Aktueller Wert: %lu. (Siehe auch man 5 apt.conf.)"
  1782. #. d means days, h means hours, min means minutes, s means seconds
  1783. #: apt-pkg/contrib/strutl.cc:335
  1784. #, c-format
  1785. msgid "%lid %lih %limin %lis"
  1786. msgstr "%liT %liS %liMin %lis"
  1787. #. h means hours, min means minutes, s means seconds
  1788. #: apt-pkg/contrib/strutl.cc:342
  1789. #, c-format
  1790. msgid "%lih %limin %lis"
  1791. msgstr "%liS %liMin %lis"
  1792. #. min means minutes, s means seconds
  1793. #: apt-pkg/contrib/strutl.cc:349
  1794. #, c-format
  1795. msgid "%limin %lis"
  1796. msgstr "%liMin %lis"
  1797. #. s means seconds
  1798. #: apt-pkg/contrib/strutl.cc:354
  1799. #, c-format
  1800. msgid "%lis"
  1801. msgstr "%lis"
  1802. #: apt-pkg/contrib/strutl.cc:1029
  1803. #, c-format
  1804. msgid "Selection %s not found"
  1805. msgstr "Auswahl %s nicht gefunden"
  1806. #: apt-pkg/contrib/configuration.cc:439
  1807. #, c-format
  1808. msgid "Unrecognized type abbreviation: '%c'"
  1809. msgstr "Nicht erkannte Typabkürzung: »%c«"
  1810. #: apt-pkg/contrib/configuration.cc:497
  1811. #, c-format
  1812. msgid "Opening configuration file %s"
  1813. msgstr "Öffne Konfigurationsdatei %s"
  1814. #: apt-pkg/contrib/configuration.cc:663
  1815. #, c-format
  1816. msgid "Syntax error %s:%u: Block starts with no name."
  1817. msgstr "Syntaxfehler %s:%u: Block fängt ohne Namen an."
  1818. #: apt-pkg/contrib/configuration.cc:682
  1819. #, c-format
  1820. msgid "Syntax error %s:%u: Malformed tag"
  1821. msgstr "Syntaxfehler %s:%u: Missgestaltetes Tag"
  1822. #: apt-pkg/contrib/configuration.cc:699
  1823. #, c-format
  1824. msgid "Syntax error %s:%u: Extra junk after value"
  1825. msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll nach Wert"
  1826. #: apt-pkg/contrib/configuration.cc:739
  1827. #, c-format
  1828. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1829. msgstr ""
  1830. "Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden"
  1831. #: apt-pkg/contrib/configuration.cc:746
  1832. #, c-format
  1833. msgid "Syntax error %s:%u: Too many nested includes"
  1834. msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (include)"
  1835. #: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755
  1836. #, c-format
  1837. msgid "Syntax error %s:%u: Included from here"
  1838. msgstr "Syntaxfehler %s:%u: Eingefügt von hier"
  1839. #: apt-pkg/contrib/configuration.cc:759
  1840. #, c-format
  1841. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1842. msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«"
  1843. #: apt-pkg/contrib/configuration.cc:810
  1844. #, c-format
  1845. msgid "Syntax error %s:%u: Extra junk at end of file"
  1846. msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll am Dateiende"
  1847. #: apt-pkg/contrib/progress.cc:153
  1848. #, c-format
  1849. msgid "%c%s... Error!"
  1850. msgstr "%c%s... Fehler!"
  1851. #: apt-pkg/contrib/progress.cc:155
  1852. #, c-format
  1853. msgid "%c%s... Done"
  1854. msgstr "%c%s... Fertig"
  1855. #: apt-pkg/contrib/cmndline.cc:77
  1856. #, c-format
  1857. msgid "Command line option '%c' [from %s] is not known."
  1858. msgstr "Kommandozeilenoption »%c« [aus %s] ist nicht bekannt."
  1859. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1860. #: apt-pkg/contrib/cmndline.cc:119
  1861. #, c-format
  1862. msgid "Command line option %s is not understood"
  1863. msgstr "Kommandozeilenoption %s wird nicht verstanden"
  1864. #: apt-pkg/contrib/cmndline.cc:124
  1865. #, c-format
  1866. msgid "Command line option %s is not boolean"
  1867. msgstr "Kommandozeilenoption %s ist nicht Boole'sch"
  1868. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1869. #, c-format
  1870. msgid "Option %s requires an argument."
  1871. msgstr "Option %s erfordert ein Argument."
  1872. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1873. #, c-format
  1874. msgid "Option %s: Configuration item specification must have an =<val>."
  1875. msgstr "Option %s: Konfigurationswertspezifikation muss =<wert> enthalten."
  1876. #: apt-pkg/contrib/cmndline.cc:234
  1877. #, c-format
  1878. msgid "Option %s requires an integer argument, not '%s'"
  1879. msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«"
  1880. #: apt-pkg/contrib/cmndline.cc:265
  1881. #, c-format
  1882. msgid "Option '%s' is too long"
  1883. msgstr "Option »%s« ist zu lang"
  1884. # Check for boolean; -1 is unspecified, 0 is yes 1 is no
  1885. #: apt-pkg/contrib/cmndline.cc:298
  1886. #, c-format
  1887. msgid "Sense %s is not understood, try true or false."
  1888. msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«."
  1889. #: apt-pkg/contrib/cmndline.cc:348
  1890. #, c-format
  1891. msgid "Invalid operation %s"
  1892. msgstr "Ungültige Operation %s."
  1893. #: apt-pkg/contrib/cdromutl.cc:52
  1894. #, c-format
  1895. msgid "Unable to stat the mount point %s"
  1896. msgstr "Kann kein »stat« auf dem Einhängepunkt %s durchführen."
  1897. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1898. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1899. #, c-format
  1900. msgid "Unable to change to %s"
  1901. msgstr "Kann nicht nach %s wechseln"
  1902. #: apt-pkg/contrib/cdromutl.cc:195
  1903. msgid "Failed to stat the cdrom"
  1904. msgstr "Konnte kein »stat« auf der CD-ROM durchführen"
  1905. #: apt-pkg/contrib/fileutl.cc:149
  1906. #, c-format
  1907. msgid "Not using locking for read only lock file %s"
  1908. msgstr "Benutze keine Sperre für schreibgeschützte Lockdatei %s"
  1909. #: apt-pkg/contrib/fileutl.cc:154
  1910. #, c-format
  1911. msgid "Could not open lock file %s"
  1912. msgstr "Konnte Lockdatei %s nicht öffnen"
  1913. #: apt-pkg/contrib/fileutl.cc:172
  1914. #, c-format
  1915. msgid "Not using locking for nfs mounted lock file %s"
  1916. msgstr "Benutze keine Sperre für NFS-eingebundene Lockdatei %s"
  1917. #: apt-pkg/contrib/fileutl.cc:176
  1918. #, c-format
  1919. msgid "Could not get lock %s"
  1920. msgstr "Konnte Lock %s nicht bekommen"
  1921. #: apt-pkg/contrib/fileutl.cc:444
  1922. #, c-format
  1923. msgid "Waited for %s but it wasn't there"
  1924. msgstr "Auf %s gewartet, aber es war nicht da"
  1925. #: apt-pkg/contrib/fileutl.cc:456
  1926. #, c-format
  1927. msgid "Sub-process %s received a segmentation fault."
  1928. msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten."
  1929. #: apt-pkg/contrib/fileutl.cc:458
  1930. #, fuzzy, c-format
  1931. msgid "Sub-process %s received signal %u."
  1932. msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten."
  1933. #: apt-pkg/contrib/fileutl.cc:462
  1934. #, c-format
  1935. msgid "Sub-process %s returned an error code (%u)"
  1936. msgstr "Unterprozess %s ist mit einem Fehlercode zurückgekehrt (%u)"
  1937. #: apt-pkg/contrib/fileutl.cc:464
  1938. #, c-format
  1939. msgid "Sub-process %s exited unexpectedly"
  1940. msgstr "Unterprozess %s hat sich unerwartet beendet"
  1941. #: apt-pkg/contrib/fileutl.cc:508
  1942. #, c-format
  1943. msgid "Could not open file %s"
  1944. msgstr "Konnte Datei %s nicht öffnen"
  1945. #: apt-pkg/contrib/fileutl.cc:564
  1946. #, c-format
  1947. msgid "read, still have %lu to read but none left"
  1948. msgstr "Lese, habe noch %lu zu lesen, aber nichts mehr übrig"
  1949. #: apt-pkg/contrib/fileutl.cc:594
  1950. #, c-format
  1951. msgid "write, still have %lu to write but couldn't"
  1952. msgstr "Schreiben, habe noch %lu zu schreiben, konnte aber nicht"
  1953. #: apt-pkg/contrib/fileutl.cc:669
  1954. msgid "Problem closing the file"
  1955. msgstr "Beim Schließen der Datei trat ein Problem auf"
  1956. #: apt-pkg/contrib/fileutl.cc:675
  1957. msgid "Problem unlinking the file"
  1958. msgstr "Beim Unlinking der Datei trat ein Problem auf"
  1959. #: apt-pkg/contrib/fileutl.cc:686
  1960. msgid "Problem syncing the file"
  1961. msgstr "Beim Synchronisieren einer Datei trat ein Problem auf"
  1962. #: apt-pkg/pkgcache.cc:133
  1963. msgid "Empty package cache"
  1964. msgstr "Leerer Paket-Cache"
  1965. #: apt-pkg/pkgcache.cc:139
  1966. msgid "The package cache file is corrupted"
  1967. msgstr "Die Paket-Cache-Datei ist beschädigt"
  1968. #: apt-pkg/pkgcache.cc:144
  1969. msgid "The package cache file is an incompatible version"
  1970. msgstr "Die Paket-Cache-Datei liegt in einer inkompatiblen Version vor"
  1971. #: apt-pkg/pkgcache.cc:149
  1972. #, c-format
  1973. msgid "This APT does not support the versioning system '%s'"
  1974. msgstr "Dieses APT unterstützt das Versionssystem »%s« nicht"
  1975. #: apt-pkg/pkgcache.cc:154
  1976. msgid "The package cache was built for a different architecture"
  1977. msgstr "Der Paket-Cache wurde für eine andere Architektur aufgebaut"
  1978. #: apt-pkg/pkgcache.cc:225
  1979. msgid "Depends"
  1980. msgstr "Hängt ab"
  1981. #: apt-pkg/pkgcache.cc:225
  1982. msgid "PreDepends"
  1983. msgstr "Hängt ab (vorher)"
  1984. #: apt-pkg/pkgcache.cc:225
  1985. msgid "Suggests"
  1986. msgstr "Schlägt vor"
  1987. #: apt-pkg/pkgcache.cc:226
  1988. msgid "Recommends"
  1989. msgstr "Empfiehlt"
  1990. #: apt-pkg/pkgcache.cc:226
  1991. msgid "Conflicts"
  1992. msgstr "Kollidiert"
  1993. #: apt-pkg/pkgcache.cc:226
  1994. msgid "Replaces"
  1995. msgstr "Ersetzt"
  1996. #: apt-pkg/pkgcache.cc:227
  1997. msgid "Obsoletes"
  1998. msgstr "Veraltet"
  1999. #: apt-pkg/pkgcache.cc:227
  2000. msgid "Breaks"
  2001. msgstr "Stört"
  2002. #: apt-pkg/pkgcache.cc:227
  2003. msgid "Enhances"
  2004. msgstr "Wertet auf"
  2005. #: apt-pkg/pkgcache.cc:238
  2006. msgid "important"
  2007. msgstr "wichtig"
  2008. #: apt-pkg/pkgcache.cc:238
  2009. msgid "required"
  2010. msgstr "erforderlich"
  2011. #: apt-pkg/pkgcache.cc:238
  2012. msgid "standard"
  2013. msgstr "standard"
  2014. #: apt-pkg/pkgcache.cc:239
  2015. msgid "optional"
  2016. msgstr "optional"
  2017. #: apt-pkg/pkgcache.cc:239
  2018. msgid "extra"
  2019. msgstr "extra"
  2020. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  2021. msgid "Building dependency tree"
  2022. msgstr "Abhängigkeitsbaum wird aufgebaut"
  2023. #: apt-pkg/depcache.cc:124
  2024. msgid "Candidate versions"
  2025. msgstr "Mögliche Versionen"
  2026. #: apt-pkg/depcache.cc:153
  2027. msgid "Dependency generation"
  2028. msgstr "Abhängigkeits-Generierung"
  2029. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  2030. msgid "Reading state information"
  2031. msgstr "Lese Status-Informationen ein"
  2032. #: apt-pkg/depcache.cc:223
  2033. #, c-format
  2034. msgid "Failed to open StateFile %s"
  2035. msgstr "Konnte Statusdatei %s nicht öffnen"
  2036. #: apt-pkg/depcache.cc:229
  2037. #, c-format
  2038. msgid "Failed to write temporary StateFile %s"
  2039. msgstr "Konnte temporäre Statusdatei %s nicht schreiben"
  2040. #: apt-pkg/tagfile.cc:102
  2041. #, c-format
  2042. msgid "Unable to parse package file %s (1)"
  2043. msgstr "Kann Paketdatei %s nicht verarbeiten (1)"
  2044. #: apt-pkg/tagfile.cc:189
  2045. #, c-format
  2046. msgid "Unable to parse package file %s (2)"
  2047. msgstr "Kann Paketdatei %s nicht verarbeiten (2)"
  2048. #: apt-pkg/sourcelist.cc:90
  2049. #, c-format
  2050. msgid "Malformed line %lu in source list %s (URI)"
  2051. msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)"
  2052. #: apt-pkg/sourcelist.cc:92
  2053. #, c-format
  2054. msgid "Malformed line %lu in source list %s (dist)"
  2055. msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)"
  2056. #: apt-pkg/sourcelist.cc:95
  2057. #, c-format
  2058. msgid "Malformed line %lu in source list %s (URI parse)"
  2059. msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)"
  2060. #: apt-pkg/sourcelist.cc:101
  2061. #, c-format
  2062. msgid "Malformed line %lu in source list %s (absolute dist)"
  2063. msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)"
  2064. #: apt-pkg/sourcelist.cc:108
  2065. #, c-format
  2066. msgid "Malformed line %lu in source list %s (dist parse)"
  2067. msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)"
  2068. #: apt-pkg/sourcelist.cc:206
  2069. #, c-format
  2070. msgid "Opening %s"
  2071. msgstr "%s wird geöffnet"
  2072. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2073. #, c-format
  2074. msgid "Line %u too long in source list %s."
  2075. msgstr "Zeile %u zu lang in der Quellliste %s."
  2076. #: apt-pkg/sourcelist.cc:243
  2077. #, c-format
  2078. msgid "Malformed line %u in source list %s (type)"
  2079. msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)"
  2080. #: apt-pkg/sourcelist.cc:247
  2081. #, c-format
  2082. msgid "Type '%s' is not known on line %u in source list %s"
  2083. msgstr "Typ »%s« ist unbekannt in Zeile %u der Quellliste %s"
  2084. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2085. #, c-format
  2086. msgid "Malformed line %u in source list %s (vendor id)"
  2087. msgstr "Missgestaltete Zeile %u in Quellliste %s (»vendor id«)"
  2088. #: apt-pkg/packagemanager.cc:426
  2089. #, c-format
  2090. msgid ""
  2091. "This installation run will require temporarily removing the essential "
  2092. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2093. "you really want to do it, activate the APT::Force-LoopBreak option."
  2094. msgstr ""
  2095. "Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket "
  2096. "%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das "
  2097. "ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte "
  2098. "die Option APT::Force-LoopBreak."
  2099. #: apt-pkg/pkgrecords.cc:32
  2100. #, c-format
  2101. msgid "Index file type '%s' is not supported"
  2102. msgstr "Indexdateityp »%s« wird nicht unterstützt"
  2103. #: apt-pkg/algorithms.cc:248
  2104. #, c-format
  2105. msgid ""
  2106. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2107. msgstr ""
  2108. "Das Paket %s muss neu installiert werden, ich kann aber kein Archiv dafür "
  2109. "finden."
  2110. #: apt-pkg/algorithms.cc:1138
  2111. msgid ""
  2112. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2113. "held packages."
  2114. msgstr ""
  2115. "Fehler: pkgProblemResolver::Resolve hat Unterbrechungen hervorgerufen, dies "
  2116. "könnte durch gehaltene Pakete hervorgerufen worden sein."
  2117. #: apt-pkg/algorithms.cc:1140
  2118. msgid "Unable to correct problems, you have held broken packages."
  2119. msgstr "Kann Probleme nicht korrigieren, Sie haben gehaltene defekte Pakete."
  2120. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2121. msgid ""
  2122. "Some index files failed to download, they have been ignored, or old ones "
  2123. "used instead."
  2124. msgstr ""
  2125. "Einige Indexdateien konnten nicht heruntergeladen werden, sie wurden "
  2126. "ignoriert oder alte an ihrer Stelle benutzt."
  2127. #: apt-pkg/acquire.cc:60
  2128. #, c-format
  2129. msgid "Lists directory %spartial is missing."
  2130. msgstr "Listenverzeichnis %spartial fehlt."
  2131. #: apt-pkg/acquire.cc:64
  2132. #, c-format
  2133. msgid "Archive directory %spartial is missing."
  2134. msgstr "Archivverzeichnis %spartial fehlt."
  2135. #. only show the ETA if it makes sense
  2136. #. two days
  2137. #: apt-pkg/acquire.cc:826
  2138. #, c-format
  2139. msgid "Retrieving file %li of %li (%s remaining)"
  2140. msgstr "Hole Datei %li von %li (noch %s)"
  2141. #: apt-pkg/acquire.cc:828
  2142. #, c-format
  2143. msgid "Retrieving file %li of %li"
  2144. msgstr "Hole Datei %li von %li"
  2145. #: apt-pkg/acquire-worker.cc:110
  2146. #, c-format
  2147. msgid "The method driver %s could not be found."
  2148. msgstr "Der Treiber für Methode %s konnte nicht gefunden werden."
  2149. #: apt-pkg/acquire-worker.cc:159
  2150. #, c-format
  2151. msgid "Method %s did not start correctly"
  2152. msgstr "Methode %s ist nicht korrekt gestartet"
  2153. #: apt-pkg/acquire-worker.cc:413
  2154. #, c-format
  2155. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2156. msgstr ""
  2157. "Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« und drücken Sie "
  2158. "die Eingabetaste."
  2159. #: apt-pkg/init.cc:132
  2160. #, c-format
  2161. msgid "Packaging system '%s' is not supported"
  2162. msgstr "Paketierungssystem »%s« wird nicht unterstützt"
  2163. #: apt-pkg/init.cc:148
  2164. msgid "Unable to determine a suitable packaging system type"
  2165. msgstr "Kann keinen passenden Paketierungssystem-Typ bestimmen"
  2166. #: apt-pkg/clean.cc:56
  2167. #, c-format
  2168. msgid "Unable to stat %s."
  2169. msgstr "Kann kein »stat« auf %s durchführen."
  2170. #: apt-pkg/srcrecords.cc:44
  2171. msgid "You must put some 'source' URIs in your sources.list"
  2172. msgstr ""
  2173. "Sie müssen einige »source«-URIs für Quellen in die sources.list-Datei "
  2174. "schreiben."
  2175. #: apt-pkg/cachefile.cc:71
  2176. msgid "The package lists or status file could not be parsed or opened."
  2177. msgstr ""
  2178. "Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet "
  2179. "werden."
  2180. #: apt-pkg/cachefile.cc:75
  2181. msgid "You may want to run apt-get update to correct these problems"
  2182. msgstr "Probieren Sie »apt-get update«, um diese Probleme zu korrigieren."
  2183. #: apt-pkg/policy.cc:347
  2184. #, fuzzy, c-format
  2185. msgid "Invalid record in the preferences file %s, no Package header"
  2186. msgstr "Ungültiger Eintrag in Einstellungsdatei, keine »Package«-Kopfzeilen"
  2187. #: apt-pkg/policy.cc:369
  2188. #, c-format
  2189. msgid "Did not understand pin type %s"
  2190. msgstr "Konnte Pinning-Typ (pin type) %s nicht verstehen"
  2191. #: apt-pkg/policy.cc:377
  2192. msgid "No priority (or zero) specified for pin"
  2193. msgstr "Keine Priorität (oder Null) für Pin angegeben"
  2194. #: apt-pkg/pkgcachegen.cc:74
  2195. msgid "Cache has an incompatible versioning system"
  2196. msgstr "Cache hat ein inkompatibles Versionssystem"
  2197. #: apt-pkg/pkgcachegen.cc:117
  2198. #, c-format
  2199. msgid "Error occurred while processing %s (NewPackage)"
  2200. msgstr "Ein Fehler trat beim Verarbeiten von %s auf (NewPackage)"
  2201. #: apt-pkg/pkgcachegen.cc:132
  2202. #, c-format
  2203. msgid "Error occurred while processing %s (UsePackage1)"
  2204. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage1)"
  2205. #: apt-pkg/pkgcachegen.cc:166
  2206. #, c-format
  2207. msgid "Error occurred while processing %s (NewFileDesc1)"
  2208. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileDesc1)"
  2209. #: apt-pkg/pkgcachegen.cc:191
  2210. #, c-format
  2211. msgid "Error occurred while processing %s (UsePackage2)"
  2212. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage2)"
  2213. #: apt-pkg/pkgcachegen.cc:195
  2214. #, c-format
  2215. msgid "Error occurred while processing %s (NewFileVer1)"
  2216. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
  2217. #: apt-pkg/pkgcachegen.cc:226
  2218. #, c-format
  2219. msgid "Error occurred while processing %s (NewVersion1)"
  2220. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion1)"
  2221. #: apt-pkg/pkgcachegen.cc:230
  2222. #, c-format
  2223. msgid "Error occurred while processing %s (UsePackage3)"
  2224. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage3)"
  2225. #: apt-pkg/pkgcachegen.cc:234
  2226. #, c-format
  2227. msgid "Error occurred while processing %s (NewVersion2)"
  2228. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion2)"
  2229. #: apt-pkg/pkgcachegen.cc:258
  2230. #, c-format
  2231. msgid "Error occurred while processing %s (NewFileDesc2)"
  2232. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileDesc2)"
  2233. #: apt-pkg/pkgcachegen.cc:264
  2234. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2235. msgstr ""
  2236. "Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen APT "
  2237. "umgehen kann."
  2238. #: apt-pkg/pkgcachegen.cc:267
  2239. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2240. msgstr ""
  2241. "Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen APT "
  2242. "umgehen kann."
  2243. #: apt-pkg/pkgcachegen.cc:270
  2244. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2245. msgstr ""
  2246. "Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen "
  2247. "APT umgehen kann."
  2248. #: apt-pkg/pkgcachegen.cc:273
  2249. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2250. msgstr ""
  2251. "Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen "
  2252. "APT umgehen kann."
  2253. #: apt-pkg/pkgcachegen.cc:301
  2254. #, c-format
  2255. msgid "Error occurred while processing %s (FindPkg)"
  2256. msgstr "Fehler trat beim Bearbeiten von %s auf (FindPkg)"
  2257. #: apt-pkg/pkgcachegen.cc:314
  2258. #, c-format
  2259. msgid "Error occurred while processing %s (CollectFileProvides)"
  2260. msgstr "Fehler trat beim Bearbeiten von %s auf (CollectFileProvides)"
  2261. #: apt-pkg/pkgcachegen.cc:320
  2262. #, c-format
  2263. msgid "Package %s %s was not found while processing file dependencies"
  2264. msgstr ""
  2265. "Paket %s %s wurde nicht gefunden beim Verarbeiten der Dateiabhängigkeiten"
  2266. #: apt-pkg/pkgcachegen.cc:693
  2267. #, c-format
  2268. msgid "Couldn't stat source package list %s"
  2269. msgstr "Konnte kein »stat« auf der Liste %s der Quellpakete durchführen."
  2270. #: apt-pkg/pkgcachegen.cc:778
  2271. msgid "Collecting File Provides"
  2272. msgstr "Sammle Datei-Provides"
  2273. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2274. msgid "IO Error saving source cache"
  2275. msgstr "E/A-Fehler beim Speichern des Quell-Caches"
  2276. #: apt-pkg/acquire-item.cc:128
  2277. #, c-format
  2278. msgid "rename failed, %s (%s -> %s)."
  2279. msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)."
  2280. #: apt-pkg/acquire-item.cc:395
  2281. msgid "MD5Sum mismatch"
  2282. msgstr "MD5-Summe stimmt nicht überein"
  2283. #: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411
  2284. msgid "Hash Sum mismatch"
  2285. msgstr "Hash-Summe stimmt nicht überein"
  2286. #: apt-pkg/acquire-item.cc:1106
  2287. msgid "There is no public key available for the following key IDs:\n"
  2288. msgstr ""
  2289. "Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n"
  2290. #: apt-pkg/acquire-item.cc:1216
  2291. #, c-format
  2292. msgid ""
  2293. "I wasn't able to locate a file for the %s package. This might mean you need "
  2294. "to manually fix this package. (due to missing arch)"
  2295. msgstr ""
  2296. "Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
  2297. "dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)."
  2298. #: apt-pkg/acquire-item.cc:1275
  2299. #, c-format
  2300. msgid ""
  2301. "I wasn't able to locate file for the %s package. This might mean you need to "
  2302. "manually fix this package."
  2303. msgstr ""
  2304. "Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
  2305. "dieses Paket von Hand korrigieren müssen."
  2306. #: apt-pkg/acquire-item.cc:1316
  2307. #, c-format
  2308. msgid ""
  2309. "The package index files are corrupted. No Filename: field for package %s."
  2310. msgstr ""
  2311. "Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s."
  2312. #: apt-pkg/acquire-item.cc:1403
  2313. msgid "Size mismatch"
  2314. msgstr "Größe stimmt nicht überein"
  2315. #: apt-pkg/indexrecords.cc:40
  2316. #, fuzzy, c-format
  2317. msgid "Unable to parse Release file %s"
  2318. msgstr "Kann Paketdatei %s nicht verarbeiten (1)"
  2319. #: apt-pkg/indexrecords.cc:47
  2320. #, fuzzy, c-format
  2321. msgid "No sections in Release file %s"
  2322. msgstr "Hinweis: wähle %s an Stelle von %s\n"
  2323. #: apt-pkg/indexrecords.cc:81
  2324. #, c-format
  2325. msgid "No Hash entry in Release file %s"
  2326. msgstr ""
  2327. #: apt-pkg/vendorlist.cc:66
  2328. #, c-format
  2329. msgid "Vendor block %s contains no fingerprint"
  2330. msgstr "Herstellerblock %s enthält keinen Fingerabdruck"
  2331. #: apt-pkg/cdrom.cc:525
  2332. #, c-format
  2333. msgid ""
  2334. "Using CD-ROM mount point %s\n"
  2335. "Mounting CD-ROM\n"
  2336. msgstr ""
  2337. "Benutze CD-ROM-Einhängepunkt %s\n"
  2338. "Hänge CD-ROM ein\n"
  2339. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2340. msgid "Identifying.. "
  2341. msgstr "Identifiziere ... "
  2342. #: apt-pkg/cdrom.cc:559
  2343. #, c-format
  2344. msgid "Stored label: %s\n"
  2345. msgstr "Gespeicherte Kennzeichnung: %s\n"
  2346. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2347. msgid "Unmounting CD-ROM...\n"
  2348. msgstr "Hänge CD-ROM aus ...\n"
  2349. #: apt-pkg/cdrom.cc:585
  2350. #, c-format
  2351. msgid "Using CD-ROM mount point %s\n"
  2352. msgstr "Benutze CD-ROM-Einhängepunkt %s\n"
  2353. #: apt-pkg/cdrom.cc:603
  2354. msgid "Unmounting CD-ROM\n"
  2355. msgstr "Hänge CD-ROM aus\n"
  2356. #: apt-pkg/cdrom.cc:607
  2357. msgid "Waiting for disc...\n"
  2358. msgstr "Warte auf Disk ...\n"
  2359. #. Mount the new CDROM
  2360. #: apt-pkg/cdrom.cc:615
  2361. msgid "Mounting CD-ROM...\n"
  2362. msgstr "Hänge CD-ROM ein ...\n"
  2363. #: apt-pkg/cdrom.cc:633
  2364. msgid "Scanning disc for index files..\n"
  2365. msgstr "Suche auf CD nach Index-Dateien ...\n"
  2366. #: apt-pkg/cdrom.cc:673
  2367. #, c-format
  2368. msgid ""
  2369. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2370. "zu signatures\n"
  2371. msgstr ""
  2372. "Fand %zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu "
  2373. "Signaturen\n"
  2374. #: apt-pkg/cdrom.cc:684
  2375. msgid ""
  2376. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2377. "wrong architecture?"
  2378. msgstr ""
  2379. #: apt-pkg/cdrom.cc:710
  2380. #, c-format
  2381. msgid "Found label '%s'\n"
  2382. msgstr "Fand Kennzeichnung »%s«\n"
  2383. #: apt-pkg/cdrom.cc:739
  2384. msgid "That is not a valid name, try again.\n"
  2385. msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n"
  2386. #: apt-pkg/cdrom.cc:755
  2387. #, c-format
  2388. msgid ""
  2389. "This disc is called: \n"
  2390. "'%s'\n"
  2391. msgstr ""
  2392. "Diese Disk heißt: \n"
  2393. "»%s«\n"
  2394. #: apt-pkg/cdrom.cc:759
  2395. msgid "Copying package lists..."
  2396. msgstr "Kopiere Paketlisten..."
  2397. #: apt-pkg/cdrom.cc:785
  2398. msgid "Writing new source list\n"
  2399. msgstr "Schreibe neue Quellliste\n"
  2400. #: apt-pkg/cdrom.cc:794
  2401. msgid "Source list entries for this disc are:\n"
  2402. msgstr "Quelllisteneinträge für diese Disk sind:\n"
  2403. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2404. #, c-format
  2405. msgid "Wrote %i records.\n"
  2406. msgstr "Es wurden %i Datensätze geschrieben.\n"
  2407. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2408. #, c-format
  2409. msgid "Wrote %i records with %i missing files.\n"
  2410. msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n"
  2411. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2412. #, c-format
  2413. msgid "Wrote %i records with %i mismatched files\n"
  2414. msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n"
  2415. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2416. #, c-format
  2417. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2418. msgstr ""
  2419. "Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien "
  2420. "geschrieben.\n"
  2421. #: apt-pkg/deb/dpkgpm.cc:49
  2422. #, c-format
  2423. msgid "Installing %s"
  2424. msgstr "Installiere %s"
  2425. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642
  2426. #, c-format
  2427. msgid "Configuring %s"
  2428. msgstr "Konfiguriere %s"
  2429. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649
  2430. #, c-format
  2431. msgid "Removing %s"
  2432. msgstr "%s wird entfernt"
  2433. #: apt-pkg/deb/dpkgpm.cc:52
  2434. #, c-format
  2435. msgid "Running post-installation trigger %s"
  2436. msgstr "Rufe Nach-Installations-Trigger %s auf"
  2437. #: apt-pkg/deb/dpkgpm.cc:546
  2438. #, c-format
  2439. msgid "Directory '%s' missing"
  2440. msgstr "Verzeichnis »%s« fehlt"
  2441. #: apt-pkg/deb/dpkgpm.cc:635
  2442. #, c-format
  2443. msgid "Preparing %s"
  2444. msgstr "%s wird vorbereitet"
  2445. #: apt-pkg/deb/dpkgpm.cc:636
  2446. #, c-format
  2447. msgid "Unpacking %s"
  2448. msgstr "%s wird entpackt"
  2449. #: apt-pkg/deb/dpkgpm.cc:641
  2450. #, c-format
  2451. msgid "Preparing to configure %s"
  2452. msgstr "Konfiguration von %s wird vorbereitet"
  2453. #: apt-pkg/deb/dpkgpm.cc:643
  2454. #, c-format
  2455. msgid "Installed %s"
  2456. msgstr "%s installiert"
  2457. #: apt-pkg/deb/dpkgpm.cc:648
  2458. #, c-format
  2459. msgid "Preparing for removal of %s"
  2460. msgstr "Entfernen von %s wird vorbereitet"
  2461. #: apt-pkg/deb/dpkgpm.cc:650
  2462. #, c-format
  2463. msgid "Removed %s"
  2464. msgstr "%s entfernt"
  2465. #: apt-pkg/deb/dpkgpm.cc:655
  2466. #, c-format
  2467. msgid "Preparing to completely remove %s"
  2468. msgstr "Komplettes Entfernen von %s wird vorbereitet"
  2469. #: apt-pkg/deb/dpkgpm.cc:656
  2470. #, c-format
  2471. msgid "Completely removed %s"
  2472. msgstr "%s vollständig entfernt"
  2473. #: apt-pkg/deb/dpkgpm.cc:820
  2474. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2475. msgstr ""
  2476. "Kann Protokoll nicht schreiben, openpty() schlug fehl (/dev/pts nicht "
  2477. "eingehangen?)\n"
  2478. #: apt-pkg/deb/dpkgpm.cc:848
  2479. msgid "Running dpkg"
  2480. msgstr ""
  2481. #: apt-pkg/deb/debsystem.cc:70
  2482. #, c-format
  2483. msgid ""
  2484. "Unable to lock the administration directory (%s), is another process using "
  2485. "it?"
  2486. msgstr ""
  2487. #: apt-pkg/deb/debsystem.cc:73
  2488. #, fuzzy, c-format
  2489. msgid "Unable to lock the administration directory (%s), are you root?"
  2490. msgstr "Kann das Listenverzeichnis nicht sperren"
  2491. #: apt-pkg/deb/debsystem.cc:82
  2492. msgid ""
  2493. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2494. "the problem. "
  2495. msgstr ""
  2496. #: apt-pkg/deb/debsystem.cc:100
  2497. msgid "Not locked"
  2498. msgstr "Nicht gesperrt"
  2499. #: methods/rred.cc:219
  2500. msgid "Could not patch file"
  2501. msgstr "Konnte Datei nicht patchen"
  2502. #: methods/rsh.cc:330
  2503. msgid "Connection closed prematurely"
  2504. msgstr "Verbindung zu früh beendet"
  2505. #~ msgid "%4i %s\n"
  2506. #~ msgstr "%4i %s\n"
  2507. #~ msgid "Processing triggers for %s"
  2508. #~ msgstr "Verarbeite Auslöser (Trigger) für %s"