de.po 89 KB

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