de.po 87 KB

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