de.po 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. # German messages for the apt suite.
  2. # Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others.
  3. # Michael Piefel <piefel@informatik.hu-berlin.de>, 2001, 2002.
  4. # Rüdiger Kuhlmann <Uebersetzung@ruediger-kuhlmann.de>, 2002.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 0.5.5\n"
  9. "POT-Creation-Date: 2002-06-16 00:11+0200\n"
  10. "PO-Revision-Date: 2002-06-16 00:12+0200\n"
  11. "Last-Translator: Michael Piefel <piefel@debian.org>\n"
  12. "Language-Team: <de@li.org>\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. #: cmdline/acqprogress.cc:55
  17. msgid "Hit "
  18. msgstr "OK "
  19. #: cmdline/acqprogress.cc:79
  20. msgid "Get:"
  21. msgstr "Hole:"
  22. #: cmdline/acqprogress.cc:110
  23. msgid "Ign "
  24. msgstr "Ign "
  25. #: cmdline/acqprogress.cc:114
  26. msgid "Err "
  27. msgstr "Fehl "
  28. #: cmdline/acqprogress.cc:135
  29. #, c-format
  30. msgid "Fetched %sB in %s (%sB/s)\n"
  31. msgstr "Es wurden %sB in %s geholt (%sB/s)\n"
  32. #: cmdline/acqprogress.cc:225
  33. msgid " [Working]"
  34. msgstr " [Arbeite]"
  35. #: cmdline/acqprogress.cc:271
  36. #, c-format
  37. msgid ""
  38. "Media Change: Please insert the disc labeled '%s' in the drive '%s' and "
  39. "press enter\n"
  40. msgstr ""
  41. "Medienwechsel: Bitte legen Sie Medium »%s« in Laufwerk »%s« und drücken Sie "
  42. "die Eingabetaste\n"
  43. #: cmdline/apt-cache.cc:131
  44. #, c-format
  45. msgid "Package %s version %s has an unmet dep:\n"
  46. msgstr "Paket %s Version %s hat eine nichterfüllte Abhängigkeit:\n"
  47. #: cmdline/apt-cache.cc:171 cmdline/apt-cache.cc:523 cmdline/apt-cache.cc:669
  48. #: cmdline/apt-cache.cc:1035 cmdline/apt-cache.cc:1181
  49. #, c-format
  50. msgid "Unable to locate package %s"
  51. msgstr "Kann Paket %s nicht finden"
  52. #: cmdline/apt-cache.cc:228
  53. msgid "Total Package Names : "
  54. msgstr "Gesamtzahl an Paketnamen: "
  55. #: cmdline/apt-cache.cc:268
  56. msgid " Normal Packages: "
  57. msgstr " davon gewöhnliche Pakete: "
  58. #: cmdline/apt-cache.cc:269
  59. msgid " Pure Virtual Packages: "
  60. msgstr " davon rein virtuelle Pakete: "
  61. #: cmdline/apt-cache.cc:270
  62. msgid " Single Virtual Packages: "
  63. msgstr " davon einzelne virtuelle Pakete: "
  64. #: cmdline/apt-cache.cc:271
  65. msgid " Mixed Virtual Packages: "
  66. msgstr " davon gemischte virtuelle Pakete: "
  67. #: cmdline/apt-cache.cc:272
  68. msgid " Missing: "
  69. msgstr " davon fehlend: "
  70. #: cmdline/apt-cache.cc:274
  71. msgid "Total Distinct Versions: "
  72. msgstr "Gesamtzahl an unterschiedlichen Versionen: "
  73. #: cmdline/apt-cache.cc:276
  74. msgid "Total Dependencies: "
  75. msgstr "Gesamtzahl an Abhängigkeiten: "
  76. #: cmdline/apt-cache.cc:279
  77. msgid "Total Ver/File relations: "
  78. msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
  79. #: cmdline/apt-cache.cc:281
  80. msgid "Total Provides Mappings: "
  81. msgstr "Gesamtzahl an Bereitstellungen: "
  82. #: cmdline/apt-cache.cc:293
  83. msgid "Total Globbed Strings: "
  84. msgstr "Gesamtzahl an Mustern: "
  85. #: cmdline/apt-cache.cc:307
  86. msgid "Total Dependency Version space: "
  87. msgstr "Gesamtmenge an Abhängigkeits/Versionsspeicher: "
  88. #: cmdline/apt-cache.cc:312
  89. msgid "Total Slack space: "
  90. msgstr "Gesamtmenge an Slack: "
  91. #: cmdline/apt-cache.cc:320
  92. msgid "Total Space Accounted for: "
  93. msgstr "Gesamtmenge an Speicher: "
  94. #: cmdline/apt-cache.cc:442 cmdline/apt-cache.cc:869
  95. #, c-format
  96. msgid "Package file %s is out of sync."
  97. msgstr "Paketdatei %s ist nicht synchronisiert."
  98. #: cmdline/apt-cache.cc:911
  99. msgid "You must give exactly one pattern"
  100. msgstr "Sie müssen genau ein Muster angeben"
  101. #: cmdline/apt-cache.cc:1135
  102. msgid "Package Files:"
  103. msgstr "Paketdateien:"
  104. #: cmdline/apt-cache.cc:1142 cmdline/apt-cache.cc:1228
  105. msgid "Cache is out of sync, can't x-ref a package file"
  106. msgstr "Cache ist nicht sychron, kann eine Paketdatei nicht querverweisen"
  107. #: cmdline/apt-cache.cc:1143
  108. #, c-format
  109. msgid "%4i %s\n"
  110. msgstr "%4i %s\n"
  111. #. Show any packages have explicit pins
  112. #: cmdline/apt-cache.cc:1155
  113. msgid "Pinned Packages:"
  114. msgstr "Festgehaltene Pakete (»Pin«):"
  115. #: cmdline/apt-cache.cc:1167 cmdline/apt-cache.cc:1208
  116. msgid "(not found)"
  117. msgstr "(nicht gefunden)"
  118. #. Installed version
  119. #: cmdline/apt-cache.cc:1188
  120. msgid " Installed: "
  121. msgstr " Installiert:"
  122. #: cmdline/apt-cache.cc:1190 cmdline/apt-cache.cc:1198
  123. msgid "(none)"
  124. msgstr "(keine)"
  125. #. Candidate Version
  126. #: cmdline/apt-cache.cc:1195
  127. msgid " Candidate: "
  128. msgstr " Mögliche Pakete:"
  129. #: cmdline/apt-cache.cc:1205
  130. msgid " Package Pin: "
  131. msgstr " Paketstecknadel: "
  132. #. Show the priority tables
  133. #: cmdline/apt-cache.cc:1214
  134. msgid " Version Table:"
  135. msgstr " Versions-Tabelle:"
  136. #: cmdline/apt-cache.cc:1229
  137. #, c-format
  138. msgid " %4i %s\n"
  139. msgstr " %4i %s\n"
  140. #: cmdline/apt-cache.cc:1256 cmdline/apt-cdrom.cc:730 cmdline/apt-config.cc:69
  141. #: cmdline/apt-extracttemplates.cc:223 cmdline/apt-get.cc:2011
  142. #: cmdline/apt-sortpkgs.cc:142 ftparchive/apt-ftparchive.cc:544
  143. #, c-format
  144. msgid "%s %s for %s %s compiled on %s %s\n"
  145. msgstr "%s %s für %s %s kompiliert am %s %s\n"
  146. #: cmdline/apt-cache.cc:1260
  147. msgid ""
  148. "Usage: apt-cache [options] command\n"
  149. " apt-cache [options] add file1 [file1 ...]\n"
  150. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  151. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  152. "\n"
  153. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  154. "cache files, and query information from them\n"
  155. "\n"
  156. "Commands:\n"
  157. " add - Add an package file to the source cache\n"
  158. " gencaches - Build both the package and source cache\n"
  159. " showpkg - Show some general information for a single package\n"
  160. " showsrc - Show source records\n"
  161. " stats - Show some basic statistics\n"
  162. " dump - Show the entire file in a terse form\n"
  163. " dumpavail - Print an available file to stdout\n"
  164. " unmet - Show unmet dependencies\n"
  165. " search - Search the package list for a regex pattern\n"
  166. " show - Show a readable record for the package\n"
  167. " depends - Show raw dependency information for a package\n"
  168. " pkgnames - List the names of all packages\n"
  169. " dotty - Generate package graphs for GraphVis\n"
  170. " policy - Show policy settings\n"
  171. "\n"
  172. "Options:\n"
  173. " -h This help text.\n"
  174. " -p=? The package cache.\n"
  175. " -s=? The source cache.\n"
  176. " -q Disable progress indicator.\n"
  177. " -i Show only important deps for the unmet command.\n"
  178. " -c=? Read this configuration file\n"
  179. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  180. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  181. msgstr ""
  182. "Aufruf: apt-cache [Optionen] Befehl\n"
  183. " apt-cache [Optionen] add Datei1 [Datei2 ...]\n"
  184. " apt-cache [Optionen] showpkg Paket1 [Paket2 ...]\n"
  185. " apt-cache [Optionen] showsrc Paket1 [Paket2 ...]\n"
  186. "\n"
  187. "apt-cache ist ein Low-Level-Werkzeug, um die binären Cache-Dateien von\n"
  188. "APT zu manipulieren und Informationen daraus zu erfragen.\n"
  189. "\n"
  190. "Befehle:\n"
  191. " add - Paket-Datei dem Quellcache hinzufügen\n"
  192. " gencaches - Paket- und Quellcache neu erzeugen\n"
  193. " showpkg - Grundsätzliche Informationen für ein einzelnes Paket zeigen\n"
  194. " showsrc - Aufzeichnungen zu Quellen zeigen\n"
  195. " stats - Einige grundlegenden Statistiken zeigen\n"
  196. " dump - Gesamte Datei in Kurzform zeigen\n"
  197. " dumpavail - Gesamte Datei verfügbarer Pakete ausgeben\n"
  198. " unmet - Unerfüllte Abhängigkeiten zeigen\n"
  199. " search - In der Paketliste mittels regulären Ausdrucks suchen\n"
  200. " show - Einen lesbaren Datensatz für das Paket zeigen\n"
  201. " depends - Abhängigkeitsinformationen für ein Paket zeigen\n"
  202. " pkgnames - Alle Paketnamen auflisten\n"
  203. " dotty - Einen Paketgraph zur Verwendung mit GraphViz erzeugen\n"
  204. " policy - »policy«-Einstellungen zeigen\n"
  205. "\n"
  206. "Optionen:\n"
  207. " -h Dieser Hilfe-Text.\n"
  208. " -p=? Der Paketcache.\n"
  209. " -s=? Der Quellcache.\n"
  210. " -q Fortschrittsanzeige abschalten\n"
  211. " -i Nur wichtige Abhängigkeiten für den »unmet«-Befehl zeigen\n"
  212. " -c=? Diese Konfigurationsdatei lesen\n"
  213. " -o=? Eine beliebige Konfigurations-Option setzen, z. B. -o dir::cache=/tmp\n"
  214. "Siehe auch apt-cache(8) und apt.conf(5) für weitere Informationen.\n"
  215. #: cmdline/apt-config.cc:40
  216. msgid "Arguments not in pairs"
  217. msgstr "Argumente nicht paarweise"
  218. #: cmdline/apt-config.cc:75
  219. msgid ""
  220. "Usage: apt-config [options] command\n"
  221. "\n"
  222. "apt-config is a simple tool to read the APT config file\n"
  223. "\n"
  224. "Commands:\n"
  225. " shell - Shell mode\n"
  226. " dump - Show the configuration\n"
  227. "\n"
  228. "Options:\n"
  229. " -h This help text.\n"
  230. " -c=? Read this configuration file\n"
  231. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  232. msgstr ""
  233. "Aufruf: apt-config [optionen] befehl\n"
  234. "\n"
  235. "apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu "
  236. "lesen.\n"
  237. "\n"
  238. "Befehle:\n"
  239. " shell - Shell-Modus\n"
  240. " dump - Die Konfiguration ausgeben\n"
  241. "\n"
  242. "Optionen:\n"
  243. " -h Dieser Hilfetext\n"
  244. " -c=? Diese Konfigurationsdatei lesen\n"
  245. " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
  246. "tmp\n"
  247. #: cmdline/apt-extracttemplates.cc:96
  248. #, c-format
  249. msgid "%s not a valid DEB package."
  250. msgstr "%s ist kein gültiges DEB-Paket."
  251. #: cmdline/apt-extracttemplates.cc:230
  252. msgid ""
  253. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  254. "\n"
  255. "apt-extracttemplates is a tool to extract config and template info\n"
  256. "from debian packages\n"
  257. "\n"
  258. "Options:\n"
  259. " -h This help text\n"
  260. " -t Set the temp dir\n"
  261. " -c=? Read this configuration file\n"
  262. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  263. msgstr ""
  264. "Aufruf: apt-extracttemplates datei1 [datei2 ...]\n"
  265. "\n"
  266. "apt-extracttemplates ist ein Werkzeug zum Extrahieren von Konfigurations- "
  267. "und\n"
  268. "Template-Informationen aus Debian-Paketen.\n"
  269. "\n"
  270. "Optionen:\n"
  271. " -h Dieser Hilfetext\n"
  272. " -t Das temporäre Verzeichnis setzen\n"
  273. " -c=? Diese Konfigurationsdatei lesen\n"
  274. " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
  275. "tmp\n"
  276. #: apt-pkg/pkgcachegen.cc:626 cmdline/apt-extracttemplates.cc:257
  277. #, c-format
  278. msgid "Unable to write to %s"
  279. msgstr "Kann nicht nach %s schreiben"
  280. #: cmdline/apt-extracttemplates.cc:298
  281. msgid "Cannot get debconf version. Is debconf installed?"
  282. msgstr "Kann debconf-Version nicht ermitteln. Ist debconf installiert?"
  283. #. This needs to be a capital
  284. #: cmdline/apt-get.cc:116
  285. msgid "Y"
  286. msgstr "J"
  287. #: cmdline/apt-get.cc:193
  288. msgid "Sorry, but the following packages have unmet dependencies:"
  289. msgstr ""
  290. "Tut mir leid, aber die folgenden Pakete haben nichterfüllte Abhängigkeiten:"
  291. #: cmdline/apt-get.cc:283
  292. #, c-format
  293. msgid "but %s is installed"
  294. msgstr "aber %s ist installiert"
  295. #: cmdline/apt-get.cc:285
  296. #, c-format
  297. msgid "but %s is to be installed"
  298. msgstr "aber %s soll installiert werden"
  299. #: cmdline/apt-get.cc:292
  300. msgid "but it is not installable"
  301. msgstr "ist aber nicht installierbar"
  302. #: cmdline/apt-get.cc:294
  303. msgid "but it is a virtual package"
  304. msgstr "ist aber ein virtuelles Paket"
  305. #: cmdline/apt-get.cc:297
  306. msgid "but it is not installed"
  307. msgstr "ist aber nicht installiert"
  308. #: cmdline/apt-get.cc:297
  309. msgid "but it is not going to be installed"
  310. msgstr "soll aber nicht installiert werden"
  311. #: cmdline/apt-get.cc:302
  312. msgid " or"
  313. msgstr " oder "
  314. #: cmdline/apt-get.cc:328
  315. msgid "The following NEW packages will be installed:"
  316. msgstr "Die folgenden NEUEN Pakete werden installiert:"
  317. #: cmdline/apt-get.cc:351
  318. msgid "The following packages will be REMOVED:"
  319. msgstr "Die folgenden Pakete werden ENTFERNT:"
  320. #: cmdline/apt-get.cc:371
  321. msgid "The following packages have been kept back"
  322. msgstr "Die folgenden Pakete sind zurückgehalten worden"
  323. #: cmdline/apt-get.cc:390
  324. msgid "The following packages will be upgraded"
  325. msgstr "Die folgenden Pakete werden aktualisiert"
  326. #: cmdline/apt-get.cc:409
  327. msgid "The following packages will be DOWNGRADED"
  328. msgstr "Die folgenden Pakete werden DEAKTUALISIERT"
  329. #: cmdline/apt-get.cc:426
  330. msgid "The following held packages will be changed:"
  331. msgstr "Die folgenden gehaltenen Pakete werden verändert:"
  332. #: cmdline/apt-get.cc:477
  333. #, c-format
  334. msgid "%s (due to %s) "
  335. msgstr "%s (wegen %s) "
  336. #: cmdline/apt-get.cc:484
  337. msgid ""
  338. "WARNING: The following essential packages will be removed\n"
  339. "This should NOT be done unless you know exactly what you are doing!"
  340. msgstr ""
  341. "WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n"
  342. "Die sollte NICHT geschehen, wenn Sie nicht genau wissen, was Sie tun!"
  343. #: cmdline/apt-get.cc:514
  344. #, c-format
  345. msgid "%lu packages upgraded, %lu newly installed, "
  346. msgstr "%lu Pakete aktualisiert, %lu neu installiert, "
  347. #: cmdline/apt-get.cc:518
  348. #, c-format
  349. msgid "%lu reinstalled, "
  350. msgstr "%lu erneut installiert, "
  351. #: cmdline/apt-get.cc:520
  352. #, c-format
  353. msgid "%lu downgraded, "
  354. msgstr "%lu deaktualisiert"
  355. #: cmdline/apt-get.cc:522
  356. #, c-format
  357. msgid "%lu to remove and %lu not upgraded.\n"
  358. msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n"
  359. #: cmdline/apt-get.cc:526
  360. #, c-format
  361. msgid "%lu packages not fully installed or removed.\n"
  362. msgstr "%lu Pakete nicht vollständig installiert oder entfernt.\n"
  363. #: cmdline/apt-get.cc:586
  364. msgid "Correcting dependencies..."
  365. msgstr "Abhängigkeit werden korrigiert..."
  366. #: cmdline/apt-get.cc:589
  367. msgid " failed."
  368. msgstr " fehlgeschlagen."
  369. #: cmdline/apt-get.cc:592
  370. msgid "Unable to correct dependencies"
  371. msgstr "Kann Abhängigkeiten nicht korrigieren"
  372. #: cmdline/apt-get.cc:595
  373. msgid "Unable to minimize the upgrade set"
  374. msgstr "Kann die Menge zu erneuernder Pakete nicht minimieren"
  375. #: cmdline/apt-get.cc:597
  376. msgid " Done"
  377. msgstr " Fertig"
  378. #: cmdline/apt-get.cc:601
  379. msgid "You might want to run `apt-get -f install' to correct these."
  380. msgstr ""
  381. "Sie möchten wahrscheinlich »apt-get -f install« aufrufen, um dies zu "
  382. "korrigieren."
  383. #: cmdline/apt-get.cc:604
  384. msgid "Unmet dependencies. Try using -f."
  385. msgstr "Nichterfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen."
  386. #: cmdline/apt-get.cc:657
  387. msgid "Packages need to be removed but Remove is disabled."
  388. msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet."
  389. #: cmdline/apt-get.cc:683 cmdline/apt-get.cc:1574 cmdline/apt-get.cc:1607
  390. msgid "Unable to lock the download directory"
  391. msgstr "Kann kein Lock für das Downloadverzeichnis erhalten."
  392. #: apt-pkg/cachefile.cc:67 cmdline/apt-get.cc:693 cmdline/apt-get.cc:1655
  393. #: cmdline/apt-get.cc:1866
  394. msgid "The list of sources could not be read."
  395. msgstr "Die Liste der Quellen konnte nicht gelesen werden."
  396. #: cmdline/apt-get.cc:713
  397. #, c-format
  398. msgid "Need to get %sB/%sB of archives. "
  399. msgstr "Es müssen noch %sB/%sB der Archive geholt werden. "
  400. #: cmdline/apt-get.cc:716
  401. #, c-format
  402. msgid "Need to get %sB of archives. "
  403. msgstr "Es müssen %sB der Archive geholt werden. "
  404. #: cmdline/apt-get.cc:721
  405. #, c-format
  406. msgid "After unpacking %sB will be used.\n"
  407. msgstr "Nach dem Auspacken werden %sB zusätzlich benötigt.\n"
  408. #: cmdline/apt-get.cc:724
  409. #, c-format
  410. msgid "After unpacking %sB will be freed.\n"
  411. msgstr "Nach dem Auspacken werden %sB freigegeben.\n"
  412. #: cmdline/apt-get.cc:741
  413. #, c-format
  414. msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
  415. msgstr ""
  416. "Tut mir leid, Sie haben nicht genug freien Speicher in %s, um alle .debs zu "
  417. "halten."
  418. #: cmdline/apt-get.cc:750
  419. msgid "There are problems and -y was used without --force-yes"
  420. msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet"
  421. #: cmdline/apt-get.cc:756 cmdline/apt-get.cc:776
  422. msgid "Trivial Only specified but this is not a trivial operation."
  423. msgstr "»Nur triviale« angegeben, aber das ist keine triviale Operation."
  424. #: cmdline/apt-get.cc:758
  425. msgid "Yes, do as I say!"
  426. msgstr "Ja, tu was ich sage!"
  427. #: cmdline/apt-get.cc:760
  428. #, c-format
  429. msgid ""
  430. "You are about to do something potentially harmful\n"
  431. "To continue type in the phrase '%s'\n"
  432. " ?] "
  433. msgstr ""
  434. "Sie sind im Begriff, etwas potenziell schädliches zu tun.\n"
  435. "Zum Fortfahren geben Sie bitte »%s« ein.\n"
  436. " ?] "
  437. #: cmdline/apt-get.cc:766 cmdline/apt-get.cc:785
  438. msgid "Abort."
  439. msgstr "Abbruch."
  440. #: cmdline/apt-get.cc:781
  441. msgid "Do you want to continue? [Y/n] "
  442. msgstr "Möchten Sie fortfahren? [J/n] "
  443. #: cmdline/apt-get.cc:850 cmdline/apt-get.cc:1219 cmdline/apt-get.cc:1764
  444. #, c-format
  445. msgid "Failed to fetch %s %s\n"
  446. msgstr "Konnte %s nicht holen %s\n"
  447. #: cmdline/apt-get.cc:868
  448. msgid "Some files failed to download"
  449. msgstr "Einige Dateien konnten nicht heruntergeladen werden"
  450. #: cmdline/apt-get.cc:869 cmdline/apt-get.cc:1773
  451. msgid "Download complete and in download only mode"
  452. msgstr "Herunterladen abgeschlossen und im Nur-Herunterladen-Modus"
  453. #: cmdline/apt-get.cc:875
  454. msgid ""
  455. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  456. "missing?"
  457. msgstr ""
  458. "Konnte einige Archive nicht herunterladen, vielleicht »apt-get update« oder "
  459. "mit »--fix-missing« probieren?"
  460. #: cmdline/apt-get.cc:879
  461. msgid "--fix-missing and media swapping is not currently supported"
  462. msgstr "--fix-missing und Wechselmedien werden zurzeit nicht unterstützt"
  463. #: cmdline/apt-get.cc:884
  464. msgid "Unable to correct missing packages."
  465. msgstr "Konnte fehlende Pakete nicht korrigieren."
  466. #: cmdline/apt-get.cc:885
  467. msgid "Aborting Install."
  468. msgstr "Installation abgebrochen."
  469. #: cmdline/apt-get.cc:918
  470. #, c-format
  471. msgid "Note, selecting %s instead of %s\n"
  472. msgstr "Achtung, wähle %s an Stelle von %s\n"
  473. #: cmdline/apt-get.cc:928
  474. #, c-format
  475. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  476. msgstr ""
  477. "Überspringe %s, es ist schon installiert und »upgrade« ist nicht gesetzt.\n"
  478. #: cmdline/apt-get.cc:946
  479. #, c-format
  480. msgid "Package %s is not installed, so not removed\n"
  481. msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt\n"
  482. #: cmdline/apt-get.cc:957
  483. #, c-format
  484. msgid "Package %s is a virtual package provided by:\n"
  485. msgstr "Pakete %s ist ein virtuelles Pakete, das bereitgestellt wird von:\n"
  486. #: cmdline/apt-get.cc:969
  487. msgid " [Installed]"
  488. msgstr " [Installiert]"
  489. #: cmdline/apt-get.cc:974
  490. msgid "You should explicitly select one to install."
  491. msgstr "Sie sollten eines explizit zum Installieren auswählen."
  492. #: cmdline/apt-get.cc:979
  493. #, c-format
  494. msgid ""
  495. "Package %s has no available version, but exists in the database.\n"
  496. "This typically means that the package was mentioned in a dependency and\n"
  497. "never uploaded, has been obsoleted or is not available with the contents\n"
  498. "of sources.list\n"
  499. msgstr ""
  500. "Paket %s hat keine verfügbare Version, existiert aber in der Datenbank.\n"
  501. "Das heißt meist, dass das Paket in einer Abhängigkeit erwähnt, aber niemals\n"
  502. "eingespielt wurde, dass es veraltet ist oder mit dem Inhalt von sources."
  503. "list\n"
  504. "nicht verfügbar ist.\n"
  505. #: cmdline/apt-get.cc:997
  506. msgid "However the following packages replace it:"
  507. msgstr "Doch die folgenden Pakete ersetzen es:"
  508. #: cmdline/apt-get.cc:1000
  509. #, c-format
  510. msgid "Package %s has no installation candidate"
  511. msgstr "Paket %s hat keinen Installationskandidaten"
  512. #: cmdline/apt-get.cc:1020
  513. #, c-format
  514. msgid ""
  515. "Sorry, re-installation of %s is not possible, it cannot be downloaded.\n"
  516. msgstr ""
  517. "Tut mir leid, Re-Installation von %s ist nicht möglich, es kann nicht "
  518. "heruntergeladen werden.\n"
  519. #: cmdline/apt-get.cc:1028
  520. #, c-format
  521. msgid "Sorry, %s is already the newest version.\n"
  522. msgstr "Tut mir leid, %s ist schon die neueste Version.\n"
  523. #: cmdline/apt-get.cc:1055
  524. #, c-format
  525. msgid "Release '%s' for '%s' was not found"
  526. msgstr "Release »%s« für »%s« konnte nicht gefunden werden"
  527. #: cmdline/apt-get.cc:1057
  528. #, c-format
  529. msgid "Version '%s' for '%s' was not found"
  530. msgstr "Version »%s« für »%s« konnte nicht gefunden werden"
  531. #: cmdline/apt-get.cc:1063
  532. #, c-format
  533. msgid "Selected version %s (%s) for %s\n"
  534. msgstr "Gewählte Version %s (%s) für %s\n"
  535. #: cmdline/apt-get.cc:1173
  536. msgid "The update command takes no arguments"
  537. msgstr "Der Befehl »update« nimmt keine Argumente"
  538. #: cmdline/apt-get.cc:1186
  539. msgid "Unable to lock the list directory"
  540. msgstr "Kann kein Lock auf das Listenverzeichnis bekommen"
  541. #: cmdline/apt-get.cc:1238
  542. msgid ""
  543. "Some index files failed to download, they have been ignored, or old ones "
  544. "used instead."
  545. msgstr ""
  546. "Einige Indexdateien konnten nicht heruntergeladen werden, sie wurden "
  547. "ignoriert oder alte an ihrer Stelle benutzt."
  548. #: cmdline/apt-get.cc:1257
  549. msgid "Internal Error, AllUpgrade broke stuff"
  550. msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht"
  551. #: cmdline/apt-get.cc:1346 cmdline/apt-get.cc:1379
  552. #, c-format
  553. msgid "Couldn't find package %s"
  554. msgstr "Konnte Paket %s nicht finden"
  555. #: cmdline/apt-get.cc:1359
  556. #, c-format
  557. msgid "Regex compilation error - %s"
  558. msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s"
  559. #: cmdline/apt-get.cc:1396
  560. msgid "You might want to run `apt-get -f install' to correct these:"
  561. msgstr ""
  562. "Sie möchten wahrscheinlich »apt-get -f install« aufrufen, um dies zu "
  563. "korrigieren:"
  564. #: cmdline/apt-get.cc:1399
  565. msgid ""
  566. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  567. "solution)."
  568. msgstr ""
  569. "Nichterfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne "
  570. "jeglich Pakete (oder geben Sie eine Lösung an)."
  571. #: cmdline/apt-get.cc:1411
  572. msgid ""
  573. "Some packages could not be installed. This may mean that you have\n"
  574. "requested an impossible situation or if you are using the unstable\n"
  575. "distribution that some required packages have not yet been created\n"
  576. "or been moved out of Incoming."
  577. msgstr ""
  578. "Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n"
  579. "Sie eine unmögliche Situation angefordert haben oder dass, wenn Sie die\n"
  580. "instabile Distribution verwenden, einige erforderliche Pakete noch nicht\n"
  581. "kreiert oder aus Incoming herausbewegt wurden."
  582. #: cmdline/apt-get.cc:1419
  583. msgid ""
  584. "Since you only requested a single operation it is extremely likely that\n"
  585. "the package is simply not installable and a bug report against\n"
  586. "that package should be filed."
  587. msgstr ""
  588. "Da Sie nur eine einzige Operation angefordert haben ist es sehr "
  589. "wahrscheinlich,\n"
  590. "dass das Paket einfach nicht installierbar ist und eine Fehlermeldung über\n"
  591. "dieses Paket erfolgen sollte."
  592. #: cmdline/apt-get.cc:1424
  593. msgid "The following information may help to resolve the situation:"
  594. msgstr ""
  595. "Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:"
  596. #: cmdline/apt-get.cc:1427
  597. msgid "Sorry, broken packages"
  598. msgstr "Tut mir leid, kaputte Pakete"
  599. #: cmdline/apt-get.cc:1450
  600. msgid "The following extra packages will be installed:"
  601. msgstr "Die folgenden zusätzlichen Pakete werden installiert:"
  602. #: cmdline/apt-get.cc:1469
  603. msgid "Calculating Upgrade... "
  604. msgstr "Berechne Upgrade..."
  605. #: cmdline/apt-get.cc:1472
  606. msgid "Failed"
  607. msgstr "Fehlgeschlagen"
  608. #: cmdline/apt-get.cc:1477
  609. msgid "Done"
  610. msgstr "Fertig"
  611. #: cmdline/apt-get.cc:1650
  612. msgid "Must specify at least one package to fetch source for"
  613. msgstr ""
  614. "Es muss mindesten ein Paket angegeben werden, dessen Quellen geholt werden "
  615. "sollen"
  616. #: cmdline/apt-get.cc:1677 cmdline/apt-get.cc:1884
  617. #, c-format
  618. msgid "Unable to find a source package for %s"
  619. msgstr "Kann Quellpaket für %s nicht finden"
  620. #: cmdline/apt-get.cc:1724
  621. #, c-format
  622. msgid "Sorry, you don't have enough free space in %s"
  623. msgstr "Tut mir leid, Sie haben nicht genug Platz in %s"
  624. #: cmdline/apt-get.cc:1729
  625. #, c-format
  626. msgid "Need to get %sB/%sB of source archives.\n"
  627. msgstr "Es müssen noch %sB/%sB der Quellarchive geholt werden.\n"
  628. #: cmdline/apt-get.cc:1732
  629. #, c-format
  630. msgid "Need to get %sB of source archives.\n"
  631. msgstr "Es müssen %sB der Quellarchive geholt werden.\n"
  632. #: cmdline/apt-get.cc:1738
  633. #, c-format
  634. msgid "Fetch Source %s\n"
  635. msgstr "Hole Quelle %s\n"
  636. #: cmdline/apt-get.cc:1769
  637. msgid "Failed to fetch some archives."
  638. msgstr "Konnte einige Archive nicht holen."
  639. #: cmdline/apt-get.cc:1797
  640. #, c-format
  641. msgid "Skipping unpack of already unpacked source in %s\n"
  642. msgstr "Überspringe Entpacken der schon entpackten Quelle in %s\n"
  643. #: cmdline/apt-get.cc:1809
  644. #, c-format
  645. msgid "Unpack command '%s' failed.\n"
  646. msgstr "Entpack-Befehl »%s« fehlgeschlagen.\n"
  647. #: cmdline/apt-get.cc:1826
  648. #, c-format
  649. msgid "Build command '%s' failed.\n"
  650. msgstr "Build-Befehl »%s« fehlgeschlagen.\n"
  651. #: cmdline/apt-get.cc:1845
  652. msgid "Child process failed"
  653. msgstr "Kindprozess fehlgeschlagen"
  654. #: cmdline/apt-get.cc:1861
  655. msgid "Must specify at least one package to check builddeps for"
  656. msgstr ""
  657. "Es muss zumindest ein Paket angegeben werden, dessen Build-Dependencies\n"
  658. "überprüft werden sollen."
  659. #: cmdline/apt-get.cc:1889
  660. #, c-format
  661. msgid "Unable to get build-dependency information for %s"
  662. msgstr "Information zu Build-Dependencies für %s konnte nicht gefunden werden."
  663. #: cmdline/apt-get.cc:1909
  664. #, c-format
  665. msgid "%s has no build depends.\n"
  666. msgstr "%s hat keine Build-Dependencies.\n"
  667. #: cmdline/apt-get.cc:1927
  668. #, c-format
  669. msgid ""
  670. "%s dependency on %s cannot be satisfied because the package %s cannot be "
  671. "found"
  672. msgstr ""
  673. "%s Abhängigkeit von %s kann nicht befriedigt werden, da Paket %s nicht "
  674. "gefunden werden kann."
  675. #: cmdline/apt-get.cc:1979
  676. msgid ""
  677. "Some broken packages were found while trying to process build-dependencies.\n"
  678. "You might want to run `apt-get -f install' to correct these."
  679. msgstr ""
  680. "Einige kaputte Pakete wurden gefunden, während die Build-Dependencies ver-\n"
  681. "arbeitet wurden. Sie möchten wahrscheinlich »apt-get -f install« aufrufen,\n"
  682. "um die Probleme zu beheben."
  683. #: cmdline/apt-get.cc:1984
  684. msgid "Failed to process build dependencies"
  685. msgstr "Verarbeitung der Build-Dependencies fehlgeschlagen"
  686. #: cmdline/apt-get.cc:2016
  687. msgid "Supported Modules:"
  688. msgstr "Unterstützte Module:"
  689. #: cmdline/apt-get.cc:2057
  690. msgid ""
  691. "Usage: apt-get [options] command\n"
  692. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  693. " apt-get [options] source pkg1 [pkg2 ...]\n"
  694. "\n"
  695. "apt-get is a simple command line interface for downloading and\n"
  696. "installing packages. The most frequently used commands are update\n"
  697. "and install.\n"
  698. "\n"
  699. "Commands:\n"
  700. " update - Retrieve new lists of packages\n"
  701. " upgrade - Perform an upgrade\n"
  702. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  703. " remove - Remove packages\n"
  704. " source - Download source archives\n"
  705. " build-dep - Configure build-dependencies for source packages\n"
  706. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  707. " dselect-upgrade - Follow dselect selections\n"
  708. " clean - Erase downloaded archive files\n"
  709. " autoclean - Erase old downloaded archive files\n"
  710. " check - Verify that there are no broken dependencies\n"
  711. "\n"
  712. "Options:\n"
  713. " -h This help text.\n"
  714. " -q Loggable output - no progress indicator\n"
  715. " -qq No output except for errors\n"
  716. " -d Download only - do NOT install or unpack archives\n"
  717. " -s No-act. Perform ordering simulation\n"
  718. " -y Assume Yes to all queries and do not prompt\n"
  719. " -f Attempt to continue if the integrity check fails\n"
  720. " -m Attempt to continue if archives are unlocatable\n"
  721. " -u Show a list of upgraded packages as well\n"
  722. " -b Build the source package after fetching it\n"
  723. " -c=? Read this configuration file\n"
  724. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  725. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  726. "pages for more information and options.\n"
  727. " This APT has Super Cow Powers.\n"
  728. msgstr ""
  729. "Aufruf: apt-get [optionen] befehl\n"
  730. " apt-get [optionen] install|remove pkg1 [pkg2 ...]\n"
  731. " apt-get [optionen] source pkg1 [pkg2 ...]\n"
  732. "\n"
  733. "apt-get ist ein einfaches Kommandozeilenwerkzeug zum Herunterladen\n"
  734. "und Installieren von Paketen. Die am häufigsten benutzten Befehle\n"
  735. "sind update und install.\n"
  736. "\n"
  737. "Befehle:\n"
  738. " update - Neue Liste von Paketen einlesen\n"
  739. " upgrade - Ein Upgrade durchführen\n"
  740. " install - Neue Pakete installieren (pkg ist libc6 und nicht libc6.deb)\n"
  741. " remove - Pakete entfernen\n"
  742. " source - Quellarchive herunterladen\n"
  743. " build-dep - Die »Build-Dependencies« für Quellpakete konfigurieren\n"
  744. " dist-upgrade - »Distribution upgrade«, siehe apt-get(8)\n"
  745. " dselect-upgrade - Der Auswahl aus »dselect« folgen\n"
  746. " clean - Heruntergeladene Archive löschen\n"
  747. " autoclean - Veraltete heruntergeladene Archive löschen\n"
  748. " check - Überprüfen, dass es keine nicht erfüllten Abhängigkeiten gibt\n"
  749. "\n"
  750. "Optionen:\n"
  751. " -h Dieser Hilfetext\n"
  752. " -q Protokollierbare (logbare) Ausgabe - kein Fortschrittsindikator\n"
  753. " -qq Keine Ausgabe außer bei Fehlern\n"
  754. " -d Nur herunterladen - Archive NICHT installieren oder entpacken\n"
  755. " -s Nichts tun. Nur eine Simulation der Vorgänge durchführen\n"
  756. " -y Für alle Antworten »Ja« annehmen und nicht nachfragen\n"
  757. " -f Versuchen fortzufahren, wenn dir Integritätsüberprüfung fehlschlägt\n"
  758. " -m Versuchen fortzufahren, wenn Archive nicht auffindbar sind\n"
  759. " -u Auch eine Liste der aktualisierten Pakete mit anzeigen\n"
  760. " -b Ein Quellpaket nach dem Herunterladen übersetzen\n"
  761. " -c=? Diese Konfigurationsdatei benutzen\n"
  762. " -o=? Beliebige Konfigurationsoptionen setzen, z. B. -o dir::cache=/tmp\n"
  763. "Siehe auch die Man-Seiten apt-get(8), sources.list(5) und apt.conf(5) für\n"
  764. "weitergehende Informationen und Optionen.\n"
  765. " Dieses APT hat Super-Kuh-Kräfte.\n"
  766. #: cmdline/apt-sortpkgs.cc:84
  767. msgid "Unknown package record!"
  768. msgstr "Unbekannter Paketeintrag"
  769. #: cmdline/apt-sortpkgs.cc:148
  770. msgid ""
  771. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  772. "\n"
  773. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  774. "to indicate what kind of file it is.\n"
  775. "\n"
  776. "Options:\n"
  777. " -h This help text\n"
  778. " -s Use source file sorting\n"
  779. " -c=? Read this configuration file\n"
  780. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  781. msgstr ""
  782. "Aufruf: apt-sortpkgs [optionen] datei1 [datei2 ...]\n"
  783. "\n"
  784. "apt-sortpkgs ist ein einfaches Werkzeug, um Paketdateien zu sortieren. Die\n"
  785. "Option -d wird benutzt, um anzuzeigen, um was für eine Datei es sich "
  786. "handelt.\n"
  787. "\n"
  788. "Optionen:\n"
  789. " -h Dieser Hilfetext\n"
  790. " -s Quelldateisortierung benutzen\n"
  791. " -c=? Diese Konfigurationsdatei lesen\n"
  792. " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/tmp\n"
  793. #: apt-pkg/acquire.cc:61
  794. #, c-format
  795. msgid "Lists directory %spartial is missing."
  796. msgstr "Listenverzeichnis %spartial fehlt."
  797. #: apt-pkg/acquire.cc:65
  798. #, c-format
  799. msgid "Archive directory %spartial is missing."
  800. msgstr "Archivverzeichnis %spartial fehlt."
  801. #: apt-pkg/acquire.cc:412 apt-pkg/clean.cc:38
  802. #, c-format
  803. msgid "Unable to read %s"
  804. msgstr "Kann %s nicht lesen"
  805. #: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:44
  806. #, c-format
  807. msgid "Unable to change to %s"
  808. msgstr "Kann nicht nach %s wechseln"
  809. #: apt-pkg/acquire-item.cc:124
  810. #, c-format
  811. msgid "rename failed, %s (%s -> %s)."
  812. msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)."
  813. #: apt-pkg/acquire-item.cc:353
  814. #, c-format
  815. msgid ""
  816. "I wasn't able to locate a file for the %s package. This might mean you need "
  817. "to manually fix this package. (due to missing arch)"
  818. msgstr ""
  819. "Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
  820. "dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)."
  821. #: apt-pkg/acquire-item.cc:388
  822. #, c-format
  823. msgid ""
  824. "I wasn't able to locate file for the %s package. This might mean you need to "
  825. "manually fix this package."
  826. msgstr ""
  827. "Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
  828. "dieses Paket von Hand korrigieren müssen."
  829. #: apt-pkg/acquire-item.cc:419
  830. #, c-format
  831. msgid ""
  832. "The package index files are corrupted. No Filename: field for package %s."
  833. msgstr ""
  834. "Die Paketindexdateien sind korrumpiert: Kein Filename:-Feld für Paket %s."
  835. #: apt-pkg/acquire-item.cc:501
  836. msgid "Size mismatch"
  837. msgstr "Größe stimmt nicht"
  838. #: apt-pkg/acquire-item.cc:511
  839. msgid "MD5Sum mismatch"
  840. msgstr "MD5-Summe stimmt nicht"
  841. #: apt-pkg/acquire-worker.cc:112
  842. #, c-format
  843. msgid "The method driver %s could not be found."
  844. msgstr "Der Treiber für Methode %s konnte nicht gefunden werden."
  845. #: apt-pkg/acquire-worker.cc:161
  846. #, c-format
  847. msgid "Method %s did not start correctly"
  848. msgstr "Methode %s hat nicht korrekt gestartet"
  849. #: apt-pkg/algorithms.cc:232
  850. #, c-format
  851. msgid ""
  852. "The package %s needs to be reinstalled, but I can't find an archive for it."
  853. msgstr ""
  854. "Das Paket %s muss reinstalliert werden, ich kann aber kein Archiv dafür "
  855. "finden."
  856. #: apt-pkg/algorithms.cc:1050
  857. msgid ""
  858. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  859. "held packages."
  860. msgstr ""
  861. "Fehler: pkgProblemResolver::Resolve hat Unterbrechungen hervorgerufen, dies "
  862. "könnte durch gehaltene Pakete hervorgerufen worden sein."
  863. #: apt-pkg/algorithms.cc:1052
  864. msgid "Unable to correct problems, you have held broken packages."
  865. msgstr "Kann Probleme nicht korrigieren, Sie haben gehaltene kaputte Pakete."
  866. #: apt-pkg/cachefile.cc:73
  867. msgid "The package lists or status file could not be parsed or opened."
  868. msgstr ""
  869. "Die Paketliste oder die Statusdatei konnte nicht geparst oder geöffnet "
  870. "werden."
  871. #: apt-pkg/cachefile.cc:77
  872. msgid "You may want to run apt-get update to correct these problems"
  873. msgstr ""
  874. "Sie möchten vielleicht »apt-get update« aufrufen, um diese Probleme zu lösen"
  875. #: apt-pkg/clean.cc:61
  876. #, c-format
  877. msgid "Unable to stat %s."
  878. msgstr "Kann nicht auf %s zugreifen."
  879. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  880. msgid "Building Dependency Tree"
  881. msgstr "Abhängigkeitsbaum wird aufgebaut"
  882. #: apt-pkg/depcache.cc:61
  883. msgid "Candidate Versions"
  884. msgstr "Mögliche Versionen"
  885. #: apt-pkg/depcache.cc:90
  886. msgid "Dependency Generation"
  887. msgstr "Abhängigkeits-Generierung"
  888. #: apt-pkg/init.cc:111
  889. #, c-format
  890. msgid "Packaging system '%s' is not supported"
  891. msgstr "Paketierungssystem »%s« wird nicht unterstützt"
  892. #: apt-pkg/init.cc:127
  893. msgid "Unable to determine a suitable system type"
  894. msgstr "Kann keinen passenden Systemtyp bestimmen"
  895. #: apt-pkg/packagemanager.cc:402
  896. #, c-format
  897. msgid ""
  898. "This installation run will require temporarily removing the essential "
  899. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  900. "you really want to do it, activate the APT::Force-LoopBreak option."
  901. msgstr ""
  902. "Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket "
  903. "%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das "
  904. "ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte "
  905. "die Option APT::Force-LoopBreak."
  906. #: apt-pkg/pkgcache.cc:126
  907. msgid "Empty package cache"
  908. msgstr "Leerer Paketcache"
  909. #: apt-pkg/pkgcache.cc:132
  910. msgid "The package cache file is corrupted"
  911. msgstr "Die Paketcachedatei ist korrumpiert"
  912. #: apt-pkg/pkgcache.cc:137
  913. msgid "The package cache file is an incompatible version"
  914. msgstr "Die Paketcachedatei ist in einer inkompatiblen Version"
  915. #: apt-pkg/pkgcache.cc:142
  916. #, c-format
  917. msgid "This APT does not support the Versioning System '%s'"
  918. msgstr "Dieses APT unterstützt das Versionssystem »%s« nicht"
  919. #: apt-pkg/pkgcache.cc:147
  920. msgid "The package cache was build for a different architecture"
  921. msgstr "Dieser Paketcache wurde für eine andere Architektur aufgebaut"
  922. #: apt-pkg/pkgcache.cc:218
  923. msgid "Depends"
  924. msgstr "Hängt ab"
  925. #: apt-pkg/pkgcache.cc:218
  926. msgid "PreDepends"
  927. msgstr "Hängt ab (vorher)"
  928. #: apt-pkg/pkgcache.cc:218
  929. msgid "Suggests"
  930. msgstr "Suggeriert"
  931. #: apt-pkg/pkgcache.cc:219
  932. msgid "Recommends"
  933. msgstr "Empfiehlt"
  934. #: apt-pkg/pkgcache.cc:219
  935. msgid "Conflicts"
  936. msgstr "Kollidiert"
  937. #: apt-pkg/pkgcache.cc:219
  938. msgid "Replaces"
  939. msgstr "Ersetzt"
  940. #: apt-pkg/pkgcache.cc:220
  941. msgid "Obsoletes"
  942. msgstr "Veraltet"
  943. #: apt-pkg/pkgcache.cc:231
  944. msgid "important"
  945. msgstr "wichtig"
  946. #: apt-pkg/pkgcache.cc:231
  947. msgid "required"
  948. msgstr "erforderlich"
  949. #: apt-pkg/pkgcache.cc:231
  950. msgid "standard"
  951. msgstr "standard"
  952. #: apt-pkg/pkgcache.cc:232
  953. msgid "optional"
  954. msgstr "optional"
  955. #: apt-pkg/pkgcache.cc:232
  956. msgid "extra"
  957. msgstr "extra"
  958. #: apt-pkg/pkgcachegen.cc:73
  959. msgid "Cache has an incompatible versioning system"
  960. msgstr "Dieser Paketcache wurde für ein inkompatibles Versionssystem aufgebaut"
  961. #: apt-pkg/pkgcachegen.cc:116
  962. #, c-format
  963. msgid "Error occured while processing %s (NewPackage)"
  964. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewPackage)"
  965. #: apt-pkg/pkgcachegen.cc:128
  966. #, c-format
  967. msgid "Error occured while processing %s (UsePackage1)"
  968. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage1)"
  969. #: apt-pkg/pkgcachegen.cc:149
  970. #, c-format
  971. msgid "Error occured while processing %s (UsePackage2)"
  972. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage2)"
  973. #: apt-pkg/pkgcachegen.cc:153
  974. #, c-format
  975. msgid "Error occured while processing %s (NewFileVer1)"
  976. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
  977. #: apt-pkg/pkgcachegen.cc:182
  978. #, c-format
  979. msgid "Error occured while processing %s (NewVersion1)"
  980. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion1)"
  981. #: apt-pkg/pkgcachegen.cc:186
  982. #, c-format
  983. msgid "Error occured while processing %s (UsePackage3)"
  984. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage3)"
  985. #: apt-pkg/pkgcachegen.cc:190
  986. #, c-format
  987. msgid "Error occured while processing %s (NewVersion2)"
  988. msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion2)"
  989. #: apt-pkg/pkgcachegen.cc:202
  990. msgid "Wow, you exceeded the number of package names this APT is capable of."
  991. msgstr ""
  992. "Toll, Sie haben die Anzahl an Paketen überschritten, die APT handhaben kann."
  993. #: apt-pkg/pkgcachegen.cc:205
  994. msgid "Wow, you exceeded the number of versions this APT is capable of."
  995. msgstr ""
  996. "Toll, Sie haben die Anzahl an Versionen überschritten, die APT handhaben "
  997. "kann."
  998. #: apt-pkg/pkgcachegen.cc:208
  999. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1000. msgstr ""
  1001. "Toll, Sie haben die Anzahl an Abhängigkeiten überschritten, die APT "
  1002. "handhaben kann."
  1003. #: apt-pkg/pkgcachegen.cc:517
  1004. #, c-format
  1005. msgid "Couldn't stat source package list %s"
  1006. msgstr "Kann nicht auf die Liste %s der Quellpakete zugreifen."
  1007. #. Build the status cache
  1008. #: apt-pkg/pkgcachegen.cc:585 apt-pkg/pkgcachegen.cc:628
  1009. #: apt-pkg/pkgcachegen.cc:633 apt-pkg/pkgcachegen.cc:756
  1010. msgid "Reading Package Lists"
  1011. msgstr "Paketlisten werden gelesen"
  1012. #: apt-pkg/pkgcachegen.cc:701 apt-pkg/pkgcachegen.cc:708
  1013. msgid "IO Error saving source cache"
  1014. msgstr "E/A-Fehler beim Sichern des Quellcaches"
  1015. #: apt-pkg/pkgrecords.cc:37
  1016. #, c-format
  1017. msgid "Index file type '%s' is not supported"
  1018. msgstr "Indexdateityp »%s« wird nicht unterstützt"
  1019. #: apt-pkg/policy.cc:269
  1020. msgid "Invalid record in the preferences file, no Package header"
  1021. msgstr "Ungültiger Eintrag in Einstellungs-Datei, kein »Package«-Header"
  1022. #: apt-pkg/policy.cc:291
  1023. #, c-format
  1024. msgid "Did not understand pin type %s"
  1025. msgstr "Konnte Stecknadeltyp (»pin type«) %s nicht verstehen"
  1026. #: apt-pkg/sourcelist.cc:88
  1027. #, c-format
  1028. msgid "Malformed line %lu in source list %s (URI)"
  1029. msgstr "Missgestaltete Zeile %lu in Quelliste %s (»URI«)"
  1030. #: apt-pkg/sourcelist.cc:90
  1031. #, c-format
  1032. msgid "Malformed line %lu in source list %s (dist)"
  1033. msgstr "Missgestaltete Zeile %lu in Quelliste %s (»dist«)"
  1034. #: apt-pkg/sourcelist.cc:93
  1035. #, c-format
  1036. msgid "Malformed line %lu in source list %s (URI parse)"
  1037. msgstr "Missgestaltete Zeile %lu in Quelliste %s (»URI parse«)"
  1038. #: apt-pkg/sourcelist.cc:99
  1039. #, c-format
  1040. msgid "Malformed line %lu in source list %s (Absolute dist)"
  1041. msgstr "Missgestaltete Zeile %lu in Quelliste %s (»Absolute dist«)"
  1042. #: apt-pkg/sourcelist.cc:106
  1043. #, c-format
  1044. msgid "Malformed line %lu in source list %s (dist parse)"
  1045. msgstr "Missgestaltete Zeile %lu in Quelliste %s (»dist parse«)"
  1046. #: apt-pkg/sourcelist.cc:166 apt-pkg/sourcelist.cc:190
  1047. #, c-format
  1048. msgid "Vendor block %s is invalid"
  1049. msgstr "Herstellerblock %s ist ungültig"
  1050. #: apt-pkg/sourcelist.cc:218
  1051. #, c-format
  1052. msgid "Opening %s"
  1053. msgstr "%s wird geöffnet"
  1054. #: apt-pkg/sourcelist.cc:244
  1055. #, c-format
  1056. msgid "Malformed line %u in source list %s (type)"
  1057. msgstr "Missgestaltete Zeile %u in Quelliste %s (»type«)"
  1058. #: apt-pkg/sourcelist.cc:248
  1059. #, c-format
  1060. msgid "Type '%s' is not known in on line %u in source list %s"
  1061. msgstr "Typ »%s« ist unbekannt in Zeile %u der Quelliste %s"
  1062. #: apt-pkg/sourcelist.cc:257 apt-pkg/sourcelist.cc:260
  1063. #, c-format
  1064. msgid "Malformed line %u in source list %s (vendor id)"
  1065. msgstr "Missgestaltete Zeile %u in Quelliste %s (»vendor id«)"
  1066. #: apt-pkg/sourcelist.cc:274
  1067. #, c-format
  1068. msgid "Unknown vendor ID '%s' in line %u of source list %s"
  1069. msgstr "Unbekannte Herstellerkennung »%s« in Zeile %u der Quelliste %s"
  1070. #: apt-pkg/srcrecords.cc:49
  1071. msgid "Sorry, you must put some 'source' URIs in your sources.list"
  1072. msgstr ""
  1073. "Tut mir leid, Sie müssen erst einige »source«-URIs für Quellen in Ihre "
  1074. "sources.list-Datei schreiben."
  1075. #: apt-pkg/tagfile.cc:71
  1076. #, c-format
  1077. msgid "Unable to parse package file %s (1)"
  1078. msgstr "Kann Paketdatei %s nicht parsen (1)"
  1079. #: apt-pkg/tagfile.cc:158
  1080. #, c-format
  1081. msgid "Unable to parse package file %s (2)"
  1082. msgstr "Kann Paketdatei %s nicht parsen (2)"
  1083. #~ msgid "Unable to read the cdrom database %s"
  1084. #~ msgstr "Kann CD-ROM-Datenbank %s nicht lesen"
  1085. #~ msgid ""
  1086. #~ "Please use apt-cdrom to make this CD recognized by APT. apt-get update "
  1087. #~ "cannot be used to add new CDs"
  1088. #~ msgstr ""
  1089. #~ "Bitte verwenden Sie apt-cdrom, um diese CD von APT erkennbar zu machen - "
  1090. #~ "apt-get update kann nicht dazu verwendet werden, neue CDs hinzuzufügen"
  1091. #~ msgid "Wrong CD"
  1092. #~ msgstr "Falsche CD"
  1093. #~ msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1094. #~ msgstr ""
  1095. #~ "Kann Einbindung von CD-ROM in %s nicht lösen, möglicherweise wird sie "
  1096. #~ "noch verwendet."
  1097. #~ msgid "File not found"
  1098. #~ msgstr "Datei nicht gefunden"
  1099. #~ msgid "Connecting to %s (%s)"
  1100. #~ msgstr "Verbinde mit %s (%s)"
  1101. #~ msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1102. #~ msgstr "Kann keinen Verbindungsendpunkt für %s (f=%u t=%u p=%u)"
  1103. #~ msgid "Cannot initiate the connection to %s:%s (%s)."
  1104. #~ msgstr "Kann keine Verbindung mit %s:%s aufbauen (%s)."
  1105. #~ msgid "Could not connect to %s:%s (%s), connection timed out"
  1106. #~ msgstr ""
  1107. #~ "Konnte wegen Zeitüberschreitung keine Verbindung mit %s:%s aufbauen (%s)"
  1108. #~ msgid "Could not connect to %s:%s (%s)."
  1109. #~ msgstr "Konnte nicht mit %s:%s verbinden (%s)."
  1110. #~ msgid "Connecting to %s"
  1111. #~ msgstr "Verbinde mit %s"
  1112. #~ msgid "Could not resolve '%s'"
  1113. #~ msgstr "Konnte »%s« nicht auflösen"
  1114. #~ msgid "Something wicked happened resolving '%s:%s' (%i)"
  1115. #~ msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i)"
  1116. #~ msgid "Unable to connect to %s %s:"
  1117. #~ msgstr "Kann nicht mit %s:%s verbinden:"
  1118. # looks like someone hardcoded English grammar
  1119. #~ msgid "Failed to stat"
  1120. #~ msgstr "Kann nicht zugreifen."
  1121. #~ msgid "Failed to set modification time"
  1122. #~ msgstr "Kann Änderungszeitpunkt nicht setzen"
  1123. #~ msgid "Invalid URI, local URIS must not start with //"
  1124. #~ msgstr "Ungültige URI, lokale URIs dürfen nicht mit // anfangen"
  1125. #~ msgid "Logging in"
  1126. #~ msgstr "Logge ein"
  1127. #~ msgid "Unable to determine the peer name"
  1128. #~ msgstr "Kann Namen des Kommunikationspartners nicht bestimmen"
  1129. #~ msgid "Unable to determine the local name"
  1130. #~ msgstr "Kann lokalen Namen nicht bestimmen"
  1131. #~ msgid "Server refused our connection and said: %s"
  1132. #~ msgstr "Der Server hat die Verbindung abgelehnt: %s"
  1133. #~ msgid "USER failed, server said: %s"
  1134. #~ msgstr "Befehl USER fehlgeschlagen: %s"
  1135. #~ msgid "PASS failed, server said: %s"
  1136. #~ msgstr "Befehl PASS fehlgeschlagen: %s"
  1137. #~ msgid ""
  1138. #~ "A proxy server was specified but no login script, Acquire::ftp::"
  1139. #~ "ProxyLogin is empty."
  1140. #~ msgstr ""
  1141. #~ "Es war ein Proxy-Server angegeben, aber kein Einlogg-Skript - Acquire::"
  1142. #~ "ftp::ProxyLogin ist leer."
  1143. #~ msgid "Login script command '%s' failed, server said: %s"
  1144. #~ msgstr "Befehl »%s« des Einlogg-Skriptes ist fehlgeschlagen: %s"
  1145. #~ msgid "TYPE failed, server said: %s"
  1146. #~ msgstr "Befehl TYPE fehlgeschlagen: %s"
  1147. #~ msgid "Connection timeout"
  1148. #~ msgstr "Zeitüberschreitung der Verbindung"
  1149. #~ msgid "Server closed the connection"
  1150. #~ msgstr "Der Server hat die Verbindung geschlossen"
  1151. #~ msgid "Read error"
  1152. #~ msgstr "Lesefehler"
  1153. #~ msgid "A response overflowed the buffer."
  1154. #~ msgstr "Eine Antwort hat einen Puffer zum Überlaufen gebracht."
  1155. #~ msgid "Protocol corruption"
  1156. #~ msgstr "Protokollkorrumption"
  1157. #~ msgid "<- '"
  1158. #~ msgstr "<- »"
  1159. #~ msgid "'"
  1160. #~ msgstr "«"
  1161. #~ msgid "-> '"
  1162. #~ msgstr "-> »"
  1163. #~ msgid "Write Error"
  1164. #~ msgstr "Schreibfehler"
  1165. #~ msgid "Could not create a socket"
  1166. #~ msgstr "Konnte keinen Verbindungsendpunkt erzeugen"
  1167. #~ msgid "Could not connect data socket, connection timed out"
  1168. #~ msgstr "Konnte Verbindungsendpunkt wegen Zeitüberschreitung nicht verbinden"
  1169. #~ msgid "Could not connect passive socket."
  1170. #~ msgstr "Konnte passiven Verbindungsendpunkt nicht verbinden."
  1171. #~ msgid "getaddrinfo was unable to get a listening socket"
  1172. #~ msgstr ""
  1173. #~ "Die Funktion getaddrinfo konnte keinen passiven Verbindungsendpunkt finden"
  1174. #~ msgid "Could not bind a socket"
  1175. #~ msgstr "Konnte einen Verbindungsendpunkt nicht verbinden"
  1176. #~ msgid "Could not listen on the socket"
  1177. #~ msgstr "Konnte auf dem Verbindungsendpunkt nicht lauschen"
  1178. #~ msgid "Could not determine the socket's name"
  1179. #~ msgstr "Konnte den Namen das Verbindungsendpunktes nicht bestimmen"
  1180. #~ msgid "Unable to send PORT command"
  1181. #~ msgstr "Konnte PORT-Befehl nicht senden"
  1182. #~ msgid "Unkonwn address family %u (AF_*)"
  1183. #~ msgstr "Unbekannte Adressfamilie %u (AF_*)"
  1184. #~ msgid "EPRT failed, server said: %s"
  1185. #~ msgstr "Befehl EPRT fehlgeschlagen: %s"
  1186. #~ msgid "Data socket connect timed out"
  1187. #~ msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung"
  1188. #~ msgid "Unable to accept connection"
  1189. #~ msgstr "Kann Verbindung nicht annehmen"
  1190. #~ msgid "Problem hashing file"
  1191. #~ msgstr "Beim hashen einer Datei trat ein Problem auf"
  1192. #~ msgid "Unable to fetch file, server said '%s'"
  1193. #~ msgstr "Kann Datei nicht holen, Server antwortete »%s«"
  1194. #~ msgid "Data socket timed out"
  1195. #~ msgstr "Datenverbindung erlitt Zeitüberschreitung"
  1196. #~ msgid "Data transfer failed, server said '%s'"
  1197. #~ msgstr "Datenübertragung fehlgeschlagen, Server antwortete »%s«"
  1198. #~ msgid "Unable to invoke "
  1199. #~ msgstr "Kann nicht aufrufen: "
  1200. #~ msgid "Couldn't open pipe for %s"
  1201. #~ msgstr "Konnte Pipe für %s nicht öffnen"
  1202. #~ msgid "Read error from %s process"
  1203. #~ msgstr "Lesefehler von Prozess %s"
  1204. #~ msgid "Waiting for file"
  1205. #~ msgstr "Warte auf Datei"
  1206. #~ msgid "Got a single header line over %u chars"
  1207. #~ msgstr "Erhielt einzelne Kopfzeile aus %u Zeichen"
  1208. #~ msgid "Bad header line"
  1209. #~ msgstr "Schlechte Kopfzeile"
  1210. #~ msgid "The http server sent an invalid reply header"
  1211. #~ msgstr "Der http-Server sandte eine ungültige Antwort-Kopfzeile"
  1212. #~ msgid "The http server sent an invalid Content-Length header"
  1213. #~ msgstr "Der http-Server sandte eine ungültige »Content-Length«-Kopfzeile"
  1214. #~ msgid "The http server sent an invalid Content-Range header"
  1215. #~ msgstr "Der http-Server sandte eine ungültige »Content-Range«-Kopfzeile"
  1216. #~ msgid "This http server has broken range support"
  1217. #~ msgstr "Der http-Server unterstützt Dateiteilübertragung nur fehlerhaft."
  1218. #~ msgid "Unknown date format"
  1219. #~ msgstr "Unbekanntes Datumsformat"
  1220. #~ msgid "Select failed"
  1221. #~ msgstr "Auswahl fehlgeschlagen"
  1222. #~ msgid "Connection timed out"
  1223. #~ msgstr "Verbindung erlitt Zeitüberschreitung"
  1224. #~ msgid "Error writing to output file"
  1225. #~ msgstr "Fehler beim Schreiben einer Ausgabedatei"
  1226. #~ msgid "Error writing to file"
  1227. #~ msgstr "Fehler beim Schreiben einer Datei"
  1228. #~ msgid "Error writing to the file"
  1229. #~ msgstr "Fehler beim Schreiben der Datei"
  1230. #~ msgid "Error reading from server Remote end closed connection"
  1231. #~ msgstr ""
  1232. #~ "Fehler beim Lesen vom Server: Das entfernte Ende hat die Verbindung "
  1233. #~ "geschlossen"
  1234. #~ msgid "Error reading from server"
  1235. #~ msgstr "Fehler beim Lesen vom Server"
  1236. #~ msgid "Bad header Data"
  1237. #~ msgstr "Fehlerhafte Kopfzeilendaten"
  1238. #~ msgid "Connection failed"
  1239. #~ msgstr "Verbindung fehlgeschlagen"
  1240. #~ msgid "Internal error"
  1241. #~ msgstr "Interner Fehler"
  1242. #~ msgid "Failed to create IPC pipe to subprocess"
  1243. #~ msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen"
  1244. #~ msgid "File Not Found"
  1245. #~ msgstr "Datei nicht gefunden"
  1246. #~ msgid "Connection closed prematurely"
  1247. #~ msgstr "Verbindung zu früh beendet"
  1248. #~ msgid "Failed write file %s"
  1249. #~ msgstr "Konnte nicht in Datei %s schreiben"
  1250. #~ msgid "Failed to close file %s"
  1251. #~ msgstr "Konnte Datei %s nicht schließen"
  1252. #~ msgid "The path %s is too long"
  1253. #~ msgstr "Der Pfad %s ist zu lang"
  1254. #~ msgid "Unpacking %s more than once"
  1255. #~ msgstr "Packe %s mehr als einmal aus"
  1256. #~ msgid "The directory %s is diverted"
  1257. #~ msgstr "Das Verzeichnis %s ist umgeleitet"
  1258. #~ msgid "The package is trying to write to the diversion target %s/%s"
  1259. #~ msgstr "Das Paket versucht, auf das Umleitungsziel %s/%s zu schreiben"
  1260. #~ msgid "The diversion path is too long"
  1261. #~ msgstr "Der Umleitungspfad ist zu lang"
  1262. #~ msgid "Followed conf file from "
  1263. #~ msgstr "Folge Konfigurationsdatei von "
  1264. #~ msgid " to "
  1265. #~ msgstr " nach "
  1266. #~ msgid "Failed to stat %s"
  1267. #~ msgstr "Kann auf %s nicht zugreifen."
  1268. #~ msgid "Failed to rename %s to %s"
  1269. #~ msgstr "Konnte %s nicht in %s umbenennen"
  1270. #~ msgid "The directory %s is being replaced by a non-directory"
  1271. #~ msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt"
  1272. #
  1273. #~ msgid "Extract "
  1274. #~ msgstr "Extrahiert "
  1275. #~ msgid "Aborted, backing out"
  1276. #~ msgstr "Abgebrochen, nehme Änderungen zurück"
  1277. #~ msgid "Failed to locate node in its hash bucket"
  1278. #~ msgstr "Konnte Knoten nicht in seinem Hash finden"
  1279. #~ msgid "The path is too long"
  1280. #~ msgstr "Der Pfad ist zu lang"
  1281. #~ msgid "De-replaced "
  1282. #~ msgstr "Zurück-ersetzt "
  1283. #~ msgid " from "
  1284. #~ msgstr " von "
  1285. #~ msgid "Backing out "
  1286. #~ msgstr "Nehme Änderung zurück "
  1287. #~ msgid " [new node]"
  1288. #~ msgstr " [neuer Knoten]"
  1289. #~ msgid "Overwrite package match with no version for %s"
  1290. #~ msgstr "Überschreibe Paket-Treffer ohne Version für %s"
  1291. #~ msgid "Replaced file "
  1292. #~ msgstr "Ersetzte Datei "
  1293. #~ msgid "File %s/%s overwrites the one in the package %s"
  1294. #~ msgstr "Datei %s/%s überschreibt die Datei in Paket %s"
  1295. #~ msgid "Unable to stat %s"
  1296. #~ msgstr "Kann auf %s nicht zugreifen."
  1297. #~ msgid "DropNode called on still linked node"
  1298. #~ msgstr "»DropNode« auf noch verlinktem Knoten aufgerufen"
  1299. #~ msgid "Failed to locate the hash element!"
  1300. #~ msgstr "Konnte Hash-Element nicht finden!"
  1301. #~ msgid "Failed to allocate diversion"
  1302. #~ msgstr "Konnte Umleitung nicht reservieren"
  1303. #~ msgid "Internal Error in AddDiversion"
  1304. #~ msgstr "Interner Fehler in »AddDiversion«"
  1305. #~ msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1306. #~ msgstr "Versuche, Umleitung zu überschreiben: %s -> %s und %s/%s"
  1307. #~ msgid "Double add of diversion %s -> %s"
  1308. #~ msgstr "Doppelte Hinzufügung der Umleitung %s -> %s"
  1309. #~ msgid "Duplicate conf file %s/%s"
  1310. #~ msgstr "Doppelte Konfigurationsdatei %s/%s"
  1311. #~ msgid "Invalid archive signature"
  1312. #~ msgstr "Ungültige Archiv-Signatur"
  1313. #~ msgid "Error reading archive member header"
  1314. #~ msgstr "Fehler beim Lesen der Archivdateienkopfzeilen"
  1315. #~ msgid "Invalid archive member header"
  1316. #~ msgstr "Ungültige Archivdateienkopfzeile"
  1317. #~ msgid "Archive is too short"
  1318. #~ msgstr "Archiv ist zu kurz"
  1319. #~ msgid "Failed to read the archive headers"
  1320. #~ msgstr "Konnte Archiveköpfe nicht lesen."
  1321. #~ msgid "Failed to create pipes"
  1322. #~ msgstr "Konnte Weiterleitungen nicht erzeugen"
  1323. #~ msgid "Failed to exec gzip "
  1324. #~ msgstr "Konnte gzip nicht ausführen"
  1325. #~ msgid "Corrupted archive"
  1326. #~ msgstr "Korrumpiertes Archiv"
  1327. #~ msgid "Tar Checksum failed, archive corrupted"
  1328. #~ msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv korrumpiert"
  1329. #~ msgid "Unkown TAR header type %u, member %s"
  1330. #~ msgstr "Unbekannter Tar-Kopf-Typ %u, Bestandteil %s"
  1331. #~ msgid "This is not a valid DEB archive, missing '%s' member"
  1332. #~ msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält"
  1333. #~ msgid "Internal Error, could not locate member %s"
  1334. #~ msgstr "Interner Fehler, konnte Bestandteil %s nicht finden"
  1335. #~ msgid "Couldn't change to %s"
  1336. #~ msgstr "Konnte nicht nach %s wechseln"
  1337. #~ msgid "Internal Error, could not locate member"
  1338. #~ msgstr "Interner Fehler, konnte Bestandteil nicht finden"
  1339. #~ msgid "Failed to locate a valid control file"
  1340. #~ msgstr "Konnte gültige Kontroll-Datei nicht finden"
  1341. #~ msgid "Unparsible control file"
  1342. #~ msgstr "Unparsbare Kontroll-Datei"
  1343. #~ msgid "Failed to remove %s"
  1344. #~ msgstr "Konnte %s nicht entfernen"
  1345. #~ msgid "Unable to create %s"
  1346. #~ msgstr "Konnte %s nicht erzeugen"
  1347. #~ msgid "Failed to stat %sinfo"
  1348. #~ msgstr "Kann nicht auf %sinfo zugreifen"
  1349. #~ msgid "The info and temp directories need to be on the same filesystem"
  1350. #~ msgstr ""
  1351. #~ "Die »info«- und »temp«-Verzeichnisse müssen im selben Dateisystem liegen"
  1352. #~ msgid "Failed to change to the admin dir %sinfo"
  1353. #~ msgstr "Kann nicht ins Administrationsverzeichnis %sinfo wechseln"
  1354. #~ msgid "Internal Error getting a Package Name"
  1355. #~ msgstr "Interner Fehler beim Holen des Paket-Namens"
  1356. #
  1357. #~ msgid "Reading File Listing"
  1358. #~ msgstr "Paketlisten werden gelesen"
  1359. #~ msgid ""
  1360. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1361. #~ "then make it empty and immediately re-install the same version of the "
  1362. #~ "package!"
  1363. #~ msgstr ""
  1364. #~ "Fehler beim Öffnen der Listendatei »%sinfo/%s«. Wenn Sie diese Datei "
  1365. #~ "nicht wiederherstellen können, dann leeren Sie sie und installieren Sie "
  1366. #~ "sofort dieselbe Version des Paketes erneut!"
  1367. #~ msgid "Failed reading the list file %sinfo/%s"
  1368. #~ msgstr "Fehler beim Lesen der Listendatei »%sinfo/%s«."
  1369. #~ msgid "Internal Error getting a Node"
  1370. #~ msgstr "Interner Fehler beim Holen eines Knotens"
  1371. #~ msgid "Failed to open the diversions file %sdiversions"
  1372. #~ msgstr "Fehler beim Öffnen der Umleitungsdatei %sdiversions"
  1373. #~ msgid "The diversion file is corrupted"
  1374. #~ msgstr "Die Umleitungsdatei ist korrumpiert"
  1375. #~ msgid "Invalid line in the diversion file: %s"
  1376. #~ msgstr "Ungültige Zeile in der Umleitungsdatei: %s"
  1377. #~ msgid "Internal Error adding a diversion"
  1378. #~ msgstr "Interner Fehler beim Hinzufügen einer Umleitung"
  1379. #~ msgid "The pkg cache must be initialize first"
  1380. #~ msgstr "Der Paketcache muss erst initialisiert werden"
  1381. #~ msgid "Reading File List"
  1382. #~ msgstr "Paketlisten werden gelesen"
  1383. #~ msgid "Failed to find a Package: Header, offset %lu"
  1384. #~ msgstr "Konnte keine »Package:«-Kopfzeile finden, Abstand %lu"
  1385. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  1386. #~ msgstr "Fehlerhafter »ConfFile«-Abschnitt in der Statusdatei, Abstand %lu"
  1387. #~ msgid "Error parsing MD5. Offset %lu"
  1388. #~ msgstr "Fehler beim Parsen der MD5-Summe. Abstand %lu"
  1389. #~ msgid "Internal Error, Unable to parse a package record"
  1390. #~ msgstr "Interner Fehler, konnte Paket-Daten nicht parsen"
  1391. #~ msgid "Unimplemented"
  1392. #~ msgstr "Nicht implementiert"
  1393. #~ msgid "You must give at least one file name"
  1394. #~ msgstr "Sie müssen zumindest einen Dateinamen angeben"
  1395. #~ msgid "Generating cache"
  1396. #~ msgstr "Erzeuge Cache"
  1397. #~ msgid "Problem opening %s"
  1398. #~ msgstr "Problem beim Öffnen von %s"
  1399. #~ msgid "Problem with SelectFile"
  1400. #~ msgstr "Problem mit »SelectFile«"
  1401. #~ msgid "Problem with MergeList"
  1402. #~ msgstr "Problem mit »MergeList«"
  1403. #~ msgid "Regex compilation error"
  1404. #~ msgstr "Fehler beim Kompilieren eines regulären Ausdrucks"
  1405. #~ msgid "Write to stdout failed"
  1406. #~ msgstr "Schreiben auf die Standardausgabe fehlgeschlagen"
  1407. #~ msgid "Generate must be enabled for this function"
  1408. #~ msgstr "Generieren muss erlaubt sein für diese Funktion"
  1409. #~ msgid "Failed to stat %s%s"
  1410. #~ msgstr "Konnte nicht auf %s%s zugreifen"
  1411. #~ msgid "Failed to open %s.new"
  1412. #~ msgstr "Konnte %s.new nicht öffnen"
  1413. #~ msgid "Failed to rename %s.new to %s"
  1414. #~ msgstr "Konnte %s.new nicht in %s umbenennen"
  1415. #~ msgid "Using CD-ROM mount point "
  1416. #~ msgstr "Benutze CD-ROM-Einhängpunkt"
  1417. #~ msgid "Unmounting CD-ROM"
  1418. #~ msgstr "Löse Laufwerkseinbindung des CD-ROMs"
  1419. #~ msgid "Please insert a Disc in the drive and press enter"
  1420. #~ msgstr ""
  1421. #~ "Bitte legen Sie ein Medium ins Laufwerk und drücken Sie die Eingabetaste"
  1422. #~ msgid "Mounting CD-ROM"
  1423. #~ msgstr "Binde CD-ROM ein"
  1424. #~ msgid "Failed to mount the cdrom."
  1425. #~ msgstr "Konnte CD-ROM nicht einbinden"
  1426. #~ msgid "Identifying.. "
  1427. #~ msgstr "Identifiziere... "
  1428. #~ msgid "Scanning Disc for index files.. "
  1429. #~ msgstr "Suche auf CD nach Index-Dateien... "
  1430. #~ msgid "I found (binary):"
  1431. #~ msgstr "Habe gefunden (binär):"
  1432. #~ msgid "I found (source):"
  1433. #~ msgstr "Habe gefunden (Quellen):"
  1434. #~ msgid "Found "
  1435. #~ msgstr "Habe "
  1436. #~ msgid " package indexes and "
  1437. #~ msgstr " Paket-Indizes und "
  1438. #~ msgid " source indexes."
  1439. #~ msgstr " Quell-Indizes gefunden."
  1440. #~ msgid ""
  1441. #~ "Unable to locate any package files, perhaps this is not a Debian Disc"
  1442. #~ msgstr ""
  1443. #~ "Konnte keine Paket-Dateien finden - vielleicht ist dies keine Debian-CD"
  1444. #~ msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  1445. #~ msgstr ""
  1446. #~ "Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 2.2r1 "
  1447. #~ "Disk 1«"
  1448. #~ msgid "That is not a valid name, try again "
  1449. #~ msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut"
  1450. #~ msgid "This Disc is called:"
  1451. #~ msgstr "Diese CD heißt jetzt:"
  1452. #~ msgid " '"
  1453. #~ msgstr " »"
  1454. #~ msgid "Writing new source list"
  1455. #~ msgstr "Schreibe neue Quelliste"
  1456. #~ msgid "Source List entries for this Disc are:"
  1457. #~ msgstr "Quelllisteneinträge für diese CD sind:"
  1458. #~ msgid "Repeat this process for the rest of the CDs in your set."
  1459. #~ msgstr ""
  1460. #~ "Wiederholen Sie dieses Prozedere für Ihre restlichen CDs diese Reihe."
  1461. #~ msgid "Stored Label: '"
  1462. #~ msgstr "Speicherte Kennzeichnung: »"
  1463. #~ msgid ""
  1464. #~ "Usage: apt-cdrom [options] command\n"
  1465. #~ "\n"
  1466. #~ "apt-cdrom is a tool to add CDROM's to APT's source list. The\n"
  1467. #~ "CDROM mount point and device information is taken from apt.conf\n"
  1468. #~ "and /etc/fstab.\n"
  1469. #~ "\n"
  1470. #~ "Commands:\n"
  1471. #~ " add - Add a CDROM\n"
  1472. #~ " ident - Report the identity of a CDROM\n"
  1473. #~ "\n"
  1474. #~ "Options:\n"
  1475. #~ " -h This help text\n"
  1476. #~ " -d CD-ROM mount point\n"
  1477. #~ " -r Rename a recognized CD-ROM\n"
  1478. #~ " -m No mounting\n"
  1479. #~ " -f Fast mode, don't check package files\n"
  1480. #~ " -a Thorough scan mode\n"
  1481. #~ " -c=? Read this configuration file\n"
  1482. #~ " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  1483. #~ "See fstab(5)\n"
  1484. #~ msgstr ""
  1485. #~ "Aufruf: apt-cdrom [optionen] befehl\n"
  1486. #~ "\n"
  1487. #~ "apt-cdrom ist ein Werkzeug, um CD-ROMs zu APTs Quellliste hinzuzufügen. "
  1488. #~ "Der\n"
  1489. #~ "Einhängepunkt der CD-ROM und die Geräteinformationen werden aus apt.conf "
  1490. #~ "und\n"
  1491. #~ "/etc/fstab ermittelt.\n"
  1492. #~ "\n"
  1493. #~ "Befehle:\n"
  1494. #~ " add - Eine CD-ROM hinzufügen\n"
  1495. #~ " ident - Die Identität einer CD-ROM melden\n"
  1496. #~ "\n"
  1497. #~ "Optionen:\n"
  1498. #~ " -h Dieser Hilfetext\n"
  1499. #~ " -d CD-ROM-Einhängepunkt\n"
  1500. #~ " -r Eine erkannte CD-ROM umbenennen\n"
  1501. #~ " -m Kein Einhängen\n"
  1502. #~ " -f Schneller Modus, Paketdateien nicht überprüfen\n"
  1503. #~ " -a Gründlicher Überprüfungsmodus\n"
  1504. #~ " -c=? Diese Konfigurationsdatei lesen\n"
  1505. #~ " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
  1506. #~ "tmp\n"
  1507. #~ "Siehe auch fstab(5)\n"
  1508. #~ msgid "Internal Error, non-zero counts"
  1509. #~ msgstr "Interner Fehler, Zähler nicht Null"
  1510. #~ msgid "Internal Error, InstallPackages was called with broken packages!"
  1511. #~ msgstr "Interner Fehler, InstallPackages mit kaputten Pakete aufgerufen!"
  1512. #~ msgid "Internal Error, Ordering didn't finish"
  1513. #~ msgstr "Interner Fehler, Anordnung beendete nicht"
  1514. #~ msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  1515. #~ msgstr ""
  1516. #~ "Wie merkwürdig... Die Größen haben nicht übereingestimmt, schreiben Sie "
  1517. #~ "an apt@packages.debian.org"
  1518. #~ msgid "Couldn't determine free space in %s"
  1519. #~ msgstr "Konnte freien Platz in %s nicht bestimmen"
  1520. #~ msgid "Internal Error, problem resolver broke stuff"
  1521. #~ msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht"
  1522. #~ msgid "Couldn't wait for subprocess"
  1523. #~ msgstr "Konnte nicht auf Unterprozess warten"
  1524. #~ msgid "....\"Have you mooed today?\"..."
  1525. #~ msgstr "....»Heute schon gemuht?«..."
  1526. #~ msgid "Package extension list is too long"
  1527. #~ msgstr "Paketerweiterungsliste is zu lang"
  1528. #~ msgid "Error Processing directory %s"
  1529. #~ msgstr "Fehler beim Verarbeiten von Verzeichnis %s"
  1530. #~ msgid " New "
  1531. #~ msgstr " Neu "
  1532. #~ msgid "B "
  1533. #~ msgstr "B "
  1534. #~ msgid " files "
  1535. #~ msgstr " Dateien "
  1536. #~ msgid "Source extension list is too long"
  1537. #~ msgstr "Quellerweiterungsliste is zu lang"
  1538. #~ msgid " pkgs in "
  1539. #~ msgstr " Pakete in "
  1540. #~ msgid "Error writing header to contents file"
  1541. #~ msgstr "Fehler beim Schreiben des Headers in die Inhaltsdatei"
  1542. #~ msgid "Error Processing Contents %s"
  1543. #~ msgstr "Fehler beim Verarbeiten der Inhaltsdatei %s"
  1544. #~ msgid ""
  1545. #~ "Usage: apt-ftparchive [options] command\n"
  1546. #~ "Commands: packges binarypath [overridefile [pathprefix]]\n"
  1547. #~ " sources srcpath [overridefile [pathprefix]]\n"
  1548. #~ " contents path\n"
  1549. #~ " generate config [groups]\n"
  1550. #~ " clean config\n"
  1551. #~ msgstr ""
  1552. #~ "Aufruf: apt-ftparchive [optionen] befehl\n"
  1553. #~ "Befehle: packages binarypath [overridefile [pathprefix]]\n"
  1554. #~ " sources srcpath [overridefile [pathprefix]]\n"
  1555. #~ " contents path\n"
  1556. #~ " generate config [groups]\n"
  1557. #~ " clean config\n"
  1558. #~ msgid ""
  1559. #~ "Options:\n"
  1560. #~ " -h This help text\n"
  1561. #~ " --md5 Control MD5 generation\n"
  1562. #~ " -s=? Source override file\n"
  1563. #~ " -q Quiet\n"
  1564. #~ " -d=? Select the optional caching database\n"
  1565. #~ " --no-delink Enable delinking debug mode\n"
  1566. #~ " --contents Control contents file generation\n"
  1567. #~ " -c=? Read this configuration file\n"
  1568. #~ " -o=? Set an arbitary configuration option\n"
  1569. #~ msgstr ""
  1570. #~ "Optionen:\n"
  1571. #~ " -h Dieser Hilfe-Text.\n"
  1572. #~ " --md5 Steuere MD5-Generierung\n"
  1573. #~ " -s=? Binde Override-Datei ein\n"
  1574. #~ " -q Ruhig\n"
  1575. #~ " -d=? Optionale Cache-Datenbank auswählen\n"
  1576. #~ " --no-delink Debug-Modus für Delinking setzen\n"
  1577. #~ " --contents Steuere Inhaltsdatei-Generierung\n"
  1578. #~ " -c=? Lese diese Konfigurationsdatei\n"
  1579. #~ " -o=? Setze eine beliebige Konfigurations-Option\n"
  1580. #~ msgid "No selections matched"
  1581. #~ msgstr "Keine Auswahl passt"
  1582. #~ msgid "Done Packages, Starting contents."
  1583. #~ msgstr "Fertig mit Pakete, beginne Inhalt."
  1584. #~ msgid "Some files are missing in the package file group `%s'"
  1585. #~ msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«"
  1586. #~ msgid "Done. "
  1587. #~ msgstr "Fertig."
  1588. #~ msgid "B in "
  1589. #~ msgstr "B in "
  1590. #~ msgid " archives. Took "
  1591. #~ msgstr " Archiven. Benötigte Zeit war "
  1592. #~ msgid "Unable to open DB2 file %s"
  1593. #~ msgstr "Kann DB2-Datei %s nicht öffnen"
  1594. #~ msgid "File date has changed %s"
  1595. #~ msgstr "Dateidatum hat sich geändert %s"
  1596. #~ msgid "Unknown Compresison Algorithm '%s'"
  1597. #~ msgstr "Unbekannter Komprimierungsalgorithmus »%s«"
  1598. #~ msgid "Failed to fork"
  1599. #~ msgstr "Fork Fehlgeschlagen"
  1600. #~ msgid "Internal Error, Failed to create %s"
  1601. #~ msgstr "Interner Fehler, konnte %s nicht erzeugen"
  1602. #~ msgid "IO to subprocess/file failed"
  1603. #~ msgstr "E/A zu Kindprozess/Datei fehlgeschlagen"
  1604. #~ msgid "Unable to open %s"
  1605. #~ msgstr "Kann %s nicht öffnen"
  1606. #~ msgid "W: Unable to stat "
  1607. #~ msgstr "W: Kann nicht zugreifen auf "
  1608. #~ msgid "E: "
  1609. #~ msgstr "F: "
  1610. #~ msgid "W: "
  1611. #~ msgstr "W: "
  1612. #~ msgid "E: Errors apply to file '"
  1613. #~ msgstr "F: Fehler gehören zu Datei »"
  1614. #~ msgid "Failed to resolve %s"
  1615. #~ msgstr "Konnte %s nicht auflösen"
  1616. #~ msgid "Tree walking failed"
  1617. #~ msgstr "Baumabschreiten fehlgeschlagen"
  1618. #~ msgid "Failed to open %s"
  1619. #~ msgstr "Konnte %s nicht öffnen"
  1620. #~ msgid "Failed to readlink %s"
  1621. #~ msgstr "Kann kein readlink auf %s durchführen"
  1622. #~ msgid "Failed to unlink %s"
  1623. #~ msgstr "Konnte %s entfernen (unlink)"
  1624. #~ msgid "DSC file '%s' is too large!"
  1625. #~ msgstr "DSC-Datei »%s« ist zu groß!"
  1626. #~ msgid "Could not find a record in the DSC '%s'"
  1627. #~ msgstr "Konnte keinen Eintrag im DSC »%s« finden"
  1628. #~ msgid "Error parsing file record"
  1629. #~ msgstr "Fehler beim Lesen des Dateieintrags"
  1630. #~ msgid "Failed too stat %s"
  1631. #~ msgstr "Kann nicht auf %s zugreifen."
  1632. #~ msgid "Errors apply to file '%s'"
  1633. #~ msgstr "Fehler gehören zu Datei »%s«"
  1634. #~ msgid "Merging Available information"
  1635. #~ msgstr "Führe Information zur Verfügbarkeit zusammen"
  1636. #~ msgid "Press enter to continue."
  1637. #~ msgstr "Zum Fortfahren Enter drücken."
  1638. #~ msgid "Bad default setting!"
  1639. #~ msgstr "Fehlerhafte Voreinstellung"
  1640. #~ msgid "Some errors occurred while unpacking. I'm going to configure the"
  1641. #~ msgstr ""
  1642. #~ "Einige Fehler traten während des Entpackens auf. Ich werde die "
  1643. #~ "installierten"
  1644. #~ msgid "packages that were installed. This may result in duplicate errors"
  1645. #~ msgstr ""
  1646. #~ "Pakete konfigurieren. Dies kann zu doppelten Fehlermeldungen oder Fehlern "
  1647. #~ "durch"
  1648. #~ msgid ""
  1649. #~ "or errors caused by missing dependencies. This is OK, only the errors"
  1650. #~ msgstr ""
  1651. #~ "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler über "
  1652. #~ "dieser"
  1653. #~ msgid ""
  1654. #~ "above this message are important. Please fix them and run [I]nstall again"
  1655. #~ msgstr ""
  1656. #~ "Meldung sind wichtig. Bitte beseitigen Sie sie und [I]nstallieren erneut."