de.po 87 KB

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