de.po 85 KB

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