1# German translations for Git. 2# Copyright (C) 2010-2016 Ralf Thielow <ralf.thielow@gmail.com> 3# This file is distributed under the same license as the Git package. 4# Ralf Thielow <ralf.thielow@gmail.com>, 2010-2016. 5# 6msgid "" 7msgstr "" 8"Project-Id-Version: Git\n" 9"Report-Msgid-Bugs-To: Git Mailing List <git@vger.kernel.org>\n" 10"POT-Creation-Date: 2019-06-04 08:24+0800\n" 11"PO-Revision-Date: 2016-11-28 18:10+0100\n" 12"Last-Translator: Ralf Thielow <ralf.thielow@gmail.com>\n" 13"Language-Team: German <>\n" 14"Language: de\n" 15"MIME-Version: 1.0\n" 16"Content-Type: text/plain; charset=UTF-8\n" 17"Content-Transfer-Encoding: 8bit\n" 18"Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 20#: advice.c:103 21#, c-format 22msgid "%shint: %.*s%s\n" 23msgstr "%sHinweis: %.*s%s\n" 24 25#: advice.c:156 26msgid "Cherry-picking is not possible because you have unmerged files." 27msgstr "" 28"Cherry-Picken ist nicht möglich, weil Sie nicht zusammengeführte Dateien " 29"haben." 30 31#: advice.c:158 32msgid "Committing is not possible because you have unmerged files." 33msgstr "" 34"Committen ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 35 36#: advice.c:160 37msgid "Merging is not possible because you have unmerged files." 38msgstr "" 39"Mergen ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 40 41#: advice.c:162 42msgid "Pulling is not possible because you have unmerged files." 43msgstr "" 44"Pullen ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 45 46#: advice.c:164 47msgid "Reverting is not possible because you have unmerged files." 48msgstr "" 49"Reverten ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 50 51#: advice.c:166 52#, c-format 53msgid "It is not possible to %s because you have unmerged files." 54msgstr "%s ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 55 56#: advice.c:174 57msgid "" 58"Fix them up in the work tree, and then use 'git add/rm <file>'\n" 59"as appropriate to mark resolution and make a commit." 60msgstr "" 61"Korrigieren Sie dies im Arbeitsverzeichnis, und benutzen Sie\n" 62"dann 'git add/rm <Datei>', um die Auflösung entsprechend zu markieren\n" 63"und zu committen." 64 65#: advice.c:182 66msgid "Exiting because of an unresolved conflict." 67msgstr "Beende wegen unaufgelöstem Konflikt." 68 69#: advice.c:187 builtin/merge.c:1320 70msgid "You have not concluded your merge (MERGE_HEAD exists)." 71msgstr "Sie haben Ihren Merge nicht abgeschlossen (MERGE_HEAD existiert)." 72 73#: advice.c:189 74msgid "Please, commit your changes before merging." 75msgstr "Bitte committen Sie Ihre Änderungen, bevor Sie mergen." 76 77#: advice.c:190 78msgid "Exiting because of unfinished merge." 79msgstr "Beende wegen nicht abgeschlossenem Merge." 80 81#: advice.c:196 82#, c-format 83msgid "" 84"Note: checking out '%s'.\n" 85"\n" 86"You are in 'detached HEAD' state. You can look around, make experimental\n" 87"changes and commit them, and you can discard any commits you make in this\n" 88"state without impacting any branches by performing another checkout.\n" 89"\n" 90"If you want to create a new branch to retain commits you create, you may\n" 91"do so (now or later) by using -b with the checkout command again. Example:\n" 92"\n" 93" git checkout -b <new-branch-name>\n" 94"\n" 95msgstr "" 96"Hinweis: Checke '%s' aus.\n" 97"\n" 98"Sie befinden sich im Zustand eines 'losgelösten HEAD'. Sie können sich\n" 99"umschauen, experimentelle Änderungen vornehmen und diese committen, und\n" 100"Sie können alle möglichen Commits, die Sie in diesem Zustand machen,\n" 101"ohne Auswirkungen auf irgendeinen Branch verwerfen, indem Sie einen\n" 102"weiteren Checkout durchführen.\n" 103"\n" 104"Wenn Sie einen neuen Branch erstellen möchten, um Ihre erstellten Commits\n" 105"zu behalten, können Sie das (jetzt oder später) durch einen weiteren " 106"Checkout\n" 107"mit der Option -b tun. Beispiel:\n" 108"\n" 109" git checkout -b <neuer-Branchname>\n" 110"\n" 111 112#: alias.c:50 113msgid "cmdline ends with \\" 114msgstr "Befehlszeile endet mit \\" 115 116#: alias.c:51 117msgid "unclosed quote" 118msgstr "Nicht geschlossene Anführungszeichen." 119 120#: apply.c:63 121#, c-format 122msgid "unrecognized whitespace option '%s'" 123msgstr "Nicht erkannte Whitespace-Option: '%s'" 124 125#: apply.c:79 126#, c-format 127msgid "unrecognized whitespace ignore option '%s'" 128msgstr "nicht erkannte Option zum Ignorieren von Whitespace: '%s'" 129 130#: apply.c:129 131msgid "--reject and --3way cannot be used together." 132msgstr "--reject und --3way können nicht gemeinsam verwendet werden." 133 134#: apply.c:131 135msgid "--cached and --3way cannot be used together." 136msgstr "--cached und --3way können nicht gemeinsam verwendet werden." 137 138#: apply.c:134 139msgid "--3way outside a repository" 140msgstr "" 141"Die Option --3way kann nicht außerhalb eines Repositories verwendet werden." 142 143#: apply.c:145 144msgid "--index outside a repository" 145msgstr "" 146"Die Option --index kann nicht außerhalb eines Repositories verwendet werden." 147 148#: apply.c:148 149msgid "--cached outside a repository" 150msgstr "" 151"Die Option --cached kann nicht außerhalb eines Repositories verwendet werden." 152 153#: apply.c:829 154#, c-format 155msgid "Cannot prepare timestamp regexp %s" 156msgstr "Kann regulären Ausdruck für Zeitstempel %s nicht verarbeiten" 157 158#: apply.c:838 159#, c-format 160msgid "regexec returned %d for input: %s" 161msgstr "Ausführung des regulären Ausdrucks gab %d zurück. Eingabe: %s" 162 163#: apply.c:912 164#, c-format 165msgid "unable to find filename in patch at line %d" 166msgstr "Konnte keinen Dateinamen in Zeile %d des Patches finden." 167 168#: apply.c:950 169#, c-format 170msgid "git apply: bad git-diff - expected /dev/null, got %s on line %d" 171msgstr "" 172"git apply: ungültiges 'git-diff' - erwartete /dev/null, erhielt %s in Zeile " 173"%d" 174 175#: apply.c:956 176#, c-format 177msgid "git apply: bad git-diff - inconsistent new filename on line %d" 178msgstr "" 179"git apply: ungültiges 'git-diff' - Inkonsistenter neuer Dateiname in Zeile %d" 180 181#: apply.c:957 182#, c-format 183msgid "git apply: bad git-diff - inconsistent old filename on line %d" 184msgstr "" 185"git apply: ungültiges 'git-diff' - Inkonsistenter alter Dateiname in Zeile %d" 186 187#: apply.c:962 188#, c-format 189msgid "git apply: bad git-diff - expected /dev/null on line %d" 190msgstr "git apply: ungültiges 'git-diff' - erwartete /dev/null in Zeile %d" 191 192#: apply.c:991 193#, c-format 194msgid "invalid mode on line %d: %s" 195msgstr "Ungültiger Modus in Zeile %d: %s" 196 197#: apply.c:1310 198#, c-format 199msgid "inconsistent header lines %d and %d" 200msgstr "Inkonsistente Kopfzeilen %d und %d." 201 202#: apply.c:1482 203#, c-format 204msgid "recount: unexpected line: %.*s" 205msgstr "recount: unerwartete Zeile: %.*s" 206 207#: apply.c:1551 208#, c-format 209msgid "patch fragment without header at line %d: %.*s" 210msgstr "Patch-Fragment ohne Kopfbereich bei Zeile %d: %.*s" 211 212#: apply.c:1571 213#, c-format 214msgid "" 215"git diff header lacks filename information when removing %d leading pathname " 216"component (line %d)" 217msgid_plural "" 218"git diff header lacks filename information when removing %d leading pathname " 219"components (line %d)" 220msgstr[0] "" 221"Dem Kopfbereich von \"git diff\" fehlen Informationen zum Dateinamen, wenn " 222"%d vorangestellter Teil des Pfades entfernt wird (Zeile %d)" 223msgstr[1] "" 224"Dem Kopfbereich von \"git diff\" fehlen Informationen zum Dateinamen, wenn " 225"%d vorangestellte Teile des Pfades entfernt werden (Zeile %d)" 226 227#: apply.c:1584 228#, c-format 229msgid "git diff header lacks filename information (line %d)" 230msgstr "" 231"Dem Kopfbereich von \"git diff\" fehlen Informationen zum Dateinamen (Zeile " 232"%d)" 233 234#: apply.c:1772 235msgid "new file depends on old contents" 236msgstr "neue Datei hängt von alten Inhalten ab" 237 238#: apply.c:1774 239msgid "deleted file still has contents" 240msgstr "entfernte Datei hat noch Inhalte" 241 242#: apply.c:1808 243#, c-format 244msgid "corrupt patch at line %d" 245msgstr "fehlerhafter Patch bei Zeile %d" 246 247#: apply.c:1845 248#, c-format 249msgid "new file %s depends on old contents" 250msgstr "neue Datei %s hängt von alten Inhalten ab" 251 252#: apply.c:1847 253#, c-format 254msgid "deleted file %s still has contents" 255msgstr "entfernte Datei %s hat noch Inhalte" 256 257#: apply.c:1850 258#, c-format 259msgid "** warning: file %s becomes empty but is not deleted" 260msgstr "** Warnung: Datei %s wird leer, aber nicht entfernt." 261 262#: apply.c:1997 263#, c-format 264msgid "corrupt binary patch at line %d: %.*s" 265msgstr "fehlerhafter Binär-Patch bei Zeile %d: %.*s" 266 267#: apply.c:2034 268#, c-format 269msgid "unrecognized binary patch at line %d" 270msgstr "nicht erkannter Binär-Patch bei Zeile %d" 271 272#: apply.c:2196 273#, c-format 274msgid "patch with only garbage at line %d" 275msgstr "Patch mit nutzlosen Informationen bei Zeile %d" 276 277#: apply.c:2282 278#, c-format 279msgid "unable to read symlink %s" 280msgstr "konnte symbolische Verknüpfung %s nicht lesen" 281 282#: apply.c:2286 283#, c-format 284msgid "unable to open or read %s" 285msgstr "konnte %s nicht öffnen oder lesen" 286 287#: apply.c:2945 288#, c-format 289msgid "invalid start of line: '%c'" 290msgstr "Ungültiger Zeilenanfang: '%c'" 291 292#: apply.c:3066 293#, c-format 294msgid "Hunk #%d succeeded at %d (offset %d line)." 295msgid_plural "Hunk #%d succeeded at %d (offset %d lines)." 296msgstr[0] "Patch-Bereich #%d erfolgreich angewendet bei %d (%d Zeile versetzt)" 297msgstr[1] "" 298"Patch-Bereich #%d erfolgreich angewendet bei %d (%d Zeilen versetzt)" 299 300#: apply.c:3078 301#, c-format 302msgid "Context reduced to (%ld/%ld) to apply fragment at %d" 303msgstr "Kontext reduziert zu (%ld/%ld), um Patch-Bereich bei %d anzuwenden" 304 305#: apply.c:3084 306#, c-format 307msgid "" 308"while searching for:\n" 309"%.*s" 310msgstr "" 311"bei der Suche nach:\n" 312"%.*s" 313 314#: apply.c:3106 315#, c-format 316msgid "missing binary patch data for '%s'" 317msgstr "keine Daten in Binär-Patch für '%s'" 318 319#: apply.c:3114 320#, c-format 321msgid "cannot reverse-apply a binary patch without the reverse hunk to '%s'" 322msgstr "" 323"kann binären Patch nicht in umgekehrter Reihenfolge anwenden ohne einen\n" 324"umgekehrten Patch-Block auf '%s'" 325 326#: apply.c:3161 327#, c-format 328msgid "cannot apply binary patch to '%s' without full index line" 329msgstr "" 330"kann binären Patch auf '%s' nicht ohne eine vollständige Index-Zeile anwenden" 331 332#: apply.c:3171 333#, c-format 334msgid "" 335"the patch applies to '%s' (%s), which does not match the current contents." 336msgstr "" 337"der Patch wird angewendet auf '%s' (%s), was nicht den aktuellen Inhalten\n" 338"entspricht" 339 340#: apply.c:3179 341#, c-format 342msgid "the patch applies to an empty '%s' but it is not empty" 343msgstr "der Patch wird auf ein leeres '%s' angewendet, was aber nicht leer ist" 344 345#: apply.c:3197 346#, c-format 347msgid "the necessary postimage %s for '%s' cannot be read" 348msgstr "das erforderliche Postimage %s für '%s' kann nicht gelesen werden" 349 350#: apply.c:3210 351#, c-format 352msgid "binary patch does not apply to '%s'" 353msgstr "Konnte Binär-Patch nicht auf '%s' anwenden" 354 355#: apply.c:3216 356#, c-format 357msgid "binary patch to '%s' creates incorrect result (expecting %s, got %s)" 358msgstr "" 359"Binär-Patch für '%s' erzeugt falsches Ergebnis (erwartete %s, bekam %s)" 360 361#: apply.c:3237 362#, c-format 363msgid "patch failed: %s:%ld" 364msgstr "Anwendung des Patches fehlgeschlagen: %s:%ld" 365 366#: apply.c:3360 367#, c-format 368msgid "cannot checkout %s" 369msgstr "kann %s nicht auschecken" 370 371#: apply.c:3412 apply.c:3423 apply.c:3469 midx.c:59 setup.c:279 372#, c-format 373msgid "failed to read %s" 374msgstr "Fehler beim Lesen von %s" 375 376#: apply.c:3420 377#, c-format 378msgid "reading from '%s' beyond a symbolic link" 379msgstr "'%s' ist hinter einer symbolischen Verknüpfung" 380 381#: apply.c:3449 apply.c:3692 382#, c-format 383msgid "path %s has been renamed/deleted" 384msgstr "Pfad %s wurde umbenannt/gelöscht" 385 386#: apply.c:3535 apply.c:3707 387#, c-format 388msgid "%s: does not exist in index" 389msgstr "%s ist nicht im Index" 390 391#: apply.c:3544 apply.c:3715 392#, c-format 393msgid "%s: does not match index" 394msgstr "%s entspricht nicht der Version im Index" 395 396#: apply.c:3579 397msgid "repository lacks the necessary blob to fall back on 3-way merge." 398msgstr "" 399"Dem Repository fehlt der notwendige Blob, um auf einen 3-Wege-Merge\n" 400"zurückzufallen." 401 402#: apply.c:3582 403#, c-format 404msgid "Falling back to three-way merge...\n" 405msgstr "Falle zurück auf 3-Wege-Merge ...\n" 406 407#: apply.c:3598 apply.c:3602 408#, c-format 409msgid "cannot read the current contents of '%s'" 410msgstr "kann aktuelle Inhalte von '%s' nicht lesen" 411 412#: apply.c:3614 413#, c-format 414msgid "Failed to fall back on three-way merge...\n" 415msgstr "Fehler beim Zurückfallen auf 3-Wege-Merge...\n" 416 417#: apply.c:3628 418#, c-format 419msgid "Applied patch to '%s' with conflicts.\n" 420msgstr "Patch auf '%s' mit Konflikten angewendet.\n" 421 422#: apply.c:3633 423#, c-format 424msgid "Applied patch to '%s' cleanly.\n" 425msgstr "Patch auf '%s' sauber angewendet.\n" 426 427#: apply.c:3659 428msgid "removal patch leaves file contents" 429msgstr "Lösch-Patch hinterlässt Dateiinhalte" 430 431#: apply.c:3732 432#, c-format 433msgid "%s: wrong type" 434msgstr "%s: falscher Typ" 435 436#: apply.c:3734 437#, c-format 438msgid "%s has type %o, expected %o" 439msgstr "%s ist vom Typ %o, erwartete %o" 440 441#: apply.c:3885 apply.c:3887 read-cache.c:830 read-cache.c:856 442#: read-cache.c:1309 443#, c-format 444msgid "invalid path '%s'" 445msgstr "Ungültiger Pfad '%s'" 446 447#: apply.c:3943 448#, c-format 449msgid "%s: already exists in index" 450msgstr "%s ist bereits bereitgestellt" 451 452#: apply.c:3946 453#, c-format 454msgid "%s: already exists in working directory" 455msgstr "%s existiert bereits im Arbeitsverzeichnis" 456 457#: apply.c:3966 458#, c-format 459msgid "new mode (%o) of %s does not match old mode (%o)" 460msgstr "neuer Modus (%o) von %s entspricht nicht dem alten Modus (%o)" 461 462#: apply.c:3971 463#, c-format 464msgid "new mode (%o) of %s does not match old mode (%o) of %s" 465msgstr "neuer Modus (%o) von %s entspricht nicht dem alten Modus (%o) von %s" 466 467#: apply.c:3991 468#, c-format 469msgid "affected file '%s' is beyond a symbolic link" 470msgstr "betroffene Datei '%s' ist hinter einer symbolischen Verknüpfung" 471 472#: apply.c:3995 473#, c-format 474msgid "%s: patch does not apply" 475msgstr "%s: Patch konnte nicht angewendet werden" 476 477#: apply.c:4010 478#, c-format 479msgid "Checking patch %s..." 480msgstr "Prüfe Patch %s ..." 481 482#: apply.c:4102 483#, c-format 484msgid "sha1 information is lacking or useless for submodule %s" 485msgstr "SHA-1 Information fehlt oder ist unbrauchbar für Submodul %s" 486 487#: apply.c:4109 488#, c-format 489msgid "mode change for %s, which is not in current HEAD" 490msgstr "Modusänderung für %s, was sich nicht im aktuellen HEAD befindet" 491 492#: apply.c:4112 493#, c-format 494msgid "sha1 information is lacking or useless (%s)." 495msgstr "SHA-1 Information fehlt oder ist unbrauchbar (%s)." 496 497#: apply.c:4117 builtin/checkout.c:257 builtin/reset.c:143 498#, c-format 499msgid "make_cache_entry failed for path '%s'" 500msgstr "make_cache_entry für Pfad '%s' fehlgeschlagen" 501 502#: apply.c:4121 503#, c-format 504msgid "could not add %s to temporary index" 505msgstr "konnte %s nicht zum temporären Index hinzufügen" 506 507#: apply.c:4131 508#, c-format 509msgid "could not write temporary index to %s" 510msgstr "konnte temporären Index nicht nach %s schreiben" 511 512#: apply.c:4269 513#, c-format 514msgid "unable to remove %s from index" 515msgstr "konnte %s nicht aus dem Index entfernen" 516 517#: apply.c:4303 518#, c-format 519msgid "corrupt patch for submodule %s" 520msgstr "fehlerhafter Patch für Submodul %s" 521 522#: apply.c:4309 523#, c-format 524msgid "unable to stat newly created file '%s'" 525msgstr "konnte neu erstellte Datei '%s' nicht lesen" 526 527#: apply.c:4317 528#, c-format 529msgid "unable to create backing store for newly created file %s" 530msgstr "kann internen Speicher für eben erstellte Datei %s nicht erzeugen" 531 532#: apply.c:4323 apply.c:4468 533#, c-format 534msgid "unable to add cache entry for %s" 535msgstr "kann für %s keinen Eintrag in den Zwischenspeicher hinzufügen" 536 537#: apply.c:4366 538#, c-format 539msgid "failed to write to '%s'" 540msgstr "Fehler beim Schreiben nach '%s'" 541 542#: apply.c:4370 543#, c-format 544msgid "closing file '%s'" 545msgstr "schließe Datei '%s'" 546 547#: apply.c:4440 548#, c-format 549msgid "unable to write file '%s' mode %o" 550msgstr "konnte Datei '%s' mit Modus %o nicht schreiben" 551 552#: apply.c:4538 553#, c-format 554msgid "Applied patch %s cleanly." 555msgstr "Patch %s sauber angewendet" 556 557#: apply.c:4546 558msgid "internal error" 559msgstr "interner Fehler" 560 561#: apply.c:4549 562#, c-format 563msgid "Applying patch %%s with %d reject..." 564msgid_plural "Applying patch %%s with %d rejects..." 565msgstr[0] "Wende Patch %%s mit %d Zurückweisung an..." 566msgstr[1] "Wende Patch %%s mit %d Zurückweisungen an..." 567 568#: apply.c:4560 569#, c-format 570msgid "truncating .rej filename to %.*s.rej" 571msgstr "Verkürze Name von .rej Datei zu %.*s.rej" 572 573#: apply.c:4568 builtin/fetch.c:837 builtin/fetch.c:1118 574#, c-format 575msgid "cannot open %s" 576msgstr "kann '%s' nicht öffnen" 577 578#: apply.c:4582 579#, c-format 580msgid "Hunk #%d applied cleanly." 581msgstr "Patch-Bereich #%d sauber angewendet." 582 583#: apply.c:4586 584#, c-format 585msgid "Rejected hunk #%d." 586msgstr "Patch-Block #%d zurückgewiesen." 587 588#: apply.c:4696 589#, c-format 590msgid "Skipped patch '%s'." 591msgstr "Patch '%s' ausgelassen." 592 593#: apply.c:4704 594msgid "unrecognized input" 595msgstr "nicht erkannte Eingabe" 596 597#: apply.c:4724 598msgid "unable to read index file" 599msgstr "Konnte Index-Datei nicht lesen" 600 601#: apply.c:4879 602#, c-format 603msgid "can't open patch '%s': %s" 604msgstr "kann Patch '%s' nicht öffnen: %s" 605 606#: apply.c:4906 607#, c-format 608msgid "squelched %d whitespace error" 609msgid_plural "squelched %d whitespace errors" 610msgstr[0] "unterdrückte %d Whitespace-Fehler" 611msgstr[1] "unterdrückte %d Whitespace-Fehler" 612 613#: apply.c:4912 apply.c:4927 614#, c-format 615msgid "%d line adds whitespace errors." 616msgid_plural "%d lines add whitespace errors." 617msgstr[0] "%d Zeile fügt Whitespace-Fehler hinzu." 618msgstr[1] "%d Zeilen fügen Whitespace-Fehler hinzu." 619 620#: apply.c:4920 621#, c-format 622msgid "%d line applied after fixing whitespace errors." 623msgid_plural "%d lines applied after fixing whitespace errors." 624msgstr[0] "%d Zeile nach Behebung von Whitespace-Fehlern angewendet." 625msgstr[1] "%d Zeilen nach Behebung von Whitespace-Fehlern angewendet." 626 627#: apply.c:4936 builtin/add.c:540 builtin/mv.c:301 builtin/rm.c:390 628msgid "Unable to write new index file" 629msgstr "Konnte neue Index-Datei nicht schreiben." 630 631#: apply.c:4963 apply.c:4966 builtin/am.c:2210 builtin/am.c:2213 632#: builtin/clone.c:120 builtin/fetch.c:118 builtin/merge.c:271 633#: builtin/pull.c:207 builtin/submodule--helper.c:407 634#: builtin/submodule--helper.c:1366 builtin/submodule--helper.c:1369 635#: builtin/submodule--helper.c:1849 builtin/submodule--helper.c:1852 636#: builtin/submodule--helper.c:2091 git-add--interactive.perl:197 637msgid "path" 638msgstr "Pfad" 639 640#: apply.c:4964 641msgid "don't apply changes matching the given path" 642msgstr "keine Änderungen im angegebenen Pfad anwenden" 643 644#: apply.c:4967 645msgid "apply changes matching the given path" 646msgstr "Änderungen nur im angegebenen Pfad anwenden" 647 648#: apply.c:4969 builtin/am.c:2219 649msgid "num" 650msgstr "Anzahl" 651 652#: apply.c:4970 653msgid "remove <num> leading slashes from traditional diff paths" 654msgstr "" 655"<Anzahl> vorangestellte Schrägstriche von herkömmlichen Differenzpfaden " 656"entfernen" 657 658#: apply.c:4973 659msgid "ignore additions made by the patch" 660msgstr "hinzugefügte Zeilen des Patches ignorieren" 661 662#: apply.c:4975 663msgid "instead of applying the patch, output diffstat for the input" 664msgstr "" 665"anstatt der Anwendung des Patches, den \"diffstat\" für die Eingabe " 666"ausgegeben" 667 668#: apply.c:4979 669msgid "show number of added and deleted lines in decimal notation" 670msgstr "" 671"die Anzahl von hinzugefügten/entfernten Zeilen in Dezimalnotation anzeigen" 672 673#: apply.c:4981 674msgid "instead of applying the patch, output a summary for the input" 675msgstr "" 676"anstatt der Anwendung des Patches, eine Zusammenfassung für die Eingabe " 677"ausgeben" 678 679#: apply.c:4983 680msgid "instead of applying the patch, see if the patch is applicable" 681msgstr "" 682"anstatt der Anwendung des Patches, zeige ob Patch angewendet werden kann" 683 684#: apply.c:4985 685msgid "make sure the patch is applicable to the current index" 686msgstr "" 687"sicherstellen, dass der Patch mit dem aktuellen Index angewendet werden kann" 688 689#: apply.c:4987 690msgid "mark new files with `git add --intent-to-add`" 691msgstr "neue Dateien mit `git add --intent-to-add` markieren" 692 693#: apply.c:4989 694msgid "apply a patch without touching the working tree" 695msgstr "Patch anwenden, ohne Änderungen im Arbeitsverzeichnis vorzunehmen" 696 697#: apply.c:4991 698msgid "accept a patch that touches outside the working area" 699msgstr "" 700"Patch anwenden, der Änderungen außerhalb des Arbeitsverzeichnisses vornimmt" 701 702#: apply.c:4994 703msgid "also apply the patch (use with --stat/--summary/--check)" 704msgstr "Patch anwenden (Benutzung mit --stat/--summary/--check)" 705 706#: apply.c:4996 707msgid "attempt three-way merge if a patch does not apply" 708msgstr "versuche 3-Wege-Merge, wenn der Patch nicht angewendet werden konnte" 709 710#: apply.c:4998 711msgid "build a temporary index based on embedded index information" 712msgstr "" 713"einen temporären Index, basierend auf den integrierten Index-Informationen, " 714"erstellen" 715 716#: apply.c:5001 builtin/checkout-index.c:173 builtin/ls-files.c:524 717msgid "paths are separated with NUL character" 718msgstr "Pfade sind getrennt durch NUL Zeichen" 719 720#: apply.c:5003 721msgid "ensure at least <n> lines of context match" 722msgstr "" 723"sicher stellen, dass mindestens <n> Zeilen des Kontextes übereinstimmen" 724 725#: apply.c:5004 builtin/am.c:2198 builtin/interpret-trailers.c:97 726#: builtin/interpret-trailers.c:99 builtin/interpret-trailers.c:101 727#: builtin/pack-objects.c:3317 builtin/rebase.c:1415 728msgid "action" 729msgstr "Aktion" 730 731#: apply.c:5005 732msgid "detect new or modified lines that have whitespace errors" 733msgstr "neue oder geänderte Zeilen, die Whitespace-Fehler haben, ermitteln" 734 735#: apply.c:5008 apply.c:5011 736msgid "ignore changes in whitespace when finding context" 737msgstr "Änderungen im Whitespace bei der Suche des Kontextes ignorieren" 738 739#: apply.c:5014 740msgid "apply the patch in reverse" 741msgstr "den Patch in umgekehrter Reihenfolge anwenden" 742 743#: apply.c:5016 744msgid "don't expect at least one line of context" 745msgstr "keinen Kontext erwarten" 746 747#: apply.c:5018 748msgid "leave the rejected hunks in corresponding *.rej files" 749msgstr "" 750"zurückgewiesene Patch-Blöcke in entsprechenden *.rej Dateien hinterlassen" 751 752#: apply.c:5020 753msgid "allow overlapping hunks" 754msgstr "sich überlappende Patch-Blöcke erlauben" 755 756#: apply.c:5021 builtin/add.c:291 builtin/check-ignore.c:22 757#: builtin/commit.c:1317 builtin/count-objects.c:98 builtin/fsck.c:786 758#: builtin/log.c:2045 builtin/mv.c:123 builtin/read-tree.c:128 759msgid "be verbose" 760msgstr "erweiterte Ausgaben" 761 762#: apply.c:5023 763msgid "tolerate incorrectly detected missing new-line at the end of file" 764msgstr "fehlerhaft erkannten fehlenden Zeilenumbruch am Dateiende tolerieren" 765 766#: apply.c:5026 767msgid "do not trust the line counts in the hunk headers" 768msgstr "den Zeilennummern im Kopf des Patch-Blocks nicht vertrauen" 769 770#: apply.c:5028 builtin/am.c:2207 771msgid "root" 772msgstr "Wurzelverzeichnis" 773 774#: apply.c:5029 775msgid "prepend <root> to all filenames" 776msgstr "<Wurzelverzeichnis> vor alle Dateinamen stellen" 777 778#: archive.c:14 779msgid "git archive [<options>] <tree-ish> [<path>...]" 780msgstr "git archive [<Optionen>] <Commit-Referenz> [<Pfad>...]" 781 782#: archive.c:15 783msgid "git archive --list" 784msgstr "git archive --list" 785 786#: archive.c:16 787msgid "" 788"git archive --remote <repo> [--exec <cmd>] [<options>] <tree-ish> [<path>...]" 789msgstr "" 790"git archive --remote <Repository> [--exec <Programm>] [<Optionen>] <Commit-" 791"Referenz> [<Pfad>...]" 792 793#: archive.c:17 794msgid "git archive --remote <repo> [--exec <cmd>] --list" 795msgstr "git archive --remote <Repository> [--exec <Programm>] --list" 796 797#: archive.c:372 builtin/add.c:177 builtin/add.c:516 builtin/rm.c:299 798#, c-format 799msgid "pathspec '%s' did not match any files" 800msgstr "Pfadspezifikation '%s' stimmt mit keinen Dateien überein" 801 802#: archive.c:396 803#, c-format 804msgid "no such ref: %.*s" 805msgstr "Keine solche Referenz: %.*s" 806 807#: archive.c:401 808#, c-format 809msgid "not a valid object name: %s" 810msgstr "Kein gültiger Objektname: %s" 811 812#: archive.c:414 813#, c-format 814msgid "not a tree object: %s" 815msgstr "Kein Tree-Objekt: %s" 816 817#: archive.c:424 818msgid "current working directory is untracked" 819msgstr "Aktuelles Arbeitsverzeichnis ist unversioniert." 820 821#: archive.c:455 822msgid "fmt" 823msgstr "Format" 824 825#: archive.c:455 826msgid "archive format" 827msgstr "Archivformat" 828 829#: archive.c:456 builtin/log.c:1557 830msgid "prefix" 831msgstr "Präfix" 832 833#: archive.c:457 834msgid "prepend prefix to each pathname in the archive" 835msgstr "einen Präfix vor jeden Pfadnamen in dem Archiv stellen" 836 837#: archive.c:458 builtin/blame.c:821 builtin/blame.c:822 838#: builtin/commit-tree.c:117 builtin/config.c:129 builtin/fast-export.c:1091 839#: builtin/fast-export.c:1093 builtin/grep.c:895 builtin/hash-object.c:105 840#: builtin/ls-files.c:560 builtin/ls-files.c:563 builtin/notes.c:412 841#: builtin/notes.c:578 builtin/read-tree.c:123 parse-options.h:177 842msgid "file" 843msgstr "Datei" 844 845#: archive.c:459 builtin/archive.c:90 846msgid "write the archive to this file" 847msgstr "das Archiv in diese Datei schreiben" 848 849#: archive.c:461 850msgid "read .gitattributes in working directory" 851msgstr ".gitattributes aus dem Arbeitsverzeichnis lesen" 852 853#: archive.c:462 854msgid "report archived files on stderr" 855msgstr "archivierte Dateien in der Standard-Fehlerausgabe ausgeben" 856 857#: archive.c:463 858msgid "store only" 859msgstr "nur speichern" 860 861#: archive.c:464 862msgid "compress faster" 863msgstr "schneller komprimieren" 864 865#: archive.c:472 866msgid "compress better" 867msgstr "besser komprimieren" 868 869#: archive.c:475 870msgid "list supported archive formats" 871msgstr "unterstützte Archivformate auflisten" 872 873#: archive.c:477 builtin/archive.c:91 builtin/clone.c:110 builtin/clone.c:113 874#: builtin/submodule--helper.c:1378 builtin/submodule--helper.c:1858 875msgid "repo" 876msgstr "Repository" 877 878#: archive.c:478 builtin/archive.c:92 879msgid "retrieve the archive from remote repository <repo>" 880msgstr "Archiv vom Remote-Repository <Repository> abrufen" 881 882#: archive.c:479 builtin/archive.c:93 builtin/difftool.c:707 883#: builtin/notes.c:498 884msgid "command" 885msgstr "Programm" 886 887#: archive.c:480 builtin/archive.c:94 888msgid "path to the remote git-upload-archive command" 889msgstr "Pfad zum externen \"git-upload-archive\"-Programm" 890 891#: archive.c:487 892msgid "Unexpected option --remote" 893msgstr "Unerwartete Option --remote" 894 895#: archive.c:489 896msgid "Option --exec can only be used together with --remote" 897msgstr "Die Option --exec kann nur zusammen mit --remote verwendet werden." 898 899#: archive.c:491 900msgid "Unexpected option --output" 901msgstr "Unerwartete Option --output" 902 903#: archive.c:513 904#, c-format 905msgid "Unknown archive format '%s'" 906msgstr "Unbekanntes Archivformat '%s'" 907 908#: archive.c:520 909#, c-format 910msgid "Argument not supported for format '%s': -%d" 911msgstr "Argument für Format '%s' nicht unterstützt: -%d" 912 913#: archive-tar.c:125 archive-zip.c:345 914#, c-format 915msgid "cannot stream blob %s" 916msgstr "Kann Blob %s nicht streamen." 917 918#: archive-tar.c:260 archive-zip.c:363 919#, c-format 920msgid "unsupported file mode: 0%o (SHA1: %s)" 921msgstr "Nicht unterstützter Dateimodus: 0%o (SHA1: %s)" 922 923#: archive-tar.c:287 archive-zip.c:353 924#, c-format 925msgid "cannot read %s" 926msgstr "Kann %s nicht lesen." 927 928#: archive-tar.c:459 929#, c-format 930msgid "unable to start '%s' filter" 931msgstr "Konnte '%s' Filter nicht starten." 932 933#: archive-tar.c:462 934msgid "unable to redirect descriptor" 935msgstr "Konnte Descriptor nicht umleiten." 936 937#: archive-tar.c:469 938#, c-format 939msgid "'%s' filter reported error" 940msgstr "'%s' Filter meldete Fehler." 941 942#: archive-zip.c:314 943#, c-format 944msgid "path is not valid UTF-8: %s" 945msgstr "Pfad ist kein gültiges UTF-8: %s" 946 947#: archive-zip.c:318 948#, c-format 949msgid "path too long (%d chars, SHA1: %s): %s" 950msgstr "Pfad zu lang (%d Zeichen, SHA1: %s): %s" 951 952#: archive-zip.c:474 builtin/pack-objects.c:226 builtin/pack-objects.c:229 953#, c-format 954msgid "deflate error (%d)" 955msgstr "Fehler beim Komprimieren (%d)" 956 957#: archive-zip.c:609 958#, c-format 959msgid "timestamp too large for this system: %<PRIuMAX>" 960msgstr "Timestamp zu groß für dieses System: %<PRIuMAX>" 961 962#: attr.c:211 963#, c-format 964msgid "%.*s is not a valid attribute name" 965msgstr "%.*s ist kein gültiger Attributname" 966 967#: attr.c:368 968#, c-format 969msgid "%s not allowed: %s:%d" 970msgstr "%s nicht erlaubt: %s:%d" 971 972#: attr.c:408 973msgid "" 974"Negative patterns are ignored in git attributes\n" 975"Use '\\!' for literal leading exclamation." 976msgstr "" 977"Verneinende Muster werden in Git-Attributen ignoriert.\n" 978"Benutzen Sie '\\!' für führende Ausrufezeichen." 979 980#: bisect.c:468 981#, c-format 982msgid "Badly quoted content in file '%s': %s" 983msgstr "Ungültiger Inhalt bzgl. Anführungszeichen in Datei '%s': %s" 984 985#: bisect.c:678 986#, c-format 987msgid "We cannot bisect more!\n" 988msgstr "Keine binäre Suche mehr möglich!\n" 989 990#: bisect.c:733 991#, c-format 992msgid "Not a valid commit name %s" 993msgstr "%s ist kein gültiger Commit-Name" 994 995#: bisect.c:758 996#, c-format 997msgid "" 998"The merge base %s is bad.\n" 999"This means the bug has been fixed between %s and [%s].\n"1000msgstr ""1001"Die Merge-Basis %s ist fehlerhaft.\n"1002"Das bedeutet, der Fehler wurde zwischen %s und [%s] behoben.\n"10031004#: bisect.c:7631005#, c-format1006msgid ""1007"The merge base %s is new.\n"1008"The property has changed between %s and [%s].\n"1009msgstr ""1010"Die Merge-Basis %s ist neu.\n"1011"Das bedeutet, die Eigenschaft hat sich zwischen %s und [%s] geändert.\n"10121013#: bisect.c:7681014#, c-format1015msgid ""1016"The merge base %s is %s.\n"1017"This means the first '%s' commit is between %s and [%s].\n"1018msgstr ""1019"Die Merge-Basis %s ist %s.\n"1020"Das bedeutet, der erste '%s' Commit befindet sich zwischen %s und [%s].\n"10211022#: bisect.c:7761023#, c-format1024msgid ""1025"Some %s revs are not ancestors of the %s rev.\n"1026"git bisect cannot work properly in this case.\n"1027"Maybe you mistook %s and %s revs?\n"1028msgstr ""1029"Manche %s Commits sind keine Vorgänger des %s Commits.\n"1030"git bisect kann in diesem Fall nicht richtig arbeiten.\n"1031"Vielleicht verwechselten Sie %s und %s Commits?\n"10321033#: bisect.c:7891034#, c-format1035msgid ""1036"the merge base between %s and [%s] must be skipped.\n"1037"So we cannot be sure the first %s commit is between %s and %s.\n"1038"We continue anyway."1039msgstr ""1040"Die Merge-Basis zwischen %s und [%s] muss ausgelassen werden.\n"1041"Es kann daher nicht sichergestellt werden, dass sich der\n"1042"erste %s Commit zwischen %s und %s befindet.\n"1043"Es wird dennoch fortgesetzt."10441045#: bisect.c:8221046#, c-format1047msgid "Bisecting: a merge base must be tested\n"1048msgstr "binäre Suche: eine Merge-Basis muss geprüft werden\n"10491050#: bisect.c:8651051#, c-format1052msgid "a %s revision is needed"1053msgstr "ein %s Commit wird benötigt"10541055#: bisect.c:884 builtin/notes.c:177 builtin/tag.c:2481056#, c-format1057msgid "could not create file '%s'"1058msgstr "konnte Datei '%s' nicht erstellen"10591060#: bisect.c:928 builtin/merge.c:1461061#, c-format1062msgid "could not read file '%s'"1063msgstr "Konnte Datei '%s' nicht lesen"10641065#: bisect.c:9581066msgid "reading bisect refs failed"1067msgstr "Lesen von Referenzen für binäre Suche fehlgeschlagen"10681069#: bisect.c:9771070#, c-format1071msgid "%s was both %s and %s\n"1072msgstr "%s war sowohl %s als auch %s\n"10731074#: bisect.c:9851075#, c-format1076msgid ""1077"No testable commit found.\n"1078"Maybe you started with bad path parameters?\n"1079msgstr ""1080"Kein testbarer Commit gefunden.\n"1081"Vielleicht starteten Sie mit falschen Pfad-Parametern?\n"10821083#: bisect.c:10041084#, c-format1085msgid "(roughly %d step)"1086msgid_plural "(roughly %d steps)"1087msgstr[0] "(ungefähr %d Schritt)"1088msgstr[1] "(ungefähr %d Schritte)"10891090#. TRANSLATORS: the last %s will be replaced with "(roughly %d1091#. steps)" translation.1092#.1093#: bisect.c:10101094#, c-format1095msgid "Bisecting: %d revision left to test after this %s\n"1096msgid_plural "Bisecting: %d revisions left to test after this %s\n"1097msgstr[0] "binäre Suche: danach noch %d Commit zum Testen übrig %s\n"1098msgstr[1] "binäre Suche: danach noch %d Commits zum Testen übrig %s\n"10991100#: blame.c:17941101msgid "--contents and --reverse do not blend well."1102msgstr "--contents und --reverse funktionieren gemeinsam nicht."11031104#: blame.c:18081105msgid "cannot use --contents with final commit object name"1106msgstr ""1107"kann --contents nicht mit endgültigem Namen des Commit-Objektes benutzen"11081109#: blame.c:18291110msgid "--reverse and --first-parent together require specified latest commit"1111msgstr ""1112"--reverse und --first-parent zusammen erfordern die Angabe eines "1113"endgültigen\n"1114"Commits"11151116#: blame.c:1838 bundle.c:164 ref-filter.c:2077 remote.c:1938 sequencer.c:20301117#: sequencer.c:4224 builtin/commit.c:1017 builtin/log.c:382 builtin/log.c:9401118#: builtin/log.c:1428 builtin/log.c:1804 builtin/log.c:2094 builtin/merge.c:4151119#: builtin/pack-objects.c:3140 builtin/pack-objects.c:31551120#: builtin/shortlog.c:1921121msgid "revision walk setup failed"1122msgstr "Einrichtung des Revisionsgangs fehlgeschlagen"11231124#: blame.c:18561125msgid ""1126"--reverse --first-parent together require range along first-parent chain"1127msgstr ""1128"--reverse und --first-parent zusammen erfordern einen Bereich entlang der\n"1129"\"first-parent\"-Kette"11301131#: blame.c:18671132#, c-format1133msgid "no such path %s in %s"1134msgstr "Pfad %s nicht in %s"11351136#: blame.c:18781137#, c-format1138msgid "cannot read blob %s for path %s"1139msgstr "kann Blob %s für Pfad '%s' nicht lesen"11401141#: branch.c:531142#, c-format1143msgid ""1144"\n"1145"After fixing the error cause you may try to fix up\n"1146"the remote tracking information by invoking\n"1147"\"git branch --set-upstream-to=%s%s%s\"."1148msgstr ""1149"\n"1150"Nachdem Sie die Fehlerursache behoben haben, können Sie\n"1151"die Tracking-Informationen mit\n"1152"\"git branch --set-upstream-to=%s%s%s\"\n"1153"erneut setzen."11541155#: branch.c:671156#, c-format1157msgid "Not setting branch %s as its own upstream."1158msgstr "Branch %s kann nicht sein eigener Upstream-Branch sein."11591160#: branch.c:931161#, c-format1162msgid "Branch '%s' set up to track remote branch '%s' from '%s' by rebasing."1163msgstr "Branch '%s' folgt nun Remote-Branch '%s' von '%s' durch Rebase."11641165#: branch.c:941166#, c-format1167msgid "Branch '%s' set up to track remote branch '%s' from '%s'."1168msgstr "Branch '%s' folgt nun Remote-Branch '%s' von '%s'."11691170#: branch.c:981171#, c-format1172msgid "Branch '%s' set up to track local branch '%s' by rebasing."1173msgstr "Branch '%s' folgt nun lokalem Branch '%s' durch Rebase."11741175#: branch.c:991176#, c-format1177msgid "Branch '%s' set up to track local branch '%s'."1178msgstr "Branch '%s' folgt nun lokalem Branch '%s'."11791180#: branch.c:1041181#, c-format1182msgid "Branch '%s' set up to track remote ref '%s' by rebasing."1183msgstr "Branch '%s' folgt nun Remote-Referenz '%s' durch Rebase."11841185#: branch.c:1051186#, c-format1187msgid "Branch '%s' set up to track remote ref '%s'."1188msgstr "Branch '%s' folgt nun Remote-Referenz '%s'."11891190#: branch.c:1091191#, c-format1192msgid "Branch '%s' set up to track local ref '%s' by rebasing."1193msgstr "Branch '%s' folgt nun lokaler Referenz '%s' durch Rebase."11941195#: branch.c:1101196#, c-format1197msgid "Branch '%s' set up to track local ref '%s'."1198msgstr "Branch '%s' folgt nun lokaler Referenz '%s'."11991200#: branch.c:1191201msgid "Unable to write upstream branch configuration"1202msgstr "Konnte Konfiguration zu Upstream-Branch nicht schreiben."12031204#: branch.c:1561205#, c-format1206msgid "Not tracking: ambiguous information for ref %s"1207msgstr ""1208"Konfiguration zum Folgen von Branch nicht eingerichtet. Referenz %s ist "1209"mehrdeutig."12101211#: branch.c:1891212#, c-format1213msgid "'%s' is not a valid branch name."1214msgstr "'%s' ist kein gültiger Branchname."12151216#: branch.c:2081217#, c-format1218msgid "A branch named '%s' already exists."1219msgstr "Branch '%s' existiert bereits."12201221#: branch.c:2131222msgid "Cannot force update the current branch."1223msgstr "Kann Aktualisierung des aktuellen Branches nicht erzwingen."12241225#: branch.c:2331226#, c-format1227msgid "Cannot setup tracking information; starting point '%s' is not a branch."1228msgstr ""1229"Kann Tracking-Informationen nicht einrichten; Startpunkt '%s' ist kein "1230"Branch."12311232#: branch.c:2351233#, c-format1234msgid "the requested upstream branch '%s' does not exist"1235msgstr "der angeforderte Upstream-Branch '%s' existiert nicht"12361237#: branch.c:2371238msgid ""1239"\n"1240"If you are planning on basing your work on an upstream\n"1241"branch that already exists at the remote, you may need to\n"1242"run \"git fetch\" to retrieve it.\n"1243"\n"1244"If you are planning to push out a new local branch that\n"1245"will track its remote counterpart, you may want to use\n"1246"\"git push -u\" to set the upstream config as you push."1247msgstr ""1248"\n"1249"Falls Sie vorhaben, Ihre Arbeit auf einem bereits existierenden\n"1250"Upstream-Branch aufzubauen, sollten Sie \"git fetch\"\n"1251"ausführen, um diesen abzurufen.\n"1252"\n"1253"Falls Sie vorhaben, einen neuen lokalen Branch zu versenden\n"1254"der seinem externen Gegenstück folgen soll, können Sie\n"1255"\"git push -u\" verwenden, um den Upstream-Branch beim \"push\"\n"1256"zu konfigurieren."12571258#: branch.c:2811259#, c-format1260msgid "Not a valid object name: '%s'."1261msgstr "Ungültiger Objekt-Name: '%s'"12621263#: branch.c:3011264#, c-format1265msgid "Ambiguous object name: '%s'."1266msgstr "mehrdeutiger Objekt-Name: '%s'"12671268#: branch.c:3061269#, c-format1270msgid "Not a valid branch point: '%s'."1271msgstr "Ungültiger Branchpunkt: '%s'"12721273#: branch.c:3591274#, c-format1275msgid "'%s' is already checked out at '%s'"1276msgstr "'%s' ist bereits in '%s' ausgecheckt"12771278#: branch.c:3821279#, c-format1280msgid "HEAD of working tree %s is not updated"1281msgstr "HEAD des Arbeitsverzeichnisses %s ist nicht aktualisiert."12821283#: bundle.c:361284#, c-format1285msgid "'%s' does not look like a v2 bundle file"1286msgstr "'%s' sieht nicht wie eine v2 Paketdatei aus"12871288#: bundle.c:641289#, c-format1290msgid "unrecognized header: %s%s (%d)"1291msgstr "nicht erkannter Kopfbereich: %s%s (%d)"12921293#: bundle.c:90 rerere.c:480 rerere.c:690 sequencer.c:2281 sequencer.c:29161294#: builtin/commit.c:7881295#, c-format1296msgid "could not open '%s'"1297msgstr "Konnte '%s' nicht öffnen"12981299#: bundle.c:1431300msgid "Repository lacks these prerequisite commits:"1301msgstr "Dem Repository fehlen folgende vorausgesetzte Commits:"13021303#: bundle.c:1941304#, c-format1305msgid "The bundle contains this ref:"1306msgid_plural "The bundle contains these %d refs:"1307msgstr[0] "Das Paket enthält diese Referenz:"1308msgstr[1] "Das Paket enthält diese %d Referenzen:"13091310#: bundle.c:2011311msgid "The bundle records a complete history."1312msgstr "Das Paket speichert eine komplette Historie."13131314#: bundle.c:2031315#, c-format1316msgid "The bundle requires this ref:"1317msgid_plural "The bundle requires these %d refs:"1318msgstr[0] "Das Paket benötigt diese Referenz:"1319msgstr[1] "Das Paket benötigt diese %d Referenzen:"13201321#: bundle.c:2691322msgid "unable to dup bundle descriptor"1323msgstr "Konnte dup für Descriptor des Pakets nicht ausführen."13241325#: bundle.c:2761326msgid "Could not spawn pack-objects"1327msgstr "Konnte Paketobjekte nicht erstellen"13281329#: bundle.c:2871330msgid "pack-objects died"1331msgstr "Erstellung der Paketobjekte abgebrochen"13321333#: bundle.c:3291334msgid "rev-list died"1335msgstr "\"rev-list\" abgebrochen"13361337#: bundle.c:3781338#, c-format1339msgid "ref '%s' is excluded by the rev-list options"1340msgstr "Referenz '%s' wird durch \"rev-list\" Optionen ausgeschlossen"13411342#: bundle.c:457 builtin/log.c:197 builtin/log.c:1709 builtin/shortlog.c:3061343#, c-format1344msgid "unrecognized argument: %s"1345msgstr "nicht erkanntes Argument: %s"13461347#: bundle.c:4651348msgid "Refusing to create empty bundle."1349msgstr "Erstellung eines leeren Pakets zurückgewiesen."13501351#: bundle.c:4751352#, c-format1353msgid "cannot create '%s'"1354msgstr "kann '%s' nicht erstellen"13551356#: bundle.c:5001357msgid "index-pack died"1358msgstr "Erstellung der Paketindexdatei abgebrochen"13591360#: color.c:2961361#, c-format1362msgid "invalid color value: %.*s"1363msgstr "Ungültiger Farbwert: %.*s"13641365#: commit.c:50 sequencer.c:2697 builtin/am.c:355 builtin/am.c:3991366#: builtin/am.c:1377 builtin/am.c:2022 builtin/replace.c:4551367#, c-format1368msgid "could not parse %s"1369msgstr "konnte %s nicht parsen"13701371#: commit.c:521372#, c-format1373msgid "%s %s is not a commit!"1374msgstr "%s %s ist kein Commit!"13751376#: commit.c:1931377msgid ""1378"Support for <GIT_DIR>/info/grafts is deprecated\n"1379"and will be removed in a future Git version.\n"1380"\n"1381"Please use \"git replace --convert-graft-file\"\n"1382"to convert the grafts into replace refs.\n"1383"\n"1384"Turn this message off by running\n"1385"\"git config advice.graftFileDeprecated false\""1386msgstr ""1387"Die Unterstützung für <GIT_DIR>/info/grafts ist veraltet\n"1388"und wird in zukünftigen Git Versionen entfernt.\n"1389"\n"1390"Bitte benutzen Sie \"git replace --convert-graft-file\"\n"1391"zum Konvertieren der künstlichen Vorgänger (\"grafts\")\n"1392"in ersetzende Referenzen.<\n"1393"\n"1394"Sie können diese Meldung unterdrücken, indem Sie\n"1395"\"git config advice.graftFileDeprecated false\" ausführen."13961397#: commit.c:11281398#, c-format1399msgid "Commit %s has an untrusted GPG signature, allegedly by %s."1400msgstr ""1401"Commit %s hat eine nicht vertrauenswürdige GPG-Signatur, angeblich von %s."14021403#: commit.c:11311404#, c-format1405msgid "Commit %s has a bad GPG signature allegedly by %s."1406msgstr "Commit %s hat eine ungültige GPG-Signatur, angeblich von %s."14071408#: commit.c:11341409#, c-format1410msgid "Commit %s does not have a GPG signature."1411msgstr "Commit %s hat keine GPG-Signatur."14121413#: commit.c:11371414#, c-format1415msgid "Commit %s has a good GPG signature by %s\n"1416msgstr "Commit %s hat eine gültige GPG-Signatur von %s\n"14171418#: commit.c:13911419msgid ""1420"Warning: commit message did not conform to UTF-8.\n"1421"You may want to amend it after fixing the message, or set the config\n"1422"variable i18n.commitencoding to the encoding your project uses.\n"1423msgstr ""1424"Warnung: Die Commit-Beschreibung ist nicht UTF-8 konform.\n"1425"Sie können das nachbessern, nachdem Sie die Beschreibung korrigiert haben,\n"1426"oder Sie setzen die Konfigurationsvariable i18n.commitencoding auf das "1427"Encoding,\n"1428"welches von ihrem Projekt verwendet wird.\n"14291430#: commit-graph.c:1051431msgid "commit-graph file is too small"1432msgstr "Commit-Graph-Datei ist zu klein."14331434#: commit-graph.c:1701435#, c-format1436msgid "commit-graph signature %X does not match signature %X"1437msgstr "Commit-Graph-Signatur %X stimmt nicht mit Signatur %X überein."14381439#: commit-graph.c:1771440#, c-format1441msgid "commit-graph version %X does not match version %X"1442msgstr "Commit-Graph-Version %X stimmt nicht mit Version %X überein."14431444#: commit-graph.c:1841445#, c-format1446msgid "commit-graph hash version %X does not match version %X"1447msgstr "Hash-Version des Commit-Graph %X stimmt nicht mit Version %X überein."14481449#: commit-graph.c:2071450msgid "commit-graph chunk lookup table entry missing; file may be incomplete"1451msgstr ""1452"fehlender Tabelleneintrag für Commit-Graph Chunk-Lookup; Datei "1453"möglicherweise unvollständig"14541455#: commit-graph.c:2181456#, c-format1457msgid "commit-graph improper chunk offset %08x%08x"1458msgstr "Unzulässiger Commit-Graph Chunk-Offset %08x%08x"14591460#: commit-graph.c:2551461#, c-format1462msgid "commit-graph chunk id %08x appears multiple times"1463msgstr "Commit-Graph Chunk-Id %08x kommt mehrfach vor."14641465#: commit-graph.c:3901466#, c-format1467msgid "could not find commit %s"1468msgstr "Konnte Commit %s nicht finden."14691470#: commit-graph.c:732 builtin/pack-objects.c:26491471#, c-format1472msgid "unable to get type of object %s"1473msgstr "Konnte Art von Objekt '%s' nicht bestimmen."14741475#: commit-graph.c:7651476msgid "Loading known commits in commit graph"1477msgstr "Lade bekannte Commits in Commit-Graph"14781479#: commit-graph.c:7811480msgid "Expanding reachable commits in commit graph"1481msgstr "Erweitere erreichbare Commits in Commit-Graph"14821483#: commit-graph.c:7931484msgid "Clearing commit marks in commit graph"1485msgstr "Lösche Commit-Markierungen in Commit-Graph"14861487#: commit-graph.c:8131488msgid "Computing commit graph generation numbers"1489msgstr "Commit-Graph Generierungsnummern berechnen"14901491#: commit-graph.c:9301492#, c-format1493msgid "Finding commits for commit graph in %d pack"1494msgid_plural "Finding commits for commit graph in %d packs"1495msgstr[0] "Suche Commits für Commit-Graph in %d Paket"1496msgstr[1] "Suche Commits für Commit-Graph in %d Paketen"14971498#: commit-graph.c:9431499#, c-format1500msgid "error adding pack %s"1501msgstr "Fehler beim Hinzufügen von Paket %s."15021503#: commit-graph.c:9451504#, c-format1505msgid "error opening index for %s"1506msgstr "Fehler beim Öffnen des Index für %s."15071508#: commit-graph.c:9591509#, c-format1510msgid "Finding commits for commit graph from %d ref"1511msgid_plural "Finding commits for commit graph from %d refs"1512msgstr[0] "Suche Commits für Commit-Graph in %d Referenz"1513msgstr[1] "Suche Commits für Commit-Graph in %d Referenzen"15141515#: commit-graph.c:9911516msgid "Finding commits for commit graph among packed objects"1517msgstr "Suche Commits für Commit-Graph in gepackten Objekten"15181519#: commit-graph.c:10041520msgid "Counting distinct commits in commit graph"1521msgstr "Zähle Commits in Commit-Graph"15221523#: commit-graph.c:10171524#, c-format1525msgid "the commit graph format cannot write %d commits"1526msgstr "Das Commit-Graph Format kann nicht %d Commits schreiben."15271528#: commit-graph.c:10261529msgid "Finding extra edges in commit graph"1530msgstr "Suche zusätzliche Ränder in Commit-Graph"15311532#: commit-graph.c:10501533msgid "too many commits to write graph"1534msgstr "Zu viele Commits zum Schreiben des Graphen."15351536#: commit-graph.c:1057 midx.c:8191537#, c-format1538msgid "unable to create leading directories of %s"1539msgstr "Konnte führende Verzeichnisse von '%s' nicht erstellen."15401541#: commit-graph.c:10971542#, c-format1543msgid "Writing out commit graph in %d pass"1544msgid_plural "Writing out commit graph in %d passes"1545msgstr[0] "Schreibe Commit-Graph in %d Durchgang"1546msgstr[1] "Schreibe Commit-Graph in %d Durchgängen"15471548#: commit-graph.c:11621549msgid "the commit-graph file has incorrect checksum and is likely corrupt"1550msgstr ""1551"Die Commit-Graph-Datei hat eine falsche Prüfsumme und ist wahrscheinlich "1552"beschädigt."15531554#: commit-graph.c:11721555#, c-format1556msgid "commit-graph has incorrect OID order: %s then %s"1557msgstr "Commit-Graph hat fehlerhafte OID-Reihenfolge: %s dann %s"15581559#: commit-graph.c:1182 commit-graph.c:11971560#, c-format1561msgid "commit-graph has incorrect fanout value: fanout[%d] = %u != %u"1562msgstr "Commit-Graph hat fehlerhaften Fanout-Wert: fanout[%d] = %u != %u"15631564#: commit-graph.c:11891565#, c-format1566msgid "failed to parse commit %s from commit-graph"1567msgstr "Konnte Commit %s von Commit-Graph nicht parsen."15681569#: commit-graph.c:12061570msgid "Verifying commits in commit graph"1571msgstr "Commit in Commit-Graph überprüfen"15721573#: commit-graph.c:12191574#, c-format1575msgid "failed to parse commit %s from object database for commit-graph"1576msgstr ""1577"Fehler beim Parsen des Commits %s von Objekt-Datenbank für Commit-Graph"15781579#: commit-graph.c:12261580#, c-format1581msgid "root tree OID for commit %s in commit-graph is %s != %s"1582msgstr ""1583"OID des Wurzelverzeichnisses für Commit %s in Commit-Graph ist %s != %s"15841585#: commit-graph.c:12361586#, c-format1587msgid "commit-graph parent list for commit %s is too long"1588msgstr "Commit-Graph Vorgänger-Liste für Commit %s ist zu lang"15891590#: commit-graph.c:12421591#, c-format1592msgid "commit-graph parent for %s is %s != %s"1593msgstr "Commit-Graph-Vorgänger für %s ist %s != %s"15941595#: commit-graph.c:12551596#, c-format1597msgid "commit-graph parent list for commit %s terminates early"1598msgstr "Commit-Graph Vorgänger-Liste für Commit %s endet zu früh"15991600#: commit-graph.c:12601601#, c-format1602msgid ""1603"commit-graph has generation number zero for commit %s, but non-zero elsewhere"1604msgstr ""1605"Commit-Graph hat Generationsnummer null für Commit %s, aber sonst ungleich "1606"null"16071608#: commit-graph.c:12641609#, c-format1610msgid ""1611"commit-graph has non-zero generation number for commit %s, but zero elsewhere"1612msgstr ""1613"Commit-Graph hat Generationsnummer ungleich null für Commit %s, aber sonst "1614"null"16151616#: commit-graph.c:12791617#, c-format1618msgid "commit-graph generation for commit %s is %u != %u"1619msgstr "Commit-Graph Erstellung für Commit %s ist %u != %u"16201621#: commit-graph.c:12851622#, c-format1623msgid "commit date for commit %s in commit-graph is %<PRIuMAX> != %<PRIuMAX>"1624msgstr ""1625"Commit-Datum für Commit %s in Commit-Graph ist %<PRIuMAX> != %<PRIuMAX>"16261627#: compat/obstack.c:406 compat/obstack.c:4081628msgid "memory exhausted"1629msgstr "Speicher verbraucht"16301631#: config.c:1231632#, c-format1633msgid ""1634"exceeded maximum include depth (%d) while including\n"1635"\t%s\n"1636"from\n"1637"\t%s\n"1638"This might be due to circular includes."1639msgstr ""1640"Maximale Include-Tiefe (%d) beim Einbinden von\n"1641"\t%s\n"1642"von\n"1643"\t%s\n"1644"überschritten.\n"1645"Das könnte durch zirkulare Includes entstanden sein."16461647#: config.c:1391648#, c-format1649msgid "could not expand include path '%s'"1650msgstr "Konnte Include-Pfad '%s' nicht erweitern."16511652#: config.c:1501653msgid "relative config includes must come from files"1654msgstr "Relative Includes von Konfigurationen müssen aus Dateien kommen."16551656#: config.c:1901657msgid "relative config include conditionals must come from files"1658msgstr ""1659"Bedingungen für das Einbinden von Konfigurationen aus relativen Pfaden "1660"müssen\n"1661"aus Dateien kommen."16621663#: config.c:3481664#, c-format1665msgid "key does not contain a section: %s"1666msgstr "Schlüssel enthält keine Sektion: %s"16671668#: config.c:3541669#, c-format1670msgid "key does not contain variable name: %s"1671msgstr "Schlüssel enthält keinen Variablennamen: %s"16721673#: config.c:378 sequencer.c:24591674#, c-format1675msgid "invalid key: %s"1676msgstr "Ungültiger Schlüssel: %s"16771678#: config.c:3841679#, c-format1680msgid "invalid key (newline): %s"1681msgstr "Ungültiger Schlüssel (neue Zeile): %s"16821683#: config.c:420 config.c:4321684#, c-format1685msgid "bogus config parameter: %s"1686msgstr "Fehlerhafter Konfigurationsparameter: %s"16871688#: config.c:4671689#, c-format1690msgid "bogus format in %s"1691msgstr "Fehlerhaftes Format in %s"16921693#: config.c:7931694#, c-format1695msgid "bad config line %d in blob %s"1696msgstr "Ungültige Konfigurationszeile %d in Blob %s"16971698#: config.c:7971699#, c-format1700msgid "bad config line %d in file %s"1701msgstr "Ungültige Konfigurationszeile %d in Datei %s"17021703#: config.c:8011704#, c-format1705msgid "bad config line %d in standard input"1706msgstr "Ungültige Konfigurationszeile %d in Standard-Eingabe"17071708#: config.c:8051709#, c-format1710msgid "bad config line %d in submodule-blob %s"1711msgstr "Ungültige Konfigurationszeile %d in Submodul-Blob %s"17121713#: config.c:8091714#, c-format1715msgid "bad config line %d in command line %s"1716msgstr "Ungültige Konfigurationszeile %d in Kommandozeile %s"17171718#: config.c:8131719#, c-format1720msgid "bad config line %d in %s"1721msgstr "Ungültige Konfigurationszeile %d in %s"17221723#: config.c:9521724msgid "out of range"1725msgstr "Außerhalb des Bereichs"17261727#: config.c:9521728msgid "invalid unit"1729msgstr "Ungültige Einheit"17301731#: config.c:9581732#, c-format1733msgid "bad numeric config value '%s' for '%s': %s"1734msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s': %s"17351736#: config.c:9631737#, c-format1738msgid "bad numeric config value '%s' for '%s' in blob %s: %s"1739msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Blob %s: %s"17401741#: config.c:9661742#, c-format1743msgid "bad numeric config value '%s' for '%s' in file %s: %s"1744msgstr ""1745"Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Datei %s: %s"17461747#: config.c:9691748#, c-format1749msgid "bad numeric config value '%s' for '%s' in standard input: %s"1750msgstr ""1751"Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Standard-Eingabe: "1752"%s"17531754#: config.c:9721755#, c-format1756msgid "bad numeric config value '%s' for '%s' in submodule-blob %s: %s"1757msgstr ""1758"Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Submodul-Blob %s: "1759"%s"17601761#: config.c:9751762#, c-format1763msgid "bad numeric config value '%s' for '%s' in command line %s: %s"1764msgstr ""1765"Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Befehlszeile %s: "1766"%s"17671768#: config.c:9781769#, c-format1770msgid "bad numeric config value '%s' for '%s' in %s: %s"1771msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in %s: %s"17721773#: config.c:10731774#, c-format1775msgid "failed to expand user dir in: '%s'"1776msgstr "Fehler beim Erweitern des Nutzerverzeichnisses in: '%s'"17771778#: config.c:10821779#, c-format1780msgid "'%s' for '%s' is not a valid timestamp"1781msgstr "'%s' ist kein gültiger Zeitstempel für '%s'"17821783#: config.c:11731784#, c-format1785msgid "abbrev length out of range: %d"1786msgstr "Länge für Abkürzung von Commit-IDs außerhalb des Bereichs: %d"17871788#: config.c:1187 config.c:11981789#, c-format1790msgid "bad zlib compression level %d"1791msgstr "ungültiger zlib Komprimierungsgrad %d"17921793#: config.c:12901794msgid "core.commentChar should only be one character"1795msgstr "core.commentChar sollte nur ein Zeichen sein"17961797#: config.c:13231798#, c-format1799msgid "invalid mode for object creation: %s"1800msgstr "Ungültiger Modus für Objekterstellung: %s"18011802#: config.c:13951803#, c-format1804msgid "malformed value for %s"1805msgstr "Ungültiger Wert für %s."18061807#: config.c:14211808#, c-format1809msgid "malformed value for %s: %s"1810msgstr "Ungültiger Wert für %s: %s"18111812#: config.c:14221813msgid "must be one of nothing, matching, simple, upstream or current"1814msgstr ""1815"Muss einer von diesen sein: nothing, matching, simple, upstream, current"18161817#: config.c:1483 builtin/pack-objects.c:33971818#, c-format1819msgid "bad pack compression level %d"1820msgstr "ungültiger Komprimierungsgrad (%d) für Paketierung"18211822#: config.c:16041823#, c-format1824msgid "unable to load config blob object '%s'"1825msgstr "Konnte Blob-Objekt '%s' für Konfiguration nicht laden."18261827#: config.c:16071828#, c-format1829msgid "reference '%s' does not point to a blob"1830msgstr "Referenz '%s' zeigt auf keinen Blob."18311832#: config.c:16241833#, c-format1834msgid "unable to resolve config blob '%s'"1835msgstr "Konnte Blob '%s' für Konfiguration nicht auflösen."18361837#: config.c:16541838#, c-format1839msgid "failed to parse %s"1840msgstr "Fehler beim Parsen von %s."18411842#: config.c:17101843msgid "unable to parse command-line config"1844msgstr ""1845"Konnte die über die Befehlszeile angegebene Konfiguration nicht parsen."18461847#: config.c:20591848msgid "unknown error occurred while reading the configuration files"1849msgstr ""1850"Es trat ein unbekannter Fehler beim Lesen der Konfigurationsdateien auf."18511852#: config.c:22291853#, c-format1854msgid "Invalid %s: '%s'"1855msgstr "Ungültiger %s: '%s'"18561857#: config.c:22721858#, c-format1859msgid "unknown core.untrackedCache value '%s'; using 'keep' default value"1860msgstr ""1861"Unbekannter Wert '%s' in core.untrackedCache; benutze Standardwert 'keep'"18621863#: config.c:22981864#, c-format1865msgid "splitIndex.maxPercentChange value '%d' should be between 0 and 100"1866msgstr ""1867"Der Wert '%d' von splitIndex.maxPercentChange sollte zwischen 0 und 100 "1868"liegen."18691870#: config.c:23441871#, c-format1872msgid "unable to parse '%s' from command-line config"1873msgstr ""1874"Konnte Wert '%s' aus der über die Befehlszeile angegebenen Konfiguration\n"1875"nicht parsen."18761877#: config.c:23461878#, c-format1879msgid "bad config variable '%s' in file '%s' at line %d"1880msgstr "ungültige Konfigurationsvariable '%s' in Datei '%s' bei Zeile %d"18811882#: config.c:24271883#, c-format1884msgid "invalid section name '%s'"1885msgstr "Ungültiger Sektionsname '%s'"18861887#: config.c:24591888#, c-format1889msgid "%s has multiple values"1890msgstr "%s hat mehrere Werte"18911892#: config.c:24881893#, c-format1894msgid "failed to write new configuration file %s"1895msgstr "Konnte neue Konfigurationsdatei '%s' nicht schreiben."18961897#: config.c:2740 config.c:30641898#, c-format1899msgid "could not lock config file %s"1900msgstr "Konnte Konfigurationsdatei '%s' nicht sperren."19011902#: config.c:27511903#, c-format1904msgid "opening %s"1905msgstr "Öffne %s"19061907#: config.c:2786 builtin/config.c:3281908#, c-format1909msgid "invalid pattern: %s"1910msgstr "Ungültiges Muster: %s"19111912#: config.c:28111913#, c-format1914msgid "invalid config file %s"1915msgstr "Ungültige Konfigurationsdatei %s"19161917#: config.c:2824 config.c:30771918#, c-format1919msgid "fstat on %s failed"1920msgstr "fstat auf %s fehlgeschlagen"19211922#: config.c:28351923#, c-format1924msgid "unable to mmap '%s'"1925msgstr "mmap für '%s' fehlgeschlagen"19261927#: config.c:2844 config.c:30821928#, c-format1929msgid "chmod on %s failed"1930msgstr "chmod auf %s fehlgeschlagen"19311932#: config.c:2929 config.c:31791933#, c-format1934msgid "could not write config file %s"1935msgstr "Konnte Konfigurationsdatei %s nicht schreiben."19361937#: config.c:29631938#, c-format1939msgid "could not set '%s' to '%s'"1940msgstr "Konnte '%s' nicht zu '%s' setzen."19411942#: config.c:2965 builtin/remote.c:7821943#, c-format1944msgid "could not unset '%s'"1945msgstr "Konnte '%s' nicht aufheben."19461947#: config.c:30551948#, c-format1949msgid "invalid section name: %s"1950msgstr "Ungültiger Sektionsname: %s"19511952#: config.c:32221953#, c-format1954msgid "missing value for '%s'"1955msgstr "Fehlender Wert für '%s'"19561957#: connect.c:611958msgid "the remote end hung up upon initial contact"1959msgstr "Die Gegenseite hat nach dem ersten Kontakt abgebrochen."19601961#: connect.c:631962msgid ""1963"Could not read from remote repository.\n"1964"\n"1965"Please make sure you have the correct access rights\n"1966"and the repository exists."1967msgstr ""1968"Konnte nicht vom Remote-Repository lesen.\n"1969"\n"1970"Bitte stellen Sie sicher, dass die korrekten Zugriffsberechtigungen "1971"bestehen\n"1972"und das Repository existiert."19731974#: connect.c:811975#, c-format1976msgid "server doesn't support '%s'"1977msgstr "Der Server unterstützt kein '%s'."19781979#: connect.c:1031980#, c-format1981msgid "server doesn't support feature '%s'"1982msgstr "Der Server unterstützt das Feature '%s' nicht."19831984#: connect.c:1141985msgid "expected flush after capabilities"1986msgstr "Erwartete Flush nach Fähigkeiten."19871988#: connect.c:2331989#, c-format1990msgid "ignoring capabilities after first line '%s'"1991msgstr "Ignoriere Fähigkeiten nach der ersten Zeile '%s'."19921993#: connect.c:2521994msgid "protocol error: unexpected capabilities^{}"1995msgstr "Protokollfehler: unerwartetes capabilities^{}"19961997#: connect.c:2731998#, c-format1999msgid "protocol error: expected shallow sha-1, got '%s'"2000msgstr "Protokollfehler: shallow SHA-1 erwartet, '%s' bekommen"20012002#: connect.c:2752003msgid "repository on the other end cannot be shallow"2004msgstr ""2005"Repository auf der Gegenseite kann keine unvollständige Historie (shallow) "2006"enthalten"20072008#: connect.c:3132009msgid "invalid packet"2010msgstr "Ungültiges Paket."20112012#: connect.c:3332013#, c-format2014msgid "protocol error: unexpected '%s'"2015msgstr "Protokollfehler: unerwartetes '%s'"20162017#: connect.c:4412018#, c-format2019msgid "invalid ls-refs response: %s"2020msgstr "Ungültige ls-refs Antwort: %s"20212022#: connect.c:4452023msgid "expected flush after ref listing"2024msgstr "Erwartete Flush nach Auflistung der Referenzen."20252026#: connect.c:5442027#, c-format2028msgid "protocol '%s' is not supported"2029msgstr "Protokoll '%s' wird nicht unterstützt."20302031#: connect.c:5952032msgid "unable to set SO_KEEPALIVE on socket"2033msgstr "Kann SO_KEEPALIVE bei Socket nicht setzen."20342035#: connect.c:635 connect.c:6982036#, c-format2037msgid "Looking up %s ... "2038msgstr "Suche nach %s ..."20392040#: connect.c:6392041#, c-format2042msgid "unable to look up %s (port %s) (%s)"2043msgstr "Fehler bei Suche nach %s (Port %s) (%s)."20442045#. TRANSLATORS: this is the end of "Looking up %s ... "2046#: connect.c:643 connect.c:7142047#, c-format2048msgid ""2049"done.\n"2050"Connecting to %s (port %s) ... "2051msgstr ""2052"Fertig.\n"2053"Verbinde nach %s (Port %s) ... "20542055#: connect.c:665 connect.c:7422056#, c-format2057msgid ""2058"unable to connect to %s:\n"2059"%s"2060msgstr ""2061"Konnte nicht nach %s verbinden:\n"2062"%s"20632064#. TRANSLATORS: this is the end of "Connecting to %s (port %s) ... "2065#: connect.c:671 connect.c:7482066msgid "done."2067msgstr "Fertig."20682069#: connect.c:7022070#, c-format2071msgid "unable to look up %s (%s)"2072msgstr "Fehler bei der Suche nach %s (%s)"20732074#: connect.c:7082075#, c-format2076msgid "unknown port %s"2077msgstr "Unbekannter Port %s"20782079#: connect.c:845 connect.c:11712080#, c-format2081msgid "strange hostname '%s' blocked"2082msgstr "Merkwürdigen Hostnamen '%s' blockiert."20832084#: connect.c:8472085#, c-format2086msgid "strange port '%s' blocked"2087msgstr "Merkwürdigen Port '%s' blockiert."20882089#: connect.c:8572090#, c-format2091msgid "cannot start proxy %s"2092msgstr "Kann Proxy %s nicht starten."20932094#: connect.c:9242095msgid "no path specified; see 'git help pull' for valid url syntax"2096msgstr ""2097"Kein Pfad angegeben; siehe 'git help pull' für eine gültige URL-Syntax."20982099#: connect.c:11192100msgid "ssh variant 'simple' does not support -4"2101msgstr "SSH-Variante 'simple' unterstützt kein -4."21022103#: connect.c:11312104msgid "ssh variant 'simple' does not support -6"2105msgstr "SSH-Variante 'simple' unterstützt kein -6."21062107#: connect.c:11482108msgid "ssh variant 'simple' does not support setting port"2109msgstr "SSH-Variante 'simple' unterstützt nicht das Setzen eines Ports."21102111#: connect.c:12602112#, c-format2113msgid "strange pathname '%s' blocked"2114msgstr "Merkwürdigen Pfadnamen '%s' blockiert."21152116#: connect.c:13072117msgid "unable to fork"2118msgstr "Kann Prozess nicht starten."21192120#: connected.c:85 builtin/fsck.c:221 builtin/prune.c:432121msgid "Checking connectivity"2122msgstr "Prüfe Konnektivität"21232124#: connected.c:972125msgid "Could not run 'git rev-list'"2126msgstr "Konnte 'git rev-list' nicht ausführen"21272128#: connected.c:1172129msgid "failed write to rev-list"2130msgstr "Fehler beim Schreiben nach rev-list"21312132#: connected.c:1242133msgid "failed to close rev-list's stdin"2134msgstr "Fehler beim Schließen von rev-list's Standard-Eingabe"21352136#: convert.c:1932137#, c-format2138msgid "illegal crlf_action %d"2139msgstr "Unerlaubte crlf_action %d"21402141#: convert.c:2062142#, c-format2143msgid "CRLF would be replaced by LF in %s"2144msgstr "CRLF würde in %s durch LF ersetzt werden."21452146#: convert.c:2082147#, c-format2148msgid ""2149"CRLF will be replaced by LF in %s.\n"2150"The file will have its original line endings in your working directory"2151msgstr ""2152"CRLF wird in %s durch LF ersetzt.\n"2153"Die Datei wird ihre ursprünglichen Zeilenenden im Arbeitsverzeichnis "2154"behalten."21552156#: convert.c:2162157#, c-format2158msgid "LF would be replaced by CRLF in %s"2159msgstr "LF würde in %s durch CRLF ersetzt werden."21602161#: convert.c:2182162#, c-format2163msgid ""2164"LF will be replaced by CRLF in %s.\n"2165"The file will have its original line endings in your working directory"2166msgstr ""2167"LF wird in %s durch CRLF ersetzt.\n"2168"Die Datei wird ihre ursprünglichen Zeilenenden im Arbeitsverzeichnis "2169"behalten."21702171#: convert.c:2792172#, c-format2173msgid "BOM is prohibited in '%s' if encoded as %s"2174msgstr "BOM ist in '%s' unzulässig, wenn als %s codiert."21752176#: convert.c:2862177#, c-format2178msgid ""2179"The file '%s' contains a byte order mark (BOM). Please use UTF-%s as working-"2180"tree-encoding."2181msgstr ""2182"Die Datei '%s' enthält ein Byte-Order-Mark (BOM). Bitte benutzen Sie UTF-%s\n"2183"als Codierung im Arbeitsverzeichnis."21842185#: convert.c:3042186#, c-format2187msgid "BOM is required in '%s' if encoded as %s"2188msgstr "BOM ist erforderlich in '%s', wenn als %s codiert."21892190#: convert.c:3062191#, c-format2192msgid ""2193"The file '%s' is missing a byte order mark (BOM). Please use UTF-%sBE or UTF-"2194"%sLE (depending on the byte order) as working-tree-encoding."2195msgstr ""2196"Der Datei '%s' fehlt ein Byte-Order-Mark (BOM). Bitte benutzen Sie UTF-%sBE\n"2197"oder UTF-%sLE (abhängig von der Byte-Reihenfolge) als Codierung im\n"2198"Arbeitsverzeichnis."21992200#: convert.c:424 convert.c:4952201#, c-format2202msgid "failed to encode '%s' from %s to %s"2203msgstr "Fehler beim Codieren von '%s' von %s nach %s."22042205#: convert.c:4672206#, c-format2207msgid "encoding '%s' from %s to %s and back is not the same"2208msgstr "Die Codierung '%s' von %s nach %s und zurück ist nicht dasselbe."22092210#: convert.c:6732211#, c-format2212msgid "cannot fork to run external filter '%s'"2213msgstr "Kann externen Filter '%s' nicht starten."22142215#: convert.c:6932216#, c-format2217msgid "cannot feed the input to external filter '%s'"2218msgstr "Kann Eingaben nicht an externen Filter '%s' übergeben."22192220#: convert.c:7002221#, c-format2222msgid "external filter '%s' failed %d"2223msgstr "Externer Filter '%s' fehlgeschlagen %d"22242225#: convert.c:735 convert.c:7382226#, c-format2227msgid "read from external filter '%s' failed"2228msgstr "Lesen von externem Filter '%s' fehlgeschlagen."22292230#: convert.c:741 convert.c:7962231#, c-format2232msgid "external filter '%s' failed"2233msgstr "Externer Filter '%s' fehlgeschlagen."22342235#: convert.c:8442236msgid "unexpected filter type"2237msgstr "Unerwartete Filterart."22382239#: convert.c:8552240msgid "path name too long for external filter"2241msgstr "Pfadname zu lang für externen Filter."22422243#: convert.c:9292244#, c-format2245msgid ""2246"external filter '%s' is not available anymore although not all paths have "2247"been filtered"2248msgstr ""2249"Externer Filter '%s' nicht mehr verfügbar. Nicht alle Pfade wurden gefiltert."22502251#: convert.c:12282252msgid "true/false are no valid working-tree-encodings"2253msgstr "true/false sind keine gültigen Codierungen im Arbeitsverzeichnis."22542255#: convert.c:1398 convert.c:14322256#, c-format2257msgid "%s: clean filter '%s' failed"2258msgstr "%s: clean-Filter '%s' fehlgeschlagen."22592260#: convert.c:14762261#, c-format2262msgid "%s: smudge filter %s failed"2263msgstr "%s: smudge-Filter '%s' fehlgeschlagen."22642265#: date.c:1372266msgid "in the future"2267msgstr "in der Zukunft"22682269#: date.c:1432270#, c-format2271msgid "%<PRIuMAX> second ago"2272msgid_plural "%<PRIuMAX> seconds ago"2273msgstr[0] "vor %<PRIuMAX> Sekunde"2274msgstr[1] "vor %<PRIuMAX> Sekunden"22752276#: date.c:1502277#, c-format2278msgid "%<PRIuMAX> minute ago"2279msgid_plural "%<PRIuMAX> minutes ago"2280msgstr[0] "vor %<PRIuMAX> Minute"2281msgstr[1] "vor %<PRIuMAX> Minuten"22822283#: date.c:1572284#, c-format2285msgid "%<PRIuMAX> hour ago"2286msgid_plural "%<PRIuMAX> hours ago"2287msgstr[0] "vor %<PRIuMAX> Stunde"2288msgstr[1] "vor %<PRIuMAX> Stunden"22892290#: date.c:1642291#, c-format2292msgid "%<PRIuMAX> day ago"2293msgid_plural "%<PRIuMAX> days ago"2294msgstr[0] "vor %<PRIuMAX> Tag"2295msgstr[1] "vor %<PRIuMAX> Tagen"22962297#: date.c:1702298#, c-format2299msgid "%<PRIuMAX> week ago"2300msgid_plural "%<PRIuMAX> weeks ago"2301msgstr[0] "vor %<PRIuMAX> Woche"2302msgstr[1] "vor %<PRIuMAX> Wochen"23032304#: date.c:1772305#, c-format2306msgid "%<PRIuMAX> month ago"2307msgid_plural "%<PRIuMAX> months ago"2308msgstr[0] "vor %<PRIuMAX> Monat"2309msgstr[1] "vor %<PRIuMAX> Monaten"23102311#: date.c:1882312#, c-format2313msgid "%<PRIuMAX> year"2314msgid_plural "%<PRIuMAX> years"2315msgstr[0] "vor %<PRIuMAX> Jahr"2316msgstr[1] "vor %<PRIuMAX> Jahren"23172318#. TRANSLATORS: "%s" is "<n> years"2319#: date.c:1912320#, c-format2321msgid "%s, %<PRIuMAX> month ago"2322msgid_plural "%s, %<PRIuMAX> months ago"2323msgstr[0] "%s, und %<PRIuMAX> Monat"2324msgstr[1] "%s, und %<PRIuMAX> Monaten"23252326#: date.c:196 date.c:2012327#, c-format2328msgid "%<PRIuMAX> year ago"2329msgid_plural "%<PRIuMAX> years ago"2330msgstr[0] "vor %<PRIuMAX> Jahr"2331msgstr[1] "vor %<PRIuMAX> Jahren"23322333#: delta-islands.c:2722334msgid "Propagating island marks"2335msgstr "Erzeuge Delta-Island Markierungen"23362337#: delta-islands.c:2902338#, c-format2339msgid "bad tree object %s"2340msgstr "Ungültiges Tree-Objekt %s."23412342#: delta-islands.c:3342343#, c-format2344msgid "failed to load island regex for '%s': %s"2345msgstr ""2346"Fehler beim Laden des regulären Ausdrucks des Delta-Island für '%s': %s"23472348#: delta-islands.c:3902349#, c-format2350msgid "island regex from config has too many capture groups (max=%d)"2351msgstr ""2352"Regulärer Ausdruck des Delta-Island aus Konfiguration hat zu\n"2353"viele Capture-Gruppen (maximal %d)."23542355#: delta-islands.c:4662356#, c-format2357msgid "Marked %d islands, done.\n"2358msgstr "%d Delta-Islands markiert, fertig.\n"23592360#: diffcore-order.c:242361#, c-format2362msgid "failed to read orderfile '%s'"2363msgstr "Fehler beim Lesen der Reihenfolgedatei '%s'."23642365#: diffcore-rename.c:5442366msgid "Performing inexact rename detection"2367msgstr "Führe Erkennung für ungenaue Umbenennung aus"23682369#: diff-no-index.c:2382370msgid "git diff --no-index [<options>] <path> <path>"2371msgstr "git diff --no-index [<Optionen>] <Pfad> <Pfad>"23722373#: diff-no-index.c:2632374msgid ""2375"Not a git repository. Use --no-index to compare two paths outside a working "2376"tree"2377msgstr ""2378"Kein Git-Repository. Nutzen Sie --no-index, um zwei Pfade außerhalb des "2379"Arbeitsverzeichnisses zu vergleichen."23802381#: diff.c:1552382#, c-format2383msgid " Failed to parse dirstat cut-off percentage '%s'\n"2384msgstr ""2385" Fehler beim Parsen des abgeschnittenen \"dirstat\" Prozentsatzes '%s'\n"23862387#: diff.c:1602388#, c-format2389msgid " Unknown dirstat parameter '%s'\n"2390msgstr " Unbekannter \"dirstat\" Parameter '%s'\n"23912392#: diff.c:2962393msgid ""2394"color moved setting must be one of 'no', 'default', 'blocks', 'zebra', "2395"'dimmed-zebra', 'plain'"2396msgstr ""2397"\"color moved\"-Einstellung muss eines von diesen sein: 'no', 'default', "2398"'blocks', 'zebra', 'dimmed_zebra', 'plain'"23992400#: diff.c:3242401#, c-format2402msgid ""2403"unknown color-moved-ws mode '%s', possible values are 'ignore-space-change', "2404"'ignore-space-at-eol', 'ignore-all-space', 'allow-indentation-change'"2405msgstr ""2406"Unbekannter color-moved-ws Modus '%s', mögliche Werte sind 'ignore-space-"2407"change', 'ignore-space-at-eol', 'ignore-all-space', 'allow-identation-change'"24082409#: diff.c:3322410msgid ""2411"color-moved-ws: allow-indentation-change cannot be combined with other "2412"whitespace modes"2413msgstr ""2414"color-moved-ws: allow-indentation-change kann nicht mit anderen\n"2415"Whitespace-Modi kombiniert werden."24162417#: diff.c:4052418#, c-format2419msgid "Unknown value for 'diff.submodule' config variable: '%s'"2420msgstr "Unbekannter Wert in Konfigurationsvariable 'diff.dirstat': '%s'"24212422#: diff.c:4652423#, c-format2424msgid ""2425"Found errors in 'diff.dirstat' config variable:\n"2426"%s"2427msgstr ""2428"Fehler in 'diff.dirstat' Konfigurationsvariable gefunden:\n"2429"%s"24302431#: diff.c:42102432#, c-format2433msgid "external diff died, stopping at %s"2434msgstr "externes Diff-Programm unerwartet beendet, angehalten bei %s"24352436#: diff.c:45552437msgid "--name-only, --name-status, --check and -s are mutually exclusive"2438msgstr ""2439"--name-only, --name-status, --check und -s schließen sich gegenseitig aus"24402441#: diff.c:45582442msgid "-G, -S and --find-object are mutually exclusive"2443msgstr "-G, -S und --find-object schließen sich gegenseitig aus"24442445#: diff.c:46362446msgid "--follow requires exactly one pathspec"2447msgstr "--follow erfordert genau eine Pfadspezifikation"24482449#: diff.c:46842450#, c-format2451msgid "invalid --stat value: %s"2452msgstr "Ungültiger --stat Wert: %s"24532454#: diff.c:4689 diff.c:4694 diff.c:4699 diff.c:4704 diff.c:52172455#: parse-options.c:199 parse-options.c:2032456#, c-format2457msgid "%s expects a numerical value"2458msgstr "%s erwartet einen numerischen Wert."24592460#: diff.c:47212461#, c-format2462msgid ""2463"Failed to parse --dirstat/-X option parameter:\n"2464"%s"2465msgstr ""2466"Fehler beim Parsen des --dirstat/-X Optionsparameters:\n"2467"%s"24682469#: diff.c:48062470#, c-format2471msgid "unknown change class '%c' in --diff-filter=%s"2472msgstr "Unbekannte Änderungsklasse '%c' in --diff-filter=%s"24732474#: diff.c:48302475#, c-format2476msgid "unknown value after ws-error-highlight=%.*s"2477msgstr "Unbekannter Wert nach ws-error-highlight=%.*s"24782479#: diff.c:48442480#, c-format2481msgid "unable to resolve '%s'"2482msgstr "konnte '%s' nicht auflösen"24832484#: diff.c:4894 diff.c:49002485#, c-format2486msgid "%s expects <n>/<m> form"2487msgstr "%s erwartet die Form <n>/<m>"24882489#: diff.c:49122490#, c-format2491msgid "%s expects a character, got '%s'"2492msgstr "%s erwartet ein Zeichen, '%s' bekommen"24932494#: diff.c:49332495#, c-format2496msgid "bad --color-moved argument: %s"2497msgstr "Ungültiges --color-moved Argument: %s"24982499#: diff.c:49522500#, c-format2501msgid "invalid mode '%s' in --color-moved-ws"2502msgstr "Ungültiger Modus '%s' in --color-moved-ws"25032504#: diff.c:49922505msgid ""2506"option diff-algorithm accepts \"myers\", \"minimal\", \"patience\" and "2507"\"histogram\""2508msgstr ""2509"Option diff-algorithm akzeptiert: \"myers\", \"minimal\", \"patience\" and "2510"\"histogram\""25112512#: diff.c:5028 diff.c:50482513#, c-format2514msgid "invalid argument to %s"2515msgstr "Ungültiges Argument für %s"25162517#: diff.c:51862518#, c-format2519msgid "failed to parse --submodule option parameter: '%s'"2520msgstr "Fehler beim Parsen des --submodule Optionsparameters: '%s'"25212522#: diff.c:52422523#, c-format2524msgid "bad --word-diff argument: %s"2525msgstr "Ungültiges --word-diff Argument: %s"25262527#: diff.c:52652528msgid "Diff output format options"2529msgstr "Diff-Optionen zu Ausgabeformaten"25302531#: diff.c:5267 diff.c:52732532msgid "generate patch"2533msgstr "Erzeuge Patch"25342535#: diff.c:5270 builtin/log.c:1672536msgid "suppress diff output"2537msgstr "Ausgabe der Unterschiede unterdrücken"25382539#: diff.c:5275 diff.c:5389 diff.c:53962540msgid "<n>"2541msgstr "<n>"25422543#: diff.c:5276 diff.c:52792544msgid "generate diffs with <n> lines context"2545msgstr "Erstelle Unterschiede mit <n> Zeilen des Kontextes"25462547#: diff.c:52812548msgid "generate the diff in raw format"2549msgstr "Erstelle Unterschiede im Rohformat"25502551#: diff.c:52842552msgid "synonym for '-p --raw'"2553msgstr "Synonym für '-p --raw'"25542555#: diff.c:52882556msgid "synonym for '-p --stat'"2557msgstr "Synonym für '-p --stat'"25582559#: diff.c:52922560msgid "machine friendly --stat"2561msgstr "maschinenlesbare Ausgabe von --stat"25622563#: diff.c:52952564msgid "output only the last line of --stat"2565msgstr "nur die letzte Zeile von --stat ausgeben"25662567#: diff.c:5297 diff.c:53052568msgid "<param1,param2>..."2569msgstr "<Parameter1,Parameter2>..."25702571#: diff.c:52982572msgid ""2573"output the distribution of relative amount of changes for each sub-directory"2574msgstr ""2575"Gebe die Verteilung des relativen Umfangs der Änderungen für jedes "2576"Unterverzeichnis aus"25772578#: diff.c:53022579msgid "synonym for --dirstat=cumulative"2580msgstr "Synonym für --dirstat=cumulative"25812582#: diff.c:53062583msgid "synonym for --dirstat=files,param1,param2..."2584msgstr "Synonym für --dirstat=files,Parameter1,Parameter2..."25852586#: diff.c:53102587msgid "warn if changes introduce conflict markers or whitespace errors"2588msgstr ""2589"Warnen, wenn Änderungen Konfliktmarker oder Whitespace-Fehler einbringen"25902591#: diff.c:53132592msgid "condensed summary such as creations, renames and mode changes"2593msgstr ""2594"Gekürzte Zusammenfassung, wie z.B. Erstellungen, Umbenennungen und "2595"Änderungen der Datei-Rechte"25962597#: diff.c:53162598msgid "show only names of changed files"2599msgstr "nur Dateinamen der geänderten Dateien anzeigen"26002601#: diff.c:53192602msgid "show only names and status of changed files"2603msgstr "nur Dateinamen und Status der geänderten Dateien anzeigen"26042605#: diff.c:53212606msgid "<width>[,<name-width>[,<count>]]"2607msgstr "<Breite>[,<Namens-Breite>[,<Anzahl>]]"26082609#: diff.c:53222610msgid "generate diffstat"2611msgstr "Generiere Zusammenfassung der Unterschiede"26122613#: diff.c:5324 diff.c:5327 diff.c:53302614msgid "<width>"2615msgstr "<Breite>"26162617#: diff.c:53252618msgid "generate diffstat with a given width"2619msgstr "Erzeuge Zusammenfassung der Unterschiede mit gegebener Breite"26202621#: diff.c:53282622msgid "generate diffstat with a given name width"2623msgstr "Erzeuge Zusammenfassung der Unterschiede mit gegebener Namens-Breite"26242625#: diff.c:53312626msgid "generate diffstat with a given graph width"2627msgstr "Erzeuge Zusammenfassung der Unterschiede mit gegebener Graph-Breite"26282629#: diff.c:53332630msgid "<count>"2631msgstr "<Anzahl>"26322633#: diff.c:53342634msgid "generate diffstat with limited lines"2635msgstr "Erzeuge Zusammenfassung der Unterschiede mit begrenzten Zeilen"26362637#: diff.c:53372638msgid "generate compact summary in diffstat"2639msgstr "Erzeuge kompakte Zusammenstellung in Zusammenfassung der Unterschiede"26402641#: diff.c:53402642msgid "output a binary diff that can be applied"2643msgstr "Gebe eine binäre Differenz aus, dass angewendet werden kann"26442645#: diff.c:53432646msgid "show full pre- and post-image object names on the \"index\" lines"2647msgstr "Zeige vollständige Objekt-Namen in den \"index\"-Zeilen"26482649#: diff.c:53452650msgid "show colored diff"2651msgstr "Zeige farbige Unterschiede"26522653#: diff.c:53462654msgid "<kind>"2655msgstr "<Art>"26562657#: diff.c:53472658msgid ""2659"highlight whitespace errors in the 'context', 'old' or 'new' lines in the "2660"diff"2661msgstr ""2662"Hebe Whitespace-Fehler in den Zeilen 'context', 'old' oder 'new' bei den "2663"Unterschieden hervor"26642665#: diff.c:53502666msgid ""2667"do not munge pathnames and use NULs as output field terminators in --raw or "2668"--numstat"2669msgstr ""2670"Verschleiere nicht die Pfadnamen und nutze NUL-Zeichen als Schlusszeichen in "2671"Ausgabefeldern bei --raw oder --numstat"26722673#: diff.c:5353 diff.c:5356 diff.c:5359 diff.c:54652674msgid "<prefix>"2675msgstr "<Präfix>"26762677#: diff.c:53542678msgid "show the given source prefix instead of \"a/\""2679msgstr "Zeige den gegebenen Quell-Präfix statt \"a/\""26802681#: diff.c:53572682msgid "show the given destination prefix instead of \"b/\""2683msgstr "Zeige den gegebenen Ziel-Präfix statt \"b/\""26842685#: diff.c:53602686msgid "prepend an additional prefix to every line of output"2687msgstr "Stelle einen zusätzlichen Präfix bei jeder Ausgabezeile voran"26882689#: diff.c:53632690msgid "do not show any source or destination prefix"2691msgstr "Zeige keine Quell- oder Ziel-Präfixe an"26922693#: diff.c:53662694msgid "show context between diff hunks up to the specified number of lines"2695msgstr ""2696"Zeige Kontext zwischen Unterschied-Blöcken bis zur angegebenen Anzahl von "2697"Zeilen."26982699#: diff.c:5370 diff.c:5375 diff.c:53802700msgid "<char>"2701msgstr "<Zeichen>"27022703#: diff.c:53712704msgid "specify the character to indicate a new line instead of '+'"2705msgstr "Das Zeichen festlegen, das eine neue Zeile kennzeichnet (statt '+')"27062707#: diff.c:53762708msgid "specify the character to indicate an old line instead of '-'"2709msgstr "Das Zeichen festlegen, das eine alte Zeile kennzeichnet (statt '-')"27102711#: diff.c:53812712msgid "specify the character to indicate a context instead of ' '"2713msgstr "Das Zeichen festlegen, das den Kontext kennzeichnet (statt ' ')"27142715#: diff.c:53842716msgid "Diff rename options"2717msgstr "Diff-Optionen zur Umbenennung"27182719#: diff.c:53852720msgid "<n>[/<m>]"2721msgstr "<n>[/<m>]"27222723#: diff.c:53862724msgid "break complete rewrite changes into pairs of delete and create"2725msgstr ""2726"Teile komplette Rewrite-Änderungen in Änderungen mit \"löschen\" und "2727"\"erstellen\""27282729#: diff.c:53902730msgid "detect renames"2731msgstr "Umbenennungen erkennen"27322733#: diff.c:53942734msgid "omit the preimage for deletes"2735msgstr "Preimage für Löschungen weglassen."27362737#: diff.c:53972738msgid "detect copies"2739msgstr "Kopien erkennen"27402741#: diff.c:54012742msgid "use unmodified files as source to find copies"2743msgstr "Nutze ungeänderte Dateien als Quelle zum Finden von Kopien"27442745#: diff.c:54032746msgid "disable rename detection"2747msgstr "Erkennung von Umbenennungen deaktivieren"27482749#: diff.c:54062750msgid "use empty blobs as rename source"2751msgstr "Nutze leere Blobs als Quelle von Umbennungen"27522753#: diff.c:54082754msgid "continue listing the history of a file beyond renames"2755msgstr "Fortführen der Auflistung der Historie einer Datei nach Umbennung"27562757#: diff.c:54112758msgid ""2759"prevent rename/copy detection if the number of rename/copy targets exceeds "2760"given limit"2761msgstr ""2762"Verhindere die Erkennung von Umbennungen und Kopien, wenn die Anzahl der "2763"Ziele für Umbennungen und Kopien das gegebene Limit überschreitet"27642765#: diff.c:54132766msgid "Diff algorithm options"2767msgstr "Diff Algorithmus-Optionen"27682769#: diff.c:54152770msgid "produce the smallest possible diff"2771msgstr "Erzeuge die kleinstmöglichen Änderungen"27722773#: diff.c:54182774msgid "ignore whitespace when comparing lines"2775msgstr "Whitespace-Änderungen beim Vergleich von Zeilen ignorieren"27762777#: diff.c:54212778msgid "ignore changes in amount of whitespace"2779msgstr "Änderungen bei der Anzahl von Whitespace ignorieren"27802781#: diff.c:54242782msgid "ignore changes in whitespace at EOL"2783msgstr "Whitespace-Änderungen am Zeilenende ignorieren"27842785#: diff.c:54272786msgid "ignore carrier-return at the end of line"2787msgstr "Ignoriere den Zeilenumbruch am Ende der Zeile"27882789#: diff.c:54302790msgid "ignore changes whose lines are all blank"2791msgstr "Ignoriere Änderungen in leeren Zeilen"27922793#: diff.c:54332794msgid "heuristic to shift diff hunk boundaries for easy reading"2795msgstr ""2796"Heuristik, um Grenzen der Änderungsblöcke für bessere Lesbarkeit zu "2797"verschieben"27982799#: diff.c:54362800msgid "generate diff using the \"patience diff\" algorithm"2801msgstr "Erzeuge Änderungen durch Nutzung des Algorithmus \"Patience Diff\""28022803#: diff.c:54402804msgid "generate diff using the \"histogram diff\" algorithm"2805msgstr "Erzeuge Änderungen durch Nutzung des Algorithmus \"Histogram Diff\""28062807#: diff.c:54422808msgid "<algorithm>"2809msgstr "<Algorithmus>"28102811#: diff.c:54432812msgid "choose a diff algorithm"2813msgstr "Ein Algorithmus für Änderungen wählen"28142815#: diff.c:54452816msgid "<text>"2817msgstr "<Text>"28182819#: diff.c:54462820msgid "generate diff using the \"anchored diff\" algorithm"2821msgstr "Erzeuge Änderungen durch Nutzung des Algorithmus \"Anchored Diff\""28222823#: diff.c:5448 diff.c:5457 diff.c:54602824msgid "<mode>"2825msgstr "<Modus>"28262827#: diff.c:54492828msgid "show word diff, using <mode> to delimit changed words"2829msgstr "Zeige Wort-Änderungen, nutze <Modus>, um Wörter abzugrenzen"28302831#: diff.c:5451 diff.c:5454 diff.c:54992832msgid "<regex>"2833msgstr "<Regex>"28342835#: diff.c:54522836msgid "use <regex> to decide what a word is"2837msgstr "Nutze <Regex>, um zu entscheiden, was ein Wort ist"28382839#: diff.c:54552840msgid "equivalent to --word-diff=color --word-diff-regex=<regex>"2841msgstr "Entsprechend wie --word-diff=color --word-diff-regex=<Regex>"28422843#: diff.c:54582844msgid "moved lines of code are colored differently"2845msgstr "Verschobene Codezeilen sind andersfarbig"28462847#: diff.c:54612848msgid "how white spaces are ignored in --color-moved"2849msgstr "Wie Whitespaces in --color-moved ignoriert werden"28502851#: diff.c:54642852msgid "Other diff options"2853msgstr "Andere Diff-Optionen"28542855#: diff.c:54662856msgid "when run from subdir, exclude changes outside and show relative paths"2857msgstr ""2858"Wenn vom Unterverzeichnis aufgerufen, schließe Änderungen außerhalb aus und "2859"zeige relative Pfade an"28602861#: diff.c:54702862msgid "treat all files as text"2863msgstr "alle Dateien als Text behandeln"28642865#: diff.c:54722866msgid "swap two inputs, reverse the diff"2867msgstr "Vertausche die beiden Eingaben und drehe die Änderungen um"28682869#: diff.c:54742870msgid "exit with 1 if there were differences, 0 otherwise"2871msgstr ""2872"Beende mit Exit-Status 1, wenn Änderungen vorhanden sind, andernfalls mit 0"28732874#: diff.c:54762875msgid "disable all output of the program"2876msgstr "Keine Ausgaben vom Programm"28772878#: diff.c:54782879msgid "allow an external diff helper to be executed"2880msgstr "Erlaube die Ausführung eines externes Programms für Änderungen"28812882#: diff.c:54802883msgid "run external text conversion filters when comparing binary files"2884msgstr ""2885"Führe externe Text-Konvertierungsfilter aus, wenn binäre Dateien vergleicht "2886"werden"28872888#: diff.c:54822889msgid "<when>"2890msgstr "<wann>"28912892#: diff.c:54832893msgid "ignore changes to submodules in the diff generation"2894msgstr ""2895"Änderungen in Submodulen während der Erstellung der Unterschiede ignorieren"28962897#: diff.c:54862898msgid "<format>"2899msgstr "<Format>"29002901#: diff.c:54872902msgid "specify how differences in submodules are shown"2903msgstr "Angeben, wie Unterschiede in Submodulen gezeigt werden"29042905#: diff.c:54912906msgid "hide 'git add -N' entries from the index"2907msgstr "verstecke 'git add -N' Einträge vom Index"29082909#: diff.c:54942910msgid "treat 'git add -N' entries as real in the index"2911msgstr "Behandle 'git add -N' Einträge im Index als echt"29122913#: diff.c:54962914msgid "<string>"2915msgstr "<Zeichenkette>"29162917#: diff.c:54972918msgid ""2919"look for differences that change the number of occurrences of the specified "2920"string"2921msgstr ""2922"Suche nach Unterschieden, welche die Anzahl des Vorkommens der angegebenen "2923"Zeichenkette verändern"29242925#: diff.c:55002926msgid ""2927"look for differences that change the number of occurrences of the specified "2928"regex"2929msgstr ""2930"Suche nach Unterschieden, welche die Anzahl des Vorkommens des angegebenen "2931"regulären Ausdrucks verändern"29322933#: diff.c:55032934msgid "show all changes in the changeset with -S or -G"2935msgstr "zeige alle Änderungen im Changeset mit -S oder -G"29362937#: diff.c:55062938msgid "treat <string> in -S as extended POSIX regular expression"2939msgstr ""2940"behandle <Zeichenkette> bei -S als erweiterten POSIX regulären Ausdruck"29412942#: diff.c:55092943msgid "control the order in which files appear in the output"2944msgstr ""2945"kontrolliere die Reihenfolge, in der die Dateien in der Ausgabe erscheinen"29462947#: diff.c:55102948msgid "<object-id>"2949msgstr "<Objekt-ID>"29502951#: diff.c:55112952msgid ""2953"look for differences that change the number of occurrences of the specified "2954"object"2955msgstr ""2956"Suche nach Unterschieden, welche die Anzahl des Vorkommens des angegebenen "2957"Objektes verändern"29582959#: diff.c:55132960msgid "[(A|C|D|M|R|T|U|X|B)...[*]]"2961msgstr "[(A|C|D|M|R|T|U|X|B)...[*]]"29622963#: diff.c:55142964msgid "select files by diff type"2965msgstr "Wähle Dateien anhand der Art der Änderung"29662967#: diff.c:55162968msgid "<file>"2969msgstr "<Datei>"29702971#: diff.c:55172972msgid "Output to a specific file"2973msgstr "Ausgabe zu einer bestimmten Datei"29742975#: diff.c:61502976msgid "inexact rename detection was skipped due to too many files."2977msgstr ""2978"Ungenaue Erkennung für Umbenennungen wurde aufgrund zu vieler Dateien\n"2979"übersprungen."29802981#: diff.c:61532982msgid "only found copies from modified paths due to too many files."2983msgstr "nur Kopien von geänderten Pfaden, aufgrund zu vieler Dateien, gefunden"29842985#: diff.c:61562986#, c-format2987msgid ""2988"you may want to set your %s variable to at least %d and retry the command."2989msgstr ""2990"Sie könnten die Variable %s auf mindestens %d setzen und den Befehl\n"2991"erneut versuchen."29922993#: dir.c:5372994#, c-format2995msgid "pathspec '%s' did not match any file(s) known to git"2996msgstr ""2997"Pfadspezifikation '%s' stimmt mit keinen git-bekannten Dateien überein."29982999#: dir.c:9263000#, c-format3001msgid "cannot use %s as an exclude file"3002msgstr "Kann %s nicht als exclude-Filter benutzen."30033004#: dir.c:18433005#, c-format3006msgid "could not open directory '%s'"3007msgstr "Konnte Verzeichnis '%s' nicht öffnen."30083009#: dir.c:20853010msgid "failed to get kernel name and information"3011msgstr "Fehler beim Sammeln von Namen und Informationen zum Kernel"30123013#: dir.c:22093014msgid "untracked cache is disabled on this system or location"3015msgstr ""3016"Cache für unversionierte Dateien ist auf diesem System oder\n"3017"für dieses Verzeichnis deaktiviert."30183019#: dir.c:30133020#, c-format3021msgid "index file corrupt in repo %s"3022msgstr "Index-Datei in Repository %s beschädigt."30233024#: dir.c:3058 dir.c:30633025#, c-format3026msgid "could not create directories for %s"3027msgstr "Konnte Verzeichnisse für '%s' nicht erstellen."30283029#: dir.c:30923030#, c-format3031msgid "could not migrate git directory from '%s' to '%s'"3032msgstr "Konnte Git-Verzeichnis nicht von '%s' nach '%s' migrieren."30333034#: editor.c:733035#, c-format3036msgid "hint: Waiting for your editor to close the file...%c"3037msgstr "Hinweis: Warte auf das Schließen der Datei durch Ihren Editor...%c"30383039#: entry.c:1783040msgid "Filtering content"3041msgstr "Filtere Inhalt"30423043#: entry.c:4763044#, c-format3045msgid "could not stat file '%s'"3046msgstr "Konnte Datei '%s' nicht lesen."30473048#: environment.c:1503049#, c-format3050msgid "bad git namespace path \"%s\""3051msgstr "Ungültiger Git-Namespace-Pfad \"%s\""30523053#: environment.c:3323054#, c-format3055msgid "could not set GIT_DIR to '%s'"3056msgstr "Konnte GIT_DIR nicht zu '%s' setzen."30573058#: exec-cmd.c:3633059#, c-format3060msgid "too many args to run %s"3061msgstr "Zu viele Argumente angegeben, um %s auszuführen."30623063#: fetch-object.c:173064msgid "Remote with no URL"3065msgstr "Remote-Repository ohne URL"30663067#: fetch-pack.c:1513068msgid "git fetch-pack: expected shallow list"3069msgstr "git fetch-pack: erwartete shallow-Liste"30703071#: fetch-pack.c:1543072msgid "git fetch-pack: expected a flush packet after shallow list"3073msgstr "git fetch-pack: erwartete ein Flush-Paket nach der shallow-Liste"30743075#: fetch-pack.c:1653076msgid "git fetch-pack: expected ACK/NAK, got a flush packet"3077msgstr "git fetch-pack: ACK/NAK erwartet, Flush-Paket bekommen"30783079#: fetch-pack.c:1853080#, c-format3081msgid "git fetch-pack: expected ACK/NAK, got '%s'"3082msgstr "git fetch-pack: ACK/NAK erwartet, '%s' bekommen"30833084#: fetch-pack.c:1963085msgid "unable to write to remote"3086msgstr "konnte nicht zum Remote schreiben"30873088#: fetch-pack.c:2583089msgid "--stateless-rpc requires multi_ack_detailed"3090msgstr "--stateless-rpc benötigt multi_ack_detailed"30913092#: fetch-pack.c:360 fetch-pack.c:12713093#, c-format3094msgid "invalid shallow line: %s"3095msgstr "Ungültige shallow-Zeile: %s"30963097#: fetch-pack.c:366 fetch-pack.c:12773098#, c-format3099msgid "invalid unshallow line: %s"3100msgstr "Ungültige unshallow-Zeile: %s"31013102#: fetch-pack.c:368 fetch-pack.c:12793103#, c-format3104msgid "object not found: %s"3105msgstr "Objekt nicht gefunden: %s"31063107#: fetch-pack.c:371 fetch-pack.c:12823108#, c-format3109msgid "error in object: %s"3110msgstr "Fehler in Objekt: %s"31113112#: fetch-pack.c:373 fetch-pack.c:12843113#, c-format3114msgid "no shallow found: %s"3115msgstr "Kein shallow-Objekt gefunden: %s"31163117#: fetch-pack.c:376 fetch-pack.c:12883118#, c-format3119msgid "expected shallow/unshallow, got %s"3120msgstr "shallow/unshallow erwartet, %s bekommen"31213122#: fetch-pack.c:4173123#, c-format3124msgid "got %s %d %s"3125msgstr "%s %d %s bekommen"31263127#: fetch-pack.c:4343128#, c-format3129msgid "invalid commit %s"3130msgstr "Ungültiger Commit %s"31313132#: fetch-pack.c:4653133msgid "giving up"3134msgstr "Gebe auf"31353136#: fetch-pack.c:477 progress.c:2843137msgid "done"3138msgstr "Fertig"31393140#: fetch-pack.c:4893141#, c-format3142msgid "got %s (%d) %s"3143msgstr "%s (%d) %s bekommen"31443145#: fetch-pack.c:5353146#, c-format3147msgid "Marking %s as complete"3148msgstr "Markiere %s als vollständig"31493150#: fetch-pack.c:7443151#, c-format3152msgid "already have %s (%s)"3153msgstr "habe %s (%s) bereits"31543155#: fetch-pack.c:7833156msgid "fetch-pack: unable to fork off sideband demultiplexer"3157msgstr "fetch-pack: Fehler beim Starten des sideband demultiplexer"31583159#: fetch-pack.c:7913160msgid "protocol error: bad pack header"3161msgstr "Protokollfehler: ungültiger Pack-Header"31623163#: fetch-pack.c:8593164#, c-format3165msgid "fetch-pack: unable to fork off %s"3166msgstr "fetch-pack: konnte %s nicht starten"31673168#: fetch-pack.c:8753169#, c-format3170msgid "%s failed"3171msgstr "%s fehlgeschlagen"31723173#: fetch-pack.c:8773174msgid "error in sideband demultiplexer"3175msgstr "Fehler in sideband demultiplexer"31763177#: fetch-pack.c:9063178msgid "Server does not support shallow clients"3179msgstr "Server unterstützt keine shallow-Clients"31803181#: fetch-pack.c:9103182msgid "Server supports multi_ack_detailed"3183msgstr "Server unterstützt multi_ack_detailed"31843185#: fetch-pack.c:9133186msgid "Server supports no-done"3187msgstr "Server unterstützt no-done"31883189#: fetch-pack.c:9193190msgid "Server supports multi_ack"3191msgstr "Server unterstützt multi_ack"31923193#: fetch-pack.c:9233194msgid "Server supports side-band-64k"3195msgstr "Server unterstützt side-band-64k"31963197#: fetch-pack.c:9273198msgid "Server supports side-band"3199msgstr "Server unterstützt side-band"32003201#: fetch-pack.c:9313202msgid "Server supports allow-tip-sha1-in-want"3203msgstr "Server unterstützt allow-tip-sha1-in-want"32043205#: fetch-pack.c:9353206msgid "Server supports allow-reachable-sha1-in-want"3207msgstr "Server unterstützt allow-reachable-sha1-in-want"32083209#: fetch-pack.c:9453210msgid "Server supports ofs-delta"3211msgstr "Server unterstützt ofs-delta"32123213#: fetch-pack.c:951 fetch-pack.c:11443214msgid "Server supports filter"3215msgstr "Server unterstützt Filter"32163217#: fetch-pack.c:9593218#, c-format3219msgid "Server version is %.*s"3220msgstr "Server-Version ist %.*s"32213222#: fetch-pack.c:9653223msgid "Server does not support --shallow-since"3224msgstr "Server unterstützt kein --shallow-since"32253226#: fetch-pack.c:9693227msgid "Server does not support --shallow-exclude"3228msgstr "Server unterstützt kein --shallow-exclude"32293230#: fetch-pack.c:9713231msgid "Server does not support --deepen"3232msgstr "Server unterstützt kein --deepen"32333234#: fetch-pack.c:9883235msgid "no common commits"3236msgstr "keine gemeinsamen Commits"32373238#: fetch-pack.c:1000 fetch-pack.c:14493239msgid "git fetch-pack: fetch failed."3240msgstr "git fetch-pack: Abholen fehlgeschlagen."32413242#: fetch-pack.c:11383243msgid "Server does not support shallow requests"3244msgstr "Server unterstützt keine shallow-Anfragen."32453246#: fetch-pack.c:11713247msgid "unable to write request to remote"3248msgstr "konnte Anfrage nicht zum Remote schreiben"32493250#: fetch-pack.c:11893251#, c-format3252msgid "error reading section header '%s'"3253msgstr "Fehler beim Lesen von Sektionskopf '%s'."32543255#: fetch-pack.c:11953256#, c-format3257msgid "expected '%s', received '%s'"3258msgstr "'%s' erwartet, '%s' empfangen"32593260#: fetch-pack.c:12343261#, c-format3262msgid "unexpected acknowledgment line: '%s'"3263msgstr "Unerwartete Acknowledgment-Zeile: '%s'"32643265#: fetch-pack.c:12393266#, c-format3267msgid "error processing acks: %d"3268msgstr "Fehler beim Verarbeiten von ACKS: %d"32693270#: fetch-pack.c:12493271msgid "expected packfile to be sent after 'ready'"3272msgstr "Erwartete Versand einer Packdatei nach 'ready'."32733274#: fetch-pack.c:12513275msgid "expected no other sections to be sent after no 'ready'"3276msgstr "Erwartete keinen Versand einer anderen Sektion ohne 'ready'."32773278#: fetch-pack.c:12933279#, c-format3280msgid "error processing shallow info: %d"3281msgstr "Fehler beim Verarbeiten von Shallow-Informationen: %d"32823283#: fetch-pack.c:13403284#, c-format3285msgid "expected wanted-ref, got '%s'"3286msgstr "wanted-ref erwartet, '%s' bekommen"32873288#: fetch-pack.c:13453289#, c-format3290msgid "unexpected wanted-ref: '%s'"3291msgstr "Unerwartetes wanted-ref: '%s'"32923293#: fetch-pack.c:13503294#, c-format3295msgid "error processing wanted refs: %d"3296msgstr "Fehler beim Verarbeiten von wanted-refs: %d"32973298#: fetch-pack.c:16763299msgid "no matching remote head"3300msgstr "kein übereinstimmender Remote-Branch"33013302#: fetch-pack.c:1699 builtin/clone.c:6733303msgid "remote did not send all necessary objects"3304msgstr "Remote-Repository hat nicht alle erforderlichen Objekte gesendet."33053306#: fetch-pack.c:17263307#, c-format3308msgid "no such remote ref %s"3309msgstr "keine solche Remote-Referenz %s"33103311#: fetch-pack.c:17293312#, c-format3313msgid "Server does not allow request for unadvertised object %s"3314msgstr "Der Server lehnt Anfrage nach nicht angebotenem Objekt %s ab."33153316#: gpg-interface.c:3183317msgid "gpg failed to sign the data"3318msgstr "gpg beim Signieren der Daten fehlgeschlagen"33193320#: gpg-interface.c:3443321msgid "could not create temporary file"3322msgstr "konnte temporäre Datei nicht erstellen"33233324#: gpg-interface.c:3473325#, c-format3326msgid "failed writing detached signature to '%s'"3327msgstr "Fehler beim Schreiben der losgelösten Signatur nach '%s'"33283329#: graph.c:973330#, c-format3331msgid "ignore invalid color '%.*s' in log.graphColors"3332msgstr "Ignoriere ungültige Farbe '%.*s' in log.graphColors"33333334#: grep.c:21133335#, c-format3336msgid "'%s': unable to read %s"3337msgstr "'%s': konnte %s nicht lesen"33383339#: grep.c:2130 setup.c:164 builtin/clone.c:411 builtin/diff.c:823340#: builtin/rm.c:1353341#, c-format3342msgid "failed to stat '%s'"3343msgstr "Konnte '%s' nicht lesen"33443345#: grep.c:21413346#, c-format3347msgid "'%s': short read"3348msgstr "'%s': read() zu kurz"33493350#: help.c:233351msgid "start a working area (see also: git help tutorial)"3352msgstr "Arbeitsverzeichnis anlegen (siehe auch: git help tutorial)"33533354#: help.c:243355msgid "work on the current change (see also: git help everyday)"3356msgstr "an aktuellen Änderungen arbeiten (siehe auch: git help everyday)"33573358#: help.c:253359msgid "examine the history and state (see also: git help revisions)"3360msgstr "Historie und Status untersuchen (siehe auch: git help revisions)"33613362#: help.c:263363msgid "grow, mark and tweak your common history"3364msgstr "Historie erweitern und bearbeiten"33653366#: help.c:273367msgid "collaborate (see also: git help workflows)"3368msgstr "mit anderen zusammenarbeiten (siehe auch: git help workflows)"33693370#: help.c:313371msgid "Main Porcelain Commands"3372msgstr "Hauptbefehle"33733374#: help.c:323375msgid "Ancillary Commands / Manipulators"3376msgstr "Nebenbefehle / Manipulationen"33773378#: help.c:333379msgid "Ancillary Commands / Interrogators"3380msgstr "Nebenbefehle / Abfragen"33813382#: help.c:343383msgid "Interacting with Others"3384msgstr "mit anderen interagieren"33853386#: help.c:353387msgid "Low-level Commands / Manipulators"3388msgstr "Systembefehle / Manipulationen"33893390#: help.c:363391msgid "Low-level Commands / Interrogators"3392msgstr "Systembefehle / Abfragen"33933394#: help.c:373395msgid "Low-level Commands / Synching Repositories"3396msgstr "Systembefehle / Repositories synchronisieren"33973398#: help.c:383399msgid "Low-level Commands / Internal Helpers"3400msgstr "Systembefehle / Interne Hilfsbefehle"34013402#: help.c:2983403#, c-format3404msgid "available git commands in '%s'"3405msgstr "Vorhandene Git-Befehle in '%s'"34063407#: help.c:3053408msgid "git commands available from elsewhere on your $PATH"3409msgstr "Vorhandene Git-Befehle anderswo in Ihrem $PATH"34103411#: help.c:3143412msgid "These are common Git commands used in various situations:"3413msgstr "Allgemeine Git-Befehle, verwendet in verschiedenen Situationen:"34143415#: help.c:363 git.c:973416#, c-format3417msgid "unsupported command listing type '%s'"3418msgstr "Nicht unterstützte Art zur Befehlsauflistung '%s'."34193420#: help.c:4033421msgid "The common Git guides are:"3422msgstr "Die allgemeinen Git-Anleitungen sind:"34233424#: help.c:5123425msgid "See 'git help <command>' to read about a specific subcommand"3426msgstr ""3427"Siehe 'git help <Befehl>', um mehr über einen spezifischen Unterbefehl zu "3428"lesen."34293430#: help.c:5173431msgid "External commands"3432msgstr "Externe Befehle"34333434#: help.c:5323435msgid "Command aliases"3436msgstr "Alias-Befehle"34373438#: help.c:5963439#, c-format3440msgid ""3441"'%s' appears to be a git command, but we were not\n"3442"able to execute it. Maybe git-%s is broken?"3443msgstr ""3444"'%s' scheint ein git-Befehl zu sein, konnte aber\n"3445"nicht ausgeführt werden. Vielleicht ist git-%s fehlerhaft?"34463447#: help.c:6553448msgid "Uh oh. Your system reports no Git commands at all."3449msgstr "Uh oh. Keine Git-Befehle auf Ihrem System vorhanden."34503451#: help.c:6773452#, c-format3453msgid "WARNING: You called a Git command named '%s', which does not exist."3454msgstr ""3455"WARNUNG: Sie haben Git-Befehl '%s' ausgeführt, welcher nicht existiert."34563457#: help.c:6823458#, c-format3459msgid "Continuing under the assumption that you meant '%s'."3460msgstr "Setze fort unter der Annahme, dass Sie '%s' meinten."34613462#: help.c:6873463#, c-format3464msgid "Continuing in %0.1f seconds, assuming that you meant '%s'."3465msgstr "Setze in %0.1f Sekunden fort unter der Annahme, dass Sie '%s' meinten."34663467#: help.c:6953468#, c-format3469msgid "git: '%s' is not a git command. See 'git --help'."3470msgstr "git: '%s' ist kein Git-Befehl. Siehe 'git --help'."34713472#: help.c:6993473msgid ""3474"\n"3475"The most similar command is"3476msgid_plural ""3477"\n"3478"The most similar commands are"3479msgstr[0] ""3480"\n"3481"Der ähnlichste Befehl ist"3482msgstr[1] ""3483"\n"3484"Die ähnlichsten Befehle sind"34853486#: help.c:7143487msgid "git version [<options>]"3488msgstr "git version [<Optionen>]"34893490#: help.c:7823491#, c-format3492msgid "%s: %s - %s"3493msgstr "%s: %s - %s"34943495#: help.c:7863496msgid ""3497"\n"3498"Did you mean this?"3499msgid_plural ""3500"\n"3501"Did you mean one of these?"3502msgstr[0] ""3503"\n"3504"Haben Sie das gemeint?"3505msgstr[1] ""3506"\n"3507"Haben Sie eines von diesen gemeint?"35083509#: ident.c:3493510msgid ""3511"\n"3512"*** Please tell me who you are.\n"3513"\n"3514"Run\n"3515"\n"3516" git config --global user.email \"you@example.com\"\n"3517" git config --global user.name \"Your Name\"\n"3518"\n"3519"to set your account's default identity.\n"3520"Omit --global to set the identity only in this repository.\n"3521"\n"3522msgstr ""3523"\n"3524"*** Bitte geben Sie an, wer Sie sind.\n"3525"\n"3526"Führen Sie\n"3527"\n"3528" git config --global user.email \"you@example.com\"\n"3529" git config --global user.name \"Your Name\"\n"3530"\n"3531"aus, um das als Ihre standardmäßige Identität zu setzen.\n"3532"Lassen Sie die Option \"--global\" weg, um die Identität nur\n"3533"für dieses Repository zu setzen.\n"35343535#: ident.c:3793536msgid "no email was given and auto-detection is disabled"3537msgstr "keine E-Mail angegeben und automatische Erkennung ist deaktiviert"35383539#: ident.c:3843540#, c-format3541msgid "unable to auto-detect email address (got '%s')"3542msgstr "Konnte die E-Mail-Adresse nicht automatisch erkennen ('%s' erhalten)"35433544#: ident.c:4013545msgid "no name was given and auto-detection is disabled"3546msgstr "kein Name angegeben und automatische Erkennung ist deaktiviert"35473548#: ident.c:4073549#, c-format3550msgid "unable to auto-detect name (got '%s')"3551msgstr "konnte Namen nicht automatisch erkennen ('%s' erhalten)"35523553#: ident.c:4153554#, c-format3555msgid "empty ident name (for <%s>) not allowed"3556msgstr "Leerer Name in Identifikation (für <%s>) nicht erlaubt."35573558#: ident.c:4213559#, c-format3560msgid "name consists only of disallowed characters: %s"3561msgstr "Name besteht nur aus nicht erlaubten Zeichen: %s"35623563#: ident.c:436 builtin/commit.c:6083564#, c-format3565msgid "invalid date format: %s"3566msgstr "Ungültiges Datumsformat: %s"35673568#: list-objects.c:1293569#, c-format3570msgid "entry '%s' in tree %s has tree mode, but is not a tree"3571msgstr ""3572"Eintrag '%s' im Tree-Objekt %s hat Tree-Modus, aber ist kein Tree-Objekt"35733574#: list-objects.c:1423575#, c-format3576msgid "entry '%s' in tree %s has blob mode, but is not a blob"3577msgstr "Eintrag '%s' im Tree-Objekt %s hat Blob-Modus, aber ist kein Blob"35783579#: list-objects.c:3783580#, c-format3581msgid "unable to load root tree for commit %s"3582msgstr "Konnte Root-Tree-Objekt für Commit %s nicht laden."35833584#: list-objects-filter-options.c:363585msgid "multiple filter-specs cannot be combined"3586msgstr "Mehrere filter-specs können nicht kombiniert werden."35873588#: list-objects-filter-options.c:583589msgid "expected 'tree:<depth>'"3590msgstr "'tree:<Tiefe>' erwartet"35913592#: list-objects-filter-options.c:843593msgid "sparse:path filters support has been dropped"3594msgstr "Keine Unterstützung für sparse:path Filter mehr"35953596#: list-objects-filter-options.c:1583597msgid "cannot change partial clone promisor remote"3598msgstr "Kann Remote-Repository für partielles Klonen nicht ändern."35993600#: lockfile.c:1513601#, c-format3602msgid ""3603"Unable to create '%s.lock': %s.\n"3604"\n"3605"Another git process seems to be running in this repository, e.g.\n"3606"an editor opened by 'git commit'. Please make sure all processes\n"3607"are terminated then try again. If it still fails, a git process\n"3608"may have crashed in this repository earlier:\n"3609"remove the file manually to continue."3610msgstr ""3611"Konnte '%s.lock' nicht erstellen: %s.\n"3612"\n"3613"Ein anderer Git-Prozess scheint in diesem Repository ausgeführt\n"3614"zu werden, zum Beispiel ein noch offener Editor von 'git commit'.\n"3615"Bitte stellen Sie sicher, dass alle Prozesse beendet wurden und\n"3616"versuchen Sie es erneut. Falls es immer noch fehlschlägt, könnte\n"3617"ein früherer Git-Prozess in diesem Repository abgestürzt sein:\n"3618"Löschen Sie die Datei manuell um fortzufahren."36193620#: lockfile.c:1593621#, c-format3622msgid "Unable to create '%s.lock': %s"3623msgstr "Konnte '%s.lock' nicht erstellen: %s"36243625#: merge.c:413626msgid "failed to read the cache"3627msgstr "Lesen des Zwischenspeichers fehlgeschlagen"36283629#: merge.c:107 rerere.c:720 builtin/am.c:1887 builtin/am.c:19213630#: builtin/checkout.c:461 builtin/checkout.c:811 builtin/clone.c:7733631#: builtin/stash.c:2643632msgid "unable to write new index file"3633msgstr "Konnte neue Index-Datei nicht schreiben."36343635#: merge-recursive.c:3223636msgid "(bad commit)\n"3637msgstr "(ungültiger Commit)\n"36383639#: merge-recursive.c:3453640#, c-format3641msgid "add_cacheinfo failed for path '%s'; merge aborting."3642msgstr "add_cacheinfo für Pfad '%s' fehlgeschlagen; Merge wird abgebrochen."36433644#: merge-recursive.c:3543645#, c-format3646msgid "add_cacheinfo failed to refresh for path '%s'; merge aborting."3647msgstr ""3648"add_cacheinfo zur Aktualisierung für Pfad '%s' fehlgeschlagen;\n"3649"Merge wird abgebrochen."36503651#: merge-recursive.c:4373652msgid "error building trees"3653msgstr "Fehler beim Erstellen der \"Tree\"-Objekte"36543655#: merge-recursive.c:8613656#, c-format3657msgid "failed to create path '%s'%s"3658msgstr "Fehler beim Erstellen des Pfades '%s'%s"36593660#: merge-recursive.c:8723661#, c-format3662msgid "Removing %s to make room for subdirectory\n"3663msgstr "Entferne %s, um Platz für Unterverzeichnis zu schaffen\n"36643665#: merge-recursive.c:886 merge-recursive.c:9053666msgid ": perhaps a D/F conflict?"3667msgstr ": vielleicht ein Verzeichnis/Datei-Konflikt?"36683669#: merge-recursive.c:8953670#, c-format3671msgid "refusing to lose untracked file at '%s'"3672msgstr "verweigere, da unversionierte Dateien in '%s' verloren gehen würden"36733674#: merge-recursive.c:936 builtin/cat-file.c:403675#, c-format3676msgid "cannot read object %s '%s'"3677msgstr "kann Objekt %s '%s' nicht lesen"36783679#: merge-recursive.c:9393680#, c-format3681msgid "blob expected for %s '%s'"3682msgstr "Blob erwartet für %s '%s'"36833684#: merge-recursive.c:9633685#, c-format3686msgid "failed to open '%s': %s"3687msgstr "Fehler beim Öffnen von '%s': %s"36883689#: merge-recursive.c:9743690#, c-format3691msgid "failed to symlink '%s': %s"3692msgstr "Fehler beim Erstellen einer symbolischen Verknüpfung für '%s': %s"36933694#: merge-recursive.c:9793695#, c-format3696msgid "do not know what to do with %06o %s '%s'"3697msgstr "weiß nicht was mit %06o %s '%s' zu machen ist"36983699#: merge-recursive.c:11753700#, c-format3701msgid "Failed to merge submodule %s (not checked out)"3702msgstr "Fehler beim Merge von Submodul %s (nicht ausgecheckt)."37033704#: merge-recursive.c:11823705#, c-format3706msgid "Failed to merge submodule %s (commits not present)"3707msgstr "Fehler beim Merge von Submodul %s (Commits nicht vorhanden)."37083709#: merge-recursive.c:11893710#, c-format3711msgid "Failed to merge submodule %s (commits don't follow merge-base)"3712msgstr "Fehler beim Merge von Submodul %s (Commits folgen keiner Merge-Basis)"37133714#: merge-recursive.c:1197 merge-recursive.c:12093715#, c-format3716msgid "Fast-forwarding submodule %s to the following commit:"3717msgstr "Spule Submodul %s zu dem folgenden Commit vor:"37183719#: merge-recursive.c:1200 merge-recursive.c:12123720#, c-format3721msgid "Fast-forwarding submodule %s"3722msgstr "Spule Submodul %s vor"37233724#: merge-recursive.c:12353725#, c-format3726msgid "Failed to merge submodule %s (merge following commits not found)"3727msgstr ""3728"Fehler beim Merge von Submodule %s (dem Merge nachfolgende Commits nicht "3729"gefunden)"37303731#: merge-recursive.c:12393732#, c-format3733msgid "Failed to merge submodule %s (not fast-forward)"3734msgstr "Fehler beim Merge von Submodul %s (kein Vorspulen)"37353736#: merge-recursive.c:12403737msgid "Found a possible merge resolution for the submodule:\n"3738msgstr "Mögliche Auflösung des Merges für Submodul gefunden:\n"37393740#: merge-recursive.c:12433741#, c-format3742msgid ""3743"If this is correct simply add it to the index for example\n"3744"by using:\n"3745"\n"3746" git update-index --cacheinfo 160000 %s \"%s\"\n"3747"\n"3748"which will accept this suggestion.\n"3749msgstr ""3750"Falls das korrekt ist, fügen Sie es einfach der Staging-Area, zum Beispiel "3751"mit:\n"3752"\n"3753" git update-index --cacheinfo 160000 %s \"%s\"\n"3754"\n"3755"hinzu, um diesen Vorschlag zu akzeptieren.\n"37563757#: merge-recursive.c:12523758#, c-format3759msgid "Failed to merge submodule %s (multiple merges found)"3760msgstr "Fehler beim Merge von Submodul %s (mehrere Merges gefunden)"37613762#: merge-recursive.c:13253763msgid "Failed to execute internal merge"3764msgstr "Fehler bei Ausführung des internen Merges"37653766#: merge-recursive.c:13303767#, c-format3768msgid "Unable to add %s to database"3769msgstr "Konnte %s nicht zur Datenbank hinzufügen"37703771#: merge-recursive.c:13623772#, c-format3773msgid "Auto-merging %s"3774msgstr "automatischer Merge von %s"37753776#: merge-recursive.c:13853777#, c-format3778msgid "Error: Refusing to lose untracked file at %s; writing to %s instead."3779msgstr ""3780"Fehler: Verweigere unversionierte Datei bei %s zu verlieren;\n"3781"schreibe stattdessen nach %s."37823783#: merge-recursive.c:14573784#, c-format3785msgid ""3786"CONFLICT (%s/delete): %s deleted in %s and %s in %s. Version %s of %s left "3787"in tree."3788msgstr ""3789"KONFLIKT (%s/löschen): %s gelöscht in %s und %s in %s. Stand %s von %s wurde "3790"im Arbeitsbereich gelassen."37913792#: merge-recursive.c:14623793#, c-format3794msgid ""3795"CONFLICT (%s/delete): %s deleted in %s and %s to %s in %s. Version %s of %s "3796"left in tree."3797msgstr ""3798"KONFLIKT (%s/löschen): %s gelöscht in %s und %s nach %s in %s. Stand %s von "3799"%s wurde im Arbeitsbereich gelassen."38003801#: merge-recursive.c:14693802#, c-format3803msgid ""3804"CONFLICT (%s/delete): %s deleted in %s and %s in %s. Version %s of %s left "3805"in tree at %s."3806msgstr ""3807"KONFLIKT (%s/löschen): %s gelöscht in %s und %s in %s. Stand %s von %s wurde "3808"im Arbeitsbereich bei %s gelassen."38093810#: merge-recursive.c:14743811#, c-format3812msgid ""3813"CONFLICT (%s/delete): %s deleted in %s and %s to %s in %s. Version %s of %s "3814"left in tree at %s."3815msgstr ""3816"KONFLIKT (%s/löschen): %s gelöscht in %s und %s nach %s in %s. Stand %s von "3817"%s wurde im Arbeitsbereich bei %s gelassen."38183819#: merge-recursive.c:15093820msgid "rename"3821msgstr "umbenennen"38223823#: merge-recursive.c:15093824msgid "renamed"3825msgstr "umbenannt"38263827#: merge-recursive.c:1589 merge-recursive.c:2445 merge-recursive.c:30853828#, c-format3829msgid "Refusing to lose dirty file at %s"3830msgstr "Verweigere geänderte Datei bei %s zu verlieren."38313832#: merge-recursive.c:15993833#, c-format3834msgid "Refusing to lose untracked file at %s, even though it's in the way."3835msgstr ""3836"Verweigere unversionierte Datei bei %s zu verlieren, auch wenn diese im Weg "3837"ist."38383839#: merge-recursive.c:16573840#, c-format3841msgid "CONFLICT (rename/add): Rename %s->%s in %s. Added %s in %s"3842msgstr ""3843"KONFLIKT (umbenennen/hinzufügen): Benenne um %s->%s in %s. %s hinzugefügt in "3844"%s"38453846#: merge-recursive.c:16873847#, c-format3848msgid "%s is a directory in %s adding as %s instead"3849msgstr "%s ist ein Verzeichnis in %s, füge es stattdessen als %s hinzu"38503851#: merge-recursive.c:16923852#, c-format3853msgid "Refusing to lose untracked file at %s; adding as %s instead"3854msgstr ""3855"Verweigere unversionierte Datei bei %s zu verlieren; füge stattdessen %s "3856"hinzu"38573858#: merge-recursive.c:17113859#, c-format3860msgid ""3861"CONFLICT (rename/rename): Rename \"%s\"->\"%s\" in branch \"%s\" rename \"%s"3862"\"->\"%s\" in \"%s\"%s"3863msgstr ""3864"KONFLIKT (umbenennen/umbenennen): Benenne um \"%s\"->\"%s\" in Branch \"%s\" "3865"und \"%s\"->\"%s\" in Branch \"%s\"%s"38663867#: merge-recursive.c:17163868msgid " (left unresolved)"3869msgstr " (bleibt unaufgelöst)"38703871#: merge-recursive.c:18253872#, c-format3873msgid "CONFLICT (rename/rename): Rename %s->%s in %s. Rename %s->%s in %s"3874msgstr ""3875"KONFLIKT (umbenennen/umbenennen): Benenne um %s->%s in %s. Benenne um %s->%s "3876"in %s"38773878#: merge-recursive.c:20303879#, c-format3880msgid ""3881"CONFLICT (directory rename split): Unclear where to place %s because "3882"directory %s was renamed to multiple other directories, with no destination "3883"getting a majority of the files."3884msgstr ""3885"KONFLIKT (Aufteilung Verzeichnisumbenennung): Unklar, wo %s zu platzieren "3886"ist,\n"3887"weil Verzeichnis %s zu mehreren anderen Verzeichnissen umbenannt wurde, "3888"wobei\n"3889"keines dieser Ziele die Mehrheit der Dateien erhielt."38903891#: merge-recursive.c:20623892#, c-format3893msgid ""3894"CONFLICT (implicit dir rename): Existing file/dir at %s in the way of "3895"implicit directory rename(s) putting the following path(s) there: %s."3896msgstr ""3897"KONFLIKT (implizite Verzeichnisumbenennung): Existierende Datei/Pfad bei %s "3898"im\n"3899"Weg von impliziter Verzeichnisumbenennung, die versucht, einen oder mehrere\n"3900"Pfade dahin zu setzen: %s."39013902#: merge-recursive.c:20723903#, c-format3904msgid ""3905"CONFLICT (implicit dir rename): Cannot map more than one path to %s; "3906"implicit directory renames tried to put these paths there: %s"3907msgstr ""3908"KONFLIKT (implizite Verzeichnisumbenennung): Kann nicht mehr als ein Pfad "3909"zu\n"3910"%s mappen; implizite Verzeichnisumbenennungen versuchten diese Pfade dahin\n"3911"zu setzen: %s"39123913#: merge-recursive.c:21643914#, c-format3915msgid ""3916"CONFLICT (rename/rename): Rename directory %s->%s in %s. Rename directory %s-"3917">%s in %s"3918msgstr ""3919"KONFLIKT (umbenennen/umbenennen): Benenne Verzeichnis um %s->%s in %s.\n"3920"Benenne Verzeichnis um %s->%s in %s"39213922#: merge-recursive.c:24083923#, c-format3924msgid ""3925"WARNING: Avoiding applying %s -> %s rename to %s, because %s itself was "3926"renamed."3927msgstr ""3928"WARNUNG: Vermeide Umbenennung %s -> %s von %s, weil %s selbst umbenannt "3929"wurde."39303931#: merge-recursive.c:29293932#, c-format3933msgid "cannot read object %s"3934msgstr "kann Objekt %s nicht lesen"39353936#: merge-recursive.c:29323937#, c-format3938msgid "object %s is not a blob"3939msgstr "Objekt %s ist kein Blob"39403941#: merge-recursive.c:29963942msgid "modify"3943msgstr "ändern"39443945#: merge-recursive.c:29963946msgid "modified"3947msgstr "geändert"39483949#: merge-recursive.c:30083950msgid "content"3951msgstr "Inhalt"39523953#: merge-recursive.c:30123954msgid "add/add"3955msgstr "hinzufügen/hinzufügen"39563957#: merge-recursive.c:30353958#, c-format3959msgid "Skipped %s (merged same as existing)"3960msgstr "%s ausgelassen (Ergebnis des Merges existiert bereits)"39613962#: merge-recursive.c:3057 git-submodule.sh:9373963msgid "submodule"3964msgstr "Submodul"39653966#: merge-recursive.c:30583967#, c-format3968msgid "CONFLICT (%s): Merge conflict in %s"3969msgstr "KONFLIKT (%s): Merge-Konflikt in %s"39703971#: merge-recursive.c:30883972#, c-format3973msgid "Adding as %s instead"3974msgstr "Füge stattdessen als %s hinzu"39753976#: merge-recursive.c:31703977#, c-format3978msgid ""3979"Path updated: %s added in %s inside a directory that was renamed in %s; "3980"moving it to %s."3981msgstr ""3982"Pfad aktualisiert: %s hinzugefügt in %s innerhalb eines Verzeichnisses, das "3983"umbenannt wurde in %s; Verschiebe es nach %s."39843985#: merge-recursive.c:31733986#, c-format3987msgid ""3988"CONFLICT (file location): %s added in %s inside a directory that was renamed "3989"in %s, suggesting it should perhaps be moved to %s."3990msgstr ""3991"KONFLIKT (Speicherort): %s hinzugefügt in %s innerhalb eines Verzeichnisses, "3992"das umbenannt wurde in %s, es sollte vielleicht nach %s verschoben werden."39933994#: merge-recursive.c:31773995#, c-format3996msgid ""3997"Path updated: %s renamed to %s in %s, inside a directory that was renamed in "3998"%s; moving it to %s."3999msgstr ""4000"Pfad aktualisiert: %s umbenannt nach %s in %s, innerhalb eines "4001"Verzeichnisses, das umbenannt wurde in %s; Verschiebe es nach %s."40024003#: merge-recursive.c:31804004#, c-format4005msgid ""4006"CONFLICT (file location): %s renamed to %s in %s, inside a directory that "4007"was renamed in %s, suggesting it should perhaps be moved to %s."4008msgstr ""4009"KONFLIKT (Speicherort): %s umbenannt nach %s in %s, innerhalb eines "4010"Verzeichnisses, das umbenannt wurde in %s, es sollte vielleicht nach %s "4011"verschoben werden."40124013#: merge-recursive.c:32944014#, c-format4015msgid "Removing %s"4016msgstr "Entferne %s"40174018#: merge-recursive.c:33174019msgid "file/directory"4020msgstr "Datei/Verzeichnis"40214022#: merge-recursive.c:33224023msgid "directory/file"4024msgstr "Verzeichnis/Datei"40254026#: merge-recursive.c:33294027#, c-format4028msgid "CONFLICT (%s): There is a directory with name %s in %s. Adding %s as %s"4029msgstr ""4030"KONFLIKT (%s): Es existiert bereits ein Verzeichnis %s in %s. Füge %s als %s "4031"hinzu."40324033#: merge-recursive.c:33384034#, c-format4035msgid "Adding %s"4036msgstr "Füge %s hinzu"40374038#: merge-recursive.c:33474039#, c-format4040msgid "CONFLICT (add/add): Merge conflict in %s"4041msgstr "KONFLIKT (hinzufügen/hinzufügen): Merge-Konflikt in %s"40424043#: merge-recursive.c:33854044#, c-format4045msgid ""4046"Your local changes to the following files would be overwritten by merge:\n"4047" %s"4048msgstr ""4049"Ihre lokalen Änderungen in den folgenden Dateien würden durch den Merge\n"4050"überschrieben werden:\n"4051" %s"40524053#: merge-recursive.c:33964054msgid "Already up to date!"4055msgstr "Bereits aktuell!"40564057#: merge-recursive.c:34054058#, c-format4059msgid "merging of trees %s and %s failed"4060msgstr "Zusammenführen der \"Tree\"-Objekte %s und %s fehlgeschlagen"40614062#: merge-recursive.c:35044063msgid "Merging:"4064msgstr "Merge:"40654066#: merge-recursive.c:35174067#, c-format4068msgid "found %u common ancestor:"4069msgid_plural "found %u common ancestors:"4070msgstr[0] "%u gemeinsamen Vorgänger-Commit gefunden"4071msgstr[1] "%u gemeinsame Vorgänger-Commits gefunden"40724073#: merge-recursive.c:35564074msgid "merge returned no commit"4075msgstr "Merge hat keinen Commit zurückgegeben"40764077#: merge-recursive.c:36224078#, c-format4079msgid "Could not parse object '%s'"4080msgstr "Konnte Objekt '%s' nicht parsen."40814082#: merge-recursive.c:3638 builtin/merge.c:702 builtin/merge.c:8734083msgid "Unable to write index."4084msgstr "Konnte Index nicht schreiben."40854086#: midx.c:664087#, c-format4088msgid "multi-pack-index file %s is too small"4089msgstr "multi-pack-index-Datei %s ist zu klein."40904091#: midx.c:824092#, c-format4093msgid "multi-pack-index signature 0x%08x does not match signature 0x%08x"4094msgstr ""4095"multi-pack-index-Signatur 0x%08x stimmt nicht mit Signatur 0x%08x überein."40964097#: midx.c:874098#, c-format4099msgid "multi-pack-index version %d not recognized"4100msgstr "multi-pack-index-Version %d nicht erkannt."41014102#: midx.c:924103#, c-format4104msgid "hash version %u does not match"4105msgstr "Hash-Version %u stimmt nicht überein."41064107#: midx.c:1064108msgid "invalid chunk offset (too large)"4109msgstr "Ungültiger Chunk-Offset (zu groß)"41104111#: midx.c:1304112msgid "terminating multi-pack-index chunk id appears earlier than expected"4113msgstr "Abschließende multi-pack-index Chunk-Id erscheint eher als erwartet."41144115#: midx.c:1434116msgid "multi-pack-index missing required pack-name chunk"4117msgstr "multi-pack-index fehlt erforderlicher pack-name Chunk."41184119#: midx.c:1454120msgid "multi-pack-index missing required OID fanout chunk"4121msgstr "multi-pack-index fehlt erforderlicher OID fanout Chunk."41224123#: midx.c:1474124msgid "multi-pack-index missing required OID lookup chunk"4125msgstr "multi-pack-index fehlt erforderlicher OID lookup Chunk."41264127#: midx.c:1494128msgid "multi-pack-index missing required object offsets chunk"4129msgstr "multi-pack-index fehlt erforderlicher object offset Chunk."41304131#: midx.c:1634132#, c-format4133msgid "multi-pack-index pack names out of order: '%s' before '%s'"4134msgstr "Falsche Reihenfolge bei multi-pack-index Pack-Namen: '%s' vor '%s'"41354136#: midx.c:2084137#, c-format4138msgid "bad pack-int-id: %u (%u total packs)"4139msgstr "Ungültige pack-int-id: %u (%u Pakete insgesamt)"41404141#: midx.c:2584142msgid "multi-pack-index stores a 64-bit offset, but off_t is too small"4143msgstr ""4144"multi-pack-index speichert einen 64-Bit Offset, aber off_t ist zu klein."41454146#: midx.c:2864147msgid "error preparing packfile from multi-pack-index"4148msgstr "Fehler bei Vorbereitung der Packdatei aus multi-pack-index."41494150#: midx.c:4574151#, c-format4152msgid "failed to add packfile '%s'"4153msgstr "Fehler beim Hinzufügen von Packdatei '%s'."41544155#: midx.c:4634156#, c-format4157msgid "failed to open pack-index '%s'"4158msgstr "Fehler beim Öffnen von pack-index '%s'"41594160#: midx.c:5574161#, c-format4162msgid "failed to locate object %d in packfile"4163msgstr "Fehler beim Lokalisieren von Objekt %d in Packdatei."41644165#: midx.c:9934166#, c-format4167msgid "failed to clear multi-pack-index at %s"4168msgstr "Fehler beim Löschen des multi-pack-index bei %s"41694170#: midx.c:10484171msgid "Looking for referenced packfiles"4172msgstr "Suche nach referenzierten Pack-Dateien"41734174#: midx.c:10634175#, c-format4176msgid ""4177"oid fanout out of order: fanout[%d] = %<PRIx32> > %<PRIx32> = fanout[%d]"4178msgstr ""4179"Ungültige oid fanout Reihenfolge: fanout[%d] = %<PRIx32> > %<PRIx32> = "4180"fanout[%d]"41814182#: midx.c:10674183msgid "Verifying OID order in MIDX"4184msgstr "Verifiziere OID-Reihenfolge in MIDX"41854186#: midx.c:10764187#, c-format4188msgid "oid lookup out of order: oid[%d] = %s >= %s = oid[%d]"4189msgstr "Ungültige oid lookup Reihenfolge: oid[%d] = %s >= %s = oid[%d]"41904191#: midx.c:10954192msgid "Sorting objects by packfile"4193msgstr "Sortiere Objekte nach Pack-Datei"41944195#: midx.c:11014196msgid "Verifying object offsets"4197msgstr "Überprüfe Objekt-Offsets"41984199#: midx.c:11174200#, c-format4201msgid "failed to load pack entry for oid[%d] = %s"4202msgstr "Fehler beim Laden des Pack-Eintrags für oid[%d] = %s"42034204#: midx.c:11234205#, c-format4206msgid "failed to load pack-index for packfile %s"4207msgstr "Fehler beim Laden des Pack-Index für Packdatei %s"42084209#: midx.c:11324210#, c-format4211msgid "incorrect object offset for oid[%d] = %s: %<PRIx64> != %<PRIx64>"4212msgstr "Falscher Objekt-Offset für oid[%d] = %s: %<PRIx64> != %<PRIx64>"42134214#: name-hash.c:5314215#, c-format4216msgid "unable to create lazy_dir thread: %s"4217msgstr "Kann lazy_dir Thread nicht erzeugen: %s"42184219#: name-hash.c:5534220#, c-format4221msgid "unable to create lazy_name thread: %s"4222msgstr "Kann lazy_name Thread nicht erzeugen: %s"42234224#: name-hash.c:5594225#, c-format4226msgid "unable to join lazy_name thread: %s"4227msgstr "Kann lazy_name Thread nicht beitreten: %s"42284229#: notes-merge.c:2774230#, c-format4231msgid ""4232"You have not concluded your previous notes merge (%s exists).\n"4233"Please, use 'git notes merge --commit' or 'git notes merge --abort' to "4234"commit/abort the previous merge before you start a new notes merge."4235msgstr ""4236"Sie haben Ihren vorherigen Merge von Notizen nicht abgeschlossen (%s "4237"existiert).\n"4238"Bitte benutzen Sie 'git notes merge --commit' oder 'git notes merge --"4239"abort', um\n"4240"den vorherigen Merge zu committen bzw. abzubrechen, bevor Sie einen neuen "4241"Merge\n"4242"von Notizen beginnen."42434244#: notes-merge.c:2844245#, c-format4246msgid "You have not concluded your notes merge (%s exists)."4247msgstr "Sie haben Ihren Merge von Notizen nicht abgeschlossen (%s existiert)."42484249#: notes-utils.c:464250msgid "Cannot commit uninitialized/unreferenced notes tree"4251msgstr ""4252"Kann uninitialisiertes/unreferenziertes Notiz-Verzeichnis nicht committen."42534254#: notes-utils.c:1054255#, c-format4256msgid "Bad notes.rewriteMode value: '%s'"4257msgstr "Ungültiger notes.rewriteMode Wert: '%s'"42584259#: notes-utils.c:1154260#, c-format4261msgid "Refusing to rewrite notes in %s (outside of refs/notes/)"4262msgstr ""4263"Umschreiben der Notizen in %s zurückgewiesen (außerhalb von refs/notes/)"42644265#. TRANSLATORS: The first %s is the name of4266#. the environment variable, the second %s is4267#. its value.4268#.4269#: notes-utils.c:1454270#, c-format4271msgid "Bad %s value: '%s'"4272msgstr "Ungültiger %s Wert: '%s'"42734274#: object.c:544275#, c-format4276msgid "invalid object type \"%s\""4277msgstr "Ungültiger Objekttyp \"%s\""42784279#: object.c:1744280#, c-format4281msgid "object %s is a %s, not a %s"4282msgstr "Objekt %s ist ein %s, kein %s"42834284#: object.c:2344285#, c-format4286msgid "object %s has unknown type id %d"4287msgstr "Objekt %s hat eine unbekannte Typ-Identifikation %d"42884289#: object.c:2474290#, c-format4291msgid "unable to parse object: %s"4292msgstr "Konnte Objekt '%s' nicht parsen."42934294#: object.c:267 object.c:2784295#, c-format4296msgid "hash mismatch %s"4297msgstr "Hash stimmt nicht mit %s überein."42984299#: packfile.c:6174300msgid "offset before end of packfile (broken .idx?)"4301msgstr "Offset vor Ende der Packdatei (fehlerhafte Indexdatei?)"43024303#: packfile.c:18684304#, c-format4305msgid "offset before start of pack index for %s (corrupt index?)"4306msgstr "Offset vor Beginn des Pack-Index für %s (beschädigter Index?)"43074308#: packfile.c:18724309#, c-format4310msgid "offset beyond end of pack index for %s (truncated index?)"4311msgstr "Offset hinter Ende des Pack-Index für %s (abgeschnittener Index?)"43124313#: parse-options.c:384314#, c-format4315msgid "%s requires a value"4316msgstr "%s erfordert einen Wert."43174318#: parse-options.c:734319#, c-format4320msgid "%s is incompatible with %s"4321msgstr "%s ist inkompatibel mit %s."43224323#: parse-options.c:784324#, c-format4325msgid "%s : incompatible with something else"4326msgstr "%s: inkompatibel mit etwas anderem"43274328#: parse-options.c:92 parse-options.c:96 parse-options.c:3194329#, c-format4330msgid "%s takes no value"4331msgstr "%s erwartet keinen Wert"43324333#: parse-options.c:944334#, c-format4335msgid "%s isn't available"4336msgstr "%s ist nicht verfügbar."43374338#: parse-options.c:2194339#, c-format4340msgid "%s expects a non-negative integer value with an optional k/m/g suffix"4341msgstr ""4342"%s erwartet einen nicht-negativen Integer-Wert mit einem optionalen k/m/g "4343"Suffix"43444345#: parse-options.c:3894346#, c-format4347msgid "ambiguous option: %s (could be --%s%s or --%s%s)"4348msgstr "Mehrdeutige Option: %s (kann --%s%s oder --%s%s sein)"43494350#: parse-options.c:423 parse-options.c:4314351#, c-format4352msgid "did you mean `--%s` (with two dashes ?)"4353msgstr "Meinten Sie `--%s` (mit zwei Strichen?)"43544355#: parse-options.c:8594356#, c-format4357msgid "unknown option `%s'"4358msgstr "Unbekannte Option: `%s'"43594360#: parse-options.c:8614361#, c-format4362msgid "unknown switch `%c'"4363msgstr "Unbekannter Schalter `%c'"43644365#: parse-options.c:8634366#, c-format4367msgid "unknown non-ascii option in string: `%s'"4368msgstr "Unbekannte nicht-Ascii Option in String: `%s'"43694370#: parse-options.c:8874371msgid "..."4372msgstr "..."43734374#: parse-options.c:9064375#, c-format4376msgid "usage: %s"4377msgstr "Verwendung: %s"43784379#. TRANSLATORS: the colon here should align with the4380#. one in "usage: %s" translation.4381#.4382#: parse-options.c:9124383#, c-format4384msgid " or: %s"4385msgstr " oder: %s"43864387#: parse-options.c:9154388#, c-format4389msgid " %s"4390msgstr " %s"43914392#: parse-options.c:9544393msgid "-NUM"4394msgstr "-NUM"43954396#: parse-options.c:9684397#, c-format4398msgid "alias of --%s"4399msgstr "Alias für --%s"44004401#: parse-options-cb.c:20 parse-options-cb.c:244402#, c-format4403msgid "option `%s' expects a numerical value"4404msgstr "Option `%s' erwartet einen numerischen Wert."44054406#: parse-options-cb.c:414407#, c-format4408msgid "malformed expiration date '%s'"4409msgstr "Fehlerhaftes Ablaufdatum '%s'"44104411#: parse-options-cb.c:544412#, c-format4413msgid "option `%s' expects \"always\", \"auto\", or \"never\""4414msgstr "Option `%s' erwartet \"always\", \"auto\" oder \"never\"."44154416#: parse-options-cb.c:130 parse-options-cb.c:1474417#, c-format4418msgid "malformed object name '%s'"4419msgstr "fehlerhafter Objekt-Name '%s'"44204421#: path.c:8974422#, c-format4423msgid "Could not make %s writable by group"4424msgstr "Konnte Gruppenschreibrecht für %s nicht setzen."44254426#: pathspec.c:1284427msgid "Escape character '\\' not allowed as last character in attr value"4428msgstr "Escape-Zeichen '\\' als letztes Zeichen in Attributwert nicht erlaubt"44294430#: pathspec.c:1464431msgid "Only one 'attr:' specification is allowed."4432msgstr "Es ist nur eine Angabe von 'attr:' erlaubt."44334434#: pathspec.c:1494435msgid "attr spec must not be empty"4436msgstr "Angabe von 'attr:' darf nicht leer sein"44374438#: pathspec.c:1924439#, c-format4440msgid "invalid attribute name %s"4441msgstr "Ungültiger Attributname %s"44424443#: pathspec.c:2574444msgid "global 'glob' and 'noglob' pathspec settings are incompatible"4445msgstr ""4446"Globale Einstellungen zur Pfadspezifikation 'glob' und 'noglob' sind "4447"inkompatibel."44484449#: pathspec.c:2644450msgid ""4451"global 'literal' pathspec setting is incompatible with all other global "4452"pathspec settings"4453msgstr ""4454"Globale Einstellung zur Pfadspezifikation 'literal' ist inkompatibel\n"4455"mit allen anderen Optionen."44564457#: pathspec.c:3044458msgid "invalid parameter for pathspec magic 'prefix'"4459msgstr "ungültiger Parameter für Pfadspezifikationsangabe 'prefix'"44604461#: pathspec.c:3254462#, c-format4463msgid "Invalid pathspec magic '%.*s' in '%s'"4464msgstr "ungültige Pfadspezifikationsangabe '%.*s' in '%s'"44654466#: pathspec.c:3304467#, c-format4468msgid "Missing ')' at the end of pathspec magic in '%s'"4469msgstr "Fehlendes ')' am Ende der Pfadspezifikationsangabe in '%s'"44704471#: pathspec.c:3684472#, c-format4473msgid "Unimplemented pathspec magic '%c' in '%s'"4474msgstr "nicht unterstützte Pfadspezifikationsangabe '%c' in '%s'"44754476#: pathspec.c:4274477#, c-format4478msgid "%s: 'literal' and 'glob' are incompatible"4479msgstr "%s: 'literal' und 'glob' sind inkompatibel"44804481#: pathspec.c:4404482#, c-format4483msgid "%s: '%s' is outside repository"4484msgstr "%s: '%s' liegt außerhalb des Repositories"44854486#: pathspec.c:5144487#, c-format4488msgid "'%s' (mnemonic: '%c')"4489msgstr "'%s' (Kürzel: '%c')"44904491#: pathspec.c:5244492#, c-format4493msgid "%s: pathspec magic not supported by this command: %s"4494msgstr ""4495"%s: Pfadspezifikationsangabe wird von diesem Befehl nicht unterstützt: %s"44964497#: pathspec.c:5914498#, c-format4499msgid "pathspec '%s' is beyond a symbolic link"4500msgstr "Pfadspezifikation '%s' ist hinter einer symbolischen Verknüpfung"45014502#: pkt-line.c:924503msgid "unable to write flush packet"4504msgstr "Konnte Flush-Paket nicht schreiben."45054506#: pkt-line.c:994507msgid "unable to write delim packet"4508msgstr "Konnte Delim-Paket nicht schreiben."45094510#: pkt-line.c:1064511msgid "flush packet write failed"4512msgstr "Flush beim Schreiben des Pakets fehlgeschlagen."45134514#: pkt-line.c:146 pkt-line.c:2324515msgid "protocol error: impossibly long line"4516msgstr "Protokollfehler: unmöglich lange Zeile"45174518#: pkt-line.c:162 pkt-line.c:1644519msgid "packet write with format failed"4520msgstr "Schreiben des Pakets mit Format fehlgeschlagen."45214522#: pkt-line.c:1964523msgid "packet write failed - data exceeds max packet size"4524msgstr ""4525"Schreiben des Pakets fehlgeschlagen - Daten überschreiten maximale Paketgröße"45264527#: pkt-line.c:203 pkt-line.c:2104528msgid "packet write failed"4529msgstr "Schreiben des Pakets fehlgeschlagen."45304531#: pkt-line.c:2954532msgid "read error"4533msgstr "Lesefehler"45344535#: pkt-line.c:3034536msgid "the remote end hung up unexpectedly"4537msgstr "Die Gegenseite hat unerwartet abgebrochen."45384539#: pkt-line.c:3314540#, c-format4541msgid "protocol error: bad line length character: %.4s"4542msgstr "Protokollfehler: ungültiges Zeichen für Zeilenlänge: %.4s"45434544#: pkt-line.c:341 pkt-line.c:3464545#, c-format4546msgid "protocol error: bad line length %d"4547msgstr "Protokollfehler: ungültige Zeilenlänge %d"45484549#: pkt-line.c:3624550#, c-format4551msgid "remote error: %s"4552msgstr "Fehler am anderen Ende: %s"45534554#: preload-index.c:1194555msgid "Refreshing index"4556msgstr "Aktualisiere Index"45574558#: preload-index.c:1384559#, c-format4560msgid "unable to create threaded lstat: %s"4561msgstr "Kann Thread für lstat nicht erzeugen: %s"45624563#: pretty.c:9664564msgid "unable to parse --pretty format"4565msgstr "Konnte --pretty Format nicht parsen."45664567#: range-diff.c:564568msgid "could not start `log`"4569msgstr "Konnte `log` nicht starten."45704571#: range-diff.c:594572msgid "could not read `log` output"4573msgstr "Konnte Ausgabe von `log` nicht lesen."45744575#: range-diff.c:74 sequencer.c:48974576#, c-format4577msgid "could not parse commit '%s'"4578msgstr "Konnte Commit '%s' nicht parsen."45794580#: range-diff.c:2244581msgid "failed to generate diff"4582msgstr "Fehler beim Generieren des Diffs."45834584#: range-diff.c:455 range-diff.c:4574585#, c-format4586msgid "could not parse log for '%s'"4587msgstr "Konnte Log für '%s' nicht parsen."45884589#: read-cache.c:6804590#, c-format4591msgid "will not add file alias '%s' ('%s' already exists in index)"4592msgstr ""4593"Dateialias '%s' wird nicht hinzugefügt ('%s' existiert bereits im Index)."45944595#: read-cache.c:6964596msgid "cannot create an empty blob in the object database"4597msgstr "Kann keinen leeren Blob in die Objektdatenbank schreiben."45984599#: read-cache.c:7184600#, c-format4601msgid "%s: can only add regular files, symbolic links or git-directories"4602msgstr ""4603"%s: Kann nur reguläre Dateien, symbolische Links oder Git-Verzeichnisse "4604"hinzufügen."46054606#: read-cache.c:7234607#, c-format4608msgid "'%s' does not have a commit checked out"4609msgstr "'%s' hat keinen Commit ausgecheckt"46104611#: read-cache.c:7754612#, c-format4613msgid "unable to index file '%s'"4614msgstr "Konnte Datei '%s' nicht indizieren."46154616#: read-cache.c:7944617#, c-format4618msgid "unable to add '%s' to index"4619msgstr "Konnte '%s' nicht dem Index hinzufügen."46204621#: read-cache.c:8054622#, c-format4623msgid "unable to stat '%s'"4624msgstr "Konnte '%s' nicht lesen."46254626#: read-cache.c:13144627#, c-format4628msgid "'%s' appears as both a file and as a directory"4629msgstr "'%s' scheint eine Datei und ein Verzeichnis zu sein."46304631#: read-cache.c:14994632msgid "Refresh index"4633msgstr "Aktualisiere Index"46344635#: read-cache.c:16134636#, c-format4637msgid ""4638"index.version set, but the value is invalid.\n"4639"Using version %i"4640msgstr ""4641"index.version gesetzt, aber Wert ungültig.\n"4642"Verwende Version %i"46434644#: read-cache.c:16234645#, c-format4646msgid ""4647"GIT_INDEX_VERSION set, but the value is invalid.\n"4648"Using version %i"4649msgstr ""4650"GIT_INDEX_VERSION gesetzt, aber Wert ungültig.\n"4651"Verwende Version %i"46524653#: read-cache.c:16794654#, c-format4655msgid "bad signature 0x%08x"4656msgstr "Ungültige Signatur 0x%08x"46574658#: read-cache.c:16824659#, c-format4660msgid "bad index version %d"4661msgstr "Ungültige Index-Version %d"46624663#: read-cache.c:16914664msgid "bad index file sha1 signature"4665msgstr "Ungültige SHA1-Signatur der Index-Datei."46664667#: read-cache.c:17214668#, c-format4669msgid "index uses %.4s extension, which we do not understand"4670msgstr "Index verwendet Erweiterung %.4s, welche wir nicht unterstützen."46714672#: read-cache.c:17234673#, c-format4674msgid "ignoring %.4s extension"4675msgstr "Ignoriere Erweiterung %.4s"46764677#: read-cache.c:17604678#, c-format4679msgid "unknown index entry format 0x%08x"4680msgstr "Unbekanntes Format für Index-Eintrag 0x%08x"46814682#: read-cache.c:17764683#, c-format4684msgid "malformed name field in the index, near path '%s'"4685msgstr "Ungültiges Namensfeld im Index, in der Nähe von Pfad '%s'."46864687#: read-cache.c:18334688msgid "unordered stage entries in index"4689msgstr "Ungeordnete Stage-Einträge im Index."46904691#: read-cache.c:18364692#, c-format4693msgid "multiple stage entries for merged file '%s'"4694msgstr "Mehrere Stage-Einträge für zusammengeführte Datei '%s'."46954696#: read-cache.c:18394697#, c-format4698msgid "unordered stage entries for '%s'"4699msgstr "Ungeordnete Stage-Einträge für '%s'."47004701#: read-cache.c:1946 read-cache.c:2234 rerere.c:565 rerere.c:599 rerere.c:11114702#: builtin/add.c:460 builtin/check-ignore.c:178 builtin/checkout.c:3584703#: builtin/checkout.c:672 builtin/checkout.c:1060 builtin/clean.c:9554704#: builtin/commit.c:344 builtin/diff-tree.c:120 builtin/grep.c:4984705#: builtin/mv.c:145 builtin/reset.c:245 builtin/rm.c:2714706#: builtin/submodule--helper.c:3304707msgid "index file corrupt"4708msgstr "Index-Datei beschädigt"47094710#: read-cache.c:20874711#, c-format4712msgid "unable to create load_cache_entries thread: %s"4713msgstr "Kann Thread für load_cache_entries nicht erzeugen: %s"47144715#: read-cache.c:21004716#, c-format4717msgid "unable to join load_cache_entries thread: %s"4718msgstr "Kann Thread für load_cache_entries nicht erzeugen: %s"47194720#: read-cache.c:21334721#, c-format4722msgid "%s: index file open failed"4723msgstr "%s: Öffnen der Index-Datei fehlgeschlagen."47244725#: read-cache.c:21374726#, c-format4727msgid "%s: cannot stat the open index"4728msgstr "%s: Kann geöffneten Index nicht lesen."47294730#: read-cache.c:21414731#, c-format4732msgid "%s: index file smaller than expected"4733msgstr "%s: Index-Datei ist kleiner als erwartet."47344735#: read-cache.c:21454736#, c-format4737msgid "%s: unable to map index file"4738msgstr "%s: Konnte Index-Datei nicht einlesen."47394740#: read-cache.c:21874741#, c-format4742msgid "unable to create load_index_extensions thread: %s"4743msgstr "Kann Thread für load_index_extensions nicht erzeugen: %s"47444745#: read-cache.c:22144746#, c-format4747msgid "unable to join load_index_extensions thread: %s"4748msgstr "Kann Thread für load_index_extensions nicht beitreten: %s"47494750#: read-cache.c:22464751#, c-format4752msgid "could not freshen shared index '%s'"4753msgstr "Konnte geteilten Index '%s' nicht aktualisieren."47544755#: read-cache.c:22934756#, c-format4757msgid "broken index, expect %s in %s, got %s"4758msgstr "Fehlerhafter Index. Erwartete %s in %s, erhielt %s."47594760#: read-cache.c:2989 wrapper.c:658 builtin/merge.c:11174761#, c-format4762msgid "could not close '%s'"4763msgstr "Konnte '%s' nicht schließen."47644765#: read-cache.c:3092 sequencer.c:2354 sequencer.c:38074766#, c-format4767msgid "could not stat '%s'"4768msgstr "Konnte '%s' nicht lesen."47694770#: read-cache.c:31054771#, c-format4772msgid "unable to open git dir: %s"4773msgstr "konnte Git-Verzeichnis nicht öffnen: %s"47744775#: read-cache.c:31174776#, c-format4777msgid "unable to unlink: %s"4778msgstr "Konnte '%s' nicht entfernen."47794780#: read-cache.c:31424781#, c-format4782msgid "cannot fix permission bits on '%s'"4783msgstr "Konnte Zugriffsberechtigung auf '%s' nicht setzen."47844785#: read-cache.c:32914786#, c-format4787msgid "%s: cannot drop to stage #0"4788msgstr "%s: Kann nicht auf Stufe #0 wechseln."47894790#: rebase-interactive.c:264791#, c-format4792msgid ""4793"unrecognized setting %s for option rebase.missingCommitsCheck. Ignoring."4794msgstr ""4795"Nicht erkannte Einstellung %s für Option rebase.missingCommitsCheck. "4796"Ignoriere."47974798#: rebase-interactive.c:354799msgid ""4800"\n"4801"Commands:\n"4802"p, pick <commit> = use commit\n"4803"r, reword <commit> = use commit, but edit the commit message\n"4804"e, edit <commit> = use commit, but stop for amending\n"4805"s, squash <commit> = use commit, but meld into previous commit\n"4806"f, fixup <commit> = like \"squash\", but discard this commit's log message\n"4807"x, exec <command> = run command (the rest of the line) using shell\n"4808"b, break = stop here (continue rebase later with 'git rebase --continue')\n"4809"d, drop <commit> = remove commit\n"4810"l, label <label> = label current HEAD with a name\n"4811"t, reset <label> = reset HEAD to a label\n"4812"m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]\n"4813". create a merge commit using the original merge commit's\n"4814". message (or the oneline, if no original merge commit was\n"4815". specified). Use -c <commit> to reword the commit message.\n"4816"\n"4817"These lines can be re-ordered; they are executed from top to bottom.\n"4818msgstr ""4819"\n"4820"Befehle:\n"4821"p, pick <Commit> = Commit verwenden\n"4822"r, reword <Commit> = Commit verwenden, aber Commit-Beschreibung bearbeiten\n"4823"e, edit <Commit> = Commit verwenden, aber zum Nachbessern anhalten\n"4824"s, squash <Commit> = Commit verwenden, aber mit vorherigem Commit vereinen\n"4825"f, fixup <Commit> = wie \"squash\", aber diese Commit-Beschreibung "4826"verwerfen\n"4827"x, exec <Commit> = Befehl (Rest der Zeile) mittels Shell ausführen\n"4828"b, break = hier anhalten (Rebase später mit 'git rebase --continue' "4829"fortsetzen)\n"4830"d, drop <Commit> = Commit entfernen\n"4831"l, label <Label> = aktuellen HEAD mit Label versehen\n"4832"t, reset <Label> = HEAD zu einem Label umsetzen\n"4833"m, merge [-C <Commit> | -c <Commit>] <Label> [# <eineZeile>]\n"4834". Merge-Commit mit der originalen Merge-Commit-Beschreibung erstellen\n"4835". (oder die eine Zeile, wenn keine originale Merge-Commit-"4836"Beschreibung\n"4837". spezifiziert ist). Benutzen Sie -c <Commit> zum Bearbeiten der\n"4838". Commit-Beschreibung.\n"4839"\n"4840"Diese Zeilen können umsortiert werden; Sie werden von oben nach unten\n"4841"ausgeführt.\n"48424843#: rebase-interactive.c:564844#, c-format4845msgid "Rebase %s onto %s (%d command)"4846msgid_plural "Rebase %s onto %s (%d commands)"4847msgstr[0] "Rebase von %s auf %s (%d Kommando)"4848msgstr[1] "Rebase von %s auf %s (%d Kommandos)"48494850#: rebase-interactive.c:65 git-rebase--preserve-merges.sh:1734851msgid ""4852"\n"4853"Do not remove any line. Use 'drop' explicitly to remove a commit.\n"4854msgstr ""4855"\n"4856"Keine Zeile entfernen. Benutzen Sie 'drop', um explizit einen Commit zu\n"4857"entfernen.\n"48584859#: rebase-interactive.c:68 git-rebase--preserve-merges.sh:1774860msgid ""4861"\n"4862"If you remove a line here THAT COMMIT WILL BE LOST.\n"4863msgstr ""4864"\n"4865"Wenn Sie hier eine Zeile entfernen, wird DIESER COMMIT VERLOREN GEHEN.\n"48664867#: rebase-interactive.c:74 git-rebase--preserve-merges.sh:8164868msgid ""4869"\n"4870"You are editing the todo file of an ongoing interactive rebase.\n"4871"To continue rebase after editing, run:\n"4872" git rebase --continue\n"4873"\n"4874msgstr ""4875"\n"4876"Sie bearbeiten gerade die TODO-Datei eines laufenden interaktiven Rebase.\n"4877"Um den Rebase nach dem Editieren fortzusetzen, führen Sie aus:\n"4878" git rebase --continue\n"4879"\n"48804881#: rebase-interactive.c:79 git-rebase--preserve-merges.sh:8934882msgid ""4883"\n"4884"However, if you remove everything, the rebase will be aborted.\n"4885"\n"4886msgstr ""4887"\n"4888"Wenn Sie jedoch alles löschen, wird der Rebase abgebrochen.\n"4889"\n"48904891#: rebase-interactive.c:85 git-rebase--preserve-merges.sh:9004892msgid "Note that empty commits are commented out"4893msgstr "Leere Commits sind auskommentiert."48944895#: rebase-interactive.c:105 rerere.c:485 rerere.c:692 sequencer.c:33394896#: sequencer.c:3365 sequencer.c:4996 builtin/fsck.c:356 builtin/rebase.c:2354897#, c-format4898msgid "could not write '%s'"4899msgstr "Konnte '%s' nicht schreiben."49004901#: rebase-interactive.c:1084902#, c-format4903msgid "could not copy '%s' to '%s'."4904msgstr "Konnte '%s' nicht nach '%s' kopieren."49054906#: rebase-interactive.c:1734907#, c-format4908msgid ""4909"Warning: some commits may have been dropped accidentally.\n"4910"Dropped commits (newer to older):\n"4911msgstr ""4912"Warnung: Einige Commits könnten aus Versehen entfernt worden sein.\n"4913"Entfernte Commits (neu zu alt):\n"49144915#: rebase-interactive.c:1804916#, c-format4917msgid ""4918"To avoid this message, use \"drop\" to explicitly remove a commit.\n"4919"\n"4920"Use 'git config rebase.missingCommitsCheck' to change the level of "4921"warnings.\n"4922"The possible behaviours are: ignore, warn, error.\n"4923"\n"4924msgstr ""4925"Um diese Meldung zu vermeiden, benutzen Sie \"drop\", um exlizit Commits zu\n"4926"entfernen.\n"4927"\n"4928"Benutzen Sie 'git config rebase.missingCommitsCheck', um die Stufe der\n"4929"Warnungen zu ändern.\n"4930"Die möglichen Verhaltensweisen sind: ignore, warn, error.\n"49314932#: refs.c:1924933#, c-format4934msgid "%s does not point to a valid object!"4935msgstr "%s zeigt auf kein gültiges Objekt!"49364937#: refs.c:5974938#, c-format4939msgid "ignoring dangling symref %s"4940msgstr "Ignoriere unreferenzierte symbolische Referenz %s"49414942#: refs.c:599 ref-filter.c:19824943#, c-format4944msgid "ignoring broken ref %s"4945msgstr "Ignoriere fehlerhafte Referenz %s"49464947#: refs.c:7344948#, c-format4949msgid "could not open '%s' for writing: %s"4950msgstr "Konnte '%s' nicht zum Schreiben öffnen: %s"49514952#: refs.c:744 refs.c:7954953#, c-format4954msgid "could not read ref '%s'"4955msgstr "Konnte Referenz '%s' nicht lesen."49564957#: refs.c:7504958#, c-format4959msgid "ref '%s' already exists"4960msgstr "Referenz '%s' existiert bereits."49614962#: refs.c:7554963#, c-format4964msgid "unexpected object ID when writing '%s'"4965msgstr "Unerwartete Objekt-ID beim Schreiben von '%s'."49664967#: refs.c:763 sequencer.c:400 sequencer.c:2679 sequencer.c:28054968#: sequencer.c:2819 sequencer.c:3076 sequencer.c:4913 wrapper.c:6564969#, c-format4970msgid "could not write to '%s'"4971msgstr "Konnte nicht nach '%s' schreiben."49724973#: refs.c:790 wrapper.c:225 wrapper.c:395 builtin/am.c:715 builtin/rebase.c:9934974#, c-format4975msgid "could not open '%s' for writing"4976msgstr "Konnte '%s' nicht zum Schreiben öffnen."49774978#: refs.c:7974979#, c-format4980msgid "unexpected object ID when deleting '%s'"4981msgstr "Unerwartete Objekt-ID beim Löschen von '%s'."49824983#: refs.c:9284984#, c-format4985msgid "log for ref %s has gap after %s"4986msgstr "Log für Referenz %s hat eine Lücke nach %s."49874988#: refs.c:9344989#, c-format4990msgid "log for ref %s unexpectedly ended on %s"4991msgstr "Log für Referenz %s unerwartet bei %s beendet."49924993#: refs.c:9934994#, c-format4995msgid "log for %s is empty"4996msgstr "Log für %s ist leer."49974998#: refs.c:10854999#, c-format5000msgid "refusing to update ref with bad name '%s'"5001msgstr "Verweigere Aktualisierung einer Referenz mit fehlerhaftem Namen '%s'."50025003#: refs.c:11615004#, c-format5005msgid "update_ref failed for ref '%s': %s"5006msgstr "update_ref für Referenz '%s' fehlgeschlagen: %s"50075008#: refs.c:19425009#, c-format5010msgid "multiple updates for ref '%s' not allowed"5011msgstr "Mehrere Aktualisierungen für Referenz '%s' nicht erlaubt."50125013#: refs.c:19745014msgid "ref updates forbidden inside quarantine environment"5015msgstr ""5016"Aktualisierungen von Referenzen ist innerhalb der Quarantäne-Umgebung "5017"verboten."50185019#: refs.c:2070 refs.c:21005020#, c-format5021msgid "'%s' exists; cannot create '%s'"5022msgstr "'%s' existiert; kann '%s' nicht erstellen"50235024#: refs.c:2076 refs.c:21115025#, c-format5026msgid "cannot process '%s' and '%s' at the same time"5027msgstr "Kann '%s' und '%s' nicht zur selben Zeit verarbeiten."50285029#: refs/files-backend.c:12345030#, c-format5031msgid "could not remove reference %s"5032msgstr "Konnte Referenz %s nicht löschen"50335034#: refs/files-backend.c:1248 refs/packed-backend.c:15325035#: refs/packed-backend.c:15425036#, c-format5037msgid "could not delete reference %s: %s"5038msgstr "Konnte Referenz %s nicht entfernen: %s"50395040#: refs/files-backend.c:1251 refs/packed-backend.c:15455041#, c-format5042msgid "could not delete references: %s"5043msgstr "Konnte Referenzen nicht entfernen: %s"50445045#: refspec.c:1375046#, c-format5047msgid "invalid refspec '%s'"5048msgstr "Ungültige Refspec '%s'"50495050#: ref-filter.c:39 wt-status.c:19095051msgid "gone"5052msgstr "entfernt"50535054#: ref-filter.c:405055#, c-format5056msgid "ahead %d"5057msgstr "%d voraus"50585059#: ref-filter.c:415060#, c-format5061msgid "behind %d"5062msgstr "%d hinterher"50635064#: ref-filter.c:425065#, c-format5066msgid "ahead %d, behind %d"5067msgstr "%d voraus, %d hinterher"50685069#: ref-filter.c:1385070#, c-format5071msgid "expected format: %%(color:<color>)"5072msgstr "Erwartetes Format: %%(color:<Farbe>)"50735074#: ref-filter.c:1405075#, c-format5076msgid "unrecognized color: %%(color:%s)"5077msgstr "nicht erkannte Farbe: %%(color:%s)"50785079#: ref-filter.c:1625080#, c-format5081msgid "Integer value expected refname:lstrip=%s"5082msgstr "Positiver Wert erwartet refname:lstrip=%s"50835084#: ref-filter.c:1665085#, c-format5086msgid "Integer value expected refname:rstrip=%s"5087msgstr "Positiver Wert erwartet refname:rstrip=%s"50885089#: ref-filter.c:1685090#, c-format5091msgid "unrecognized %%(%s) argument: %s"5092msgstr "nicht erkanntes %%(%s) Argument: %s"50935094#: ref-filter.c:2235095#, c-format5096msgid "%%(objecttype) does not take arguments"5097msgstr "%%(objecttype) akzeptiert keine Argumente"50985099#: ref-filter.c:2455100#, c-format5101msgid "unrecognized %%(objectsize) argument: %s"5102msgstr "nicht erkanntes %%(objectsize) Argument: %s"51035104#: ref-filter.c:2535105#, c-format5106msgid "%%(deltabase) does not take arguments"5107msgstr "%%(deltabase) akzeptiert keine Argumente"51085109#: ref-filter.c:2655110#, c-format5111msgid "%%(body) does not take arguments"5112msgstr "%%(body) akzeptiert keine Argumente"51135114#: ref-filter.c:2745115#, c-format5116msgid "%%(subject) does not take arguments"5117msgstr "%%(subject) akzeptiert keine Argumente"51185119#: ref-filter.c:2965120#, c-format5121msgid "unknown %%(trailers) argument: %s"5122msgstr "unbekanntes %%(trailers) Argument: %s"51235124#: ref-filter.c:3255125#, c-format5126msgid "positive value expected contents:lines=%s"5127msgstr "Positiver Wert erwartet contents:lines=%s"51285129#: ref-filter.c:3275130#, c-format5131msgid "unrecognized %%(contents) argument: %s"5132msgstr "nicht erkanntes %%(contents) Argument: %s"51335134#: ref-filter.c:3425135#, c-format5136msgid "positive value expected objectname:short=%s"5137msgstr "Positiver Wert erwartet objectname:short=%s"51385139#: ref-filter.c:3465140#, c-format5141msgid "unrecognized %%(objectname) argument: %s"5142msgstr "nicht erkanntes %%(objectname) Argument: %s"51435144#: ref-filter.c:3765145#, c-format5146msgid "expected format: %%(align:<width>,<position>)"5147msgstr "Erwartetes Format: %%(align:<Breite>,<Position>)"51485149#: ref-filter.c:3885150#, c-format5151msgid "unrecognized position:%s"5152msgstr "nicht erkannte Position:%s"51535154#: ref-filter.c:3955155#, c-format5156msgid "unrecognized width:%s"5157msgstr "nicht erkannte Breite:%s"51585159#: ref-filter.c:4045160#, c-format5161msgid "unrecognized %%(align) argument: %s"5162msgstr "nicht erkanntes %%(align) Argument: %s"51635164#: ref-filter.c:4125165#, c-format5166msgid "positive width expected with the %%(align) atom"5167msgstr "Positive Breitenangabe für %%(align) erwartet"51685169#: ref-filter.c:4305170#, c-format5171msgid "unrecognized %%(if) argument: %s"5172msgstr "nicht erkanntes %%(if) Argument: %s"51735174#: ref-filter.c:5315175#, c-format5176msgid "malformed field name: %.*s"5177msgstr "Fehlerhafter Feldname: %.*s"51785179#: ref-filter.c:5585180#, c-format5181msgid "unknown field name: %.*s"5182msgstr "Unbekannter Feldname: %.*s"51835184#: ref-filter.c:5625185#, c-format5186msgid ""5187"not a git repository, but the field '%.*s' requires access to object data"5188msgstr ""5189"Kein Git-Repository, aber das Feld '%.*s' erfordert Zugriff auf Objektdaten."51905191#: ref-filter.c:6865192#, c-format5193msgid "format: %%(if) atom used without a %%(then) atom"5194msgstr "format: %%(if) Atom ohne ein %%(then) Atom verwendet"51955196#: ref-filter.c:7495197#, c-format5198msgid "format: %%(then) atom used without an %%(if) atom"5199msgstr "format: %%(then) Atom ohne ein %%(if) Atom verwendet"52005201#: ref-filter.c:7515202#, c-format5203msgid "format: %%(then) atom used more than once"5204msgstr "format: %%(then) Atom mehr als einmal verwendet"52055206#: ref-filter.c:7535207#, c-format5208msgid "format: %%(then) atom used after %%(else)"5209msgstr "format: %%(then) Atom nach %%(else) verwendet"52105211#: ref-filter.c:7815212#, c-format5213msgid "format: %%(else) atom used without an %%(if) atom"5214msgstr "format: %%(else) Atom ohne ein %%(if) Atom verwendet"52155216#: ref-filter.c:7835217#, c-format5218msgid "format: %%(else) atom used without a %%(then) atom"5219msgstr "Format: %%(else) Atom ohne ein %%(then) Atom verwendet"52205221#: ref-filter.c:7855222#, c-format5223msgid "format: %%(else) atom used more than once"5224msgstr "Format: %%(end) Atom mehr als einmal verwendet"52255226#: ref-filter.c:8005227#, c-format5228msgid "format: %%(end) atom used without corresponding atom"5229msgstr "Format: %%(end) Atom ohne zugehöriges Atom verwendet"52305231#: ref-filter.c:8575232#, c-format5233msgid "malformed format string %s"5234msgstr "Fehlerhafter Formatierungsstring %s"52355236#: ref-filter.c:14535237#, c-format5238msgid "(no branch, rebasing %s)"5239msgstr "(kein Branch, Rebase von Branch %s im Gange)"52405241#: ref-filter.c:14565242#, c-format5243msgid "(no branch, rebasing detached HEAD %s)"5244msgstr "(kein Branch, Rebase von losgelöstem HEAD %s)"52455246#: ref-filter.c:14595247#, c-format5248msgid "(no branch, bisect started on %s)"5249msgstr "(kein Branch, binäre Suche begonnen bei %s)"52505251#. TRANSLATORS: make sure this matches "HEAD5252#. detached at " in wt-status.c5253#.5254#: ref-filter.c:14675255#, c-format5256msgid "(HEAD detached at %s)"5257msgstr "(HEAD losgelöst bei %s)"52585259#. TRANSLATORS: make sure this matches "HEAD5260#. detached from " in wt-status.c5261#.5262#: ref-filter.c:14745263#, c-format5264msgid "(HEAD detached from %s)"5265msgstr "(HEAD losgelöst von %s)"52665267#: ref-filter.c:14785268msgid "(no branch)"5269msgstr "(kein Branch)"52705271#: ref-filter.c:1512 ref-filter.c:16695272#, c-format5273msgid "missing object %s for %s"5274msgstr "Objekt %s fehlt für %s"52755276#: ref-filter.c:15225277#, c-format5278msgid "parse_object_buffer failed on %s for %s"5279msgstr "parse_object_buffer bei %s für %s fehlgeschlagen"52805281#: ref-filter.c:18885282#, c-format5283msgid "malformed object at '%s'"5284msgstr "fehlerhaftes Objekt bei '%s'"52855286#: ref-filter.c:19775287#, c-format5288msgid "ignoring ref with broken name %s"5289msgstr "Ignoriere Referenz mit fehlerhaftem Namen %s"52905291#: ref-filter.c:22635292#, c-format5293msgid "format: %%(end) atom missing"5294msgstr "Format: %%(end) Atom fehlt"52955296#: ref-filter.c:23635297#, c-format5298msgid "option `%s' is incompatible with --merged"5299msgstr "Die Option `%s' ist inkompatibel mit --merged."53005301#: ref-filter.c:23665302#, c-format5303msgid "option `%s' is incompatible with --no-merged"5304msgstr "Die Option `%s' ist inkompatibel mit --no-merged."53055306#: ref-filter.c:23765307#, c-format5308msgid "malformed object name %s"5309msgstr "Missgebildeter Objektname %s"53105311#: ref-filter.c:23815312#, c-format5313msgid "option `%s' must point to a commit"5314msgstr "Die Option `%s' muss auf einen Commit zeigen."53155316#: remote.c:3635317#, c-format5318msgid "config remote shorthand cannot begin with '/': %s"5319msgstr ""5320"Kürzel für Remote-Repository in der Konfiguration kann nicht mit '/' "5321"beginnen: %s"53225323#: remote.c:4105324msgid "more than one receivepack given, using the first"5325msgstr "Mehr als ein receivepack-Befehl angegeben, benutze den ersten."53265327#: remote.c:4185328msgid "more than one uploadpack given, using the first"5329msgstr "Mehr als ein uploadpack-Befehl angegeben, benutze den ersten."53305331#: remote.c:6085332#, c-format5333msgid "Cannot fetch both %s and %s to %s"5334msgstr "Kann 'fetch' nicht für sowohl %s als auch %s nach %s ausführen."53355336#: remote.c:6125337#, c-format5338msgid "%s usually tracks %s, not %s"5339msgstr "%s folgt üblicherweise %s, nicht %s"53405341#: remote.c:6165342#, c-format5343msgid "%s tracks both %s and %s"5344msgstr "%s folgt sowohl %s als auch %s"53455346#: remote.c:6845347#, c-format5348msgid "key '%s' of pattern had no '*'"5349msgstr "Schlüssel '%s' des Musters hatte kein '*'."53505351#: remote.c:6945352#, c-format5353msgid "value '%s' of pattern has no '*'"5354msgstr "Wert '%s' des Musters hat kein '*'."53555356#: remote.c:10005357#, c-format5358msgid "src refspec %s does not match any"5359msgstr "Src-Refspec %s entspricht keiner Referenz."53605361#: remote.c:10055362#, c-format5363msgid "src refspec %s matches more than one"5364msgstr "Src-Refspec %s entspricht mehr als einer Referenz."53655366#. TRANSLATORS: "matches '%s'%" is the <dst> part of "git push5367#. <remote> <src>:<dst>" push, and "being pushed ('%s')" is5368#. the <src>.5369#.5370#: remote.c:10205371#, c-format5372msgid ""5373"The destination you provided is not a full refname (i.e.,\n"5374"starting with \"refs/\"). We tried to guess what you meant by:\n"5375"\n"5376"- Looking for a ref that matches '%s' on the remote side.\n"5377"- Checking if the <src> being pushed ('%s')\n"5378" is a ref in \"refs/{heads,tags}/\". If so we add a corresponding\n"5379" refs/{heads,tags}/ prefix on the remote side.\n"5380"\n"5381"Neither worked, so we gave up. You must fully qualify the ref."5382msgstr ""5383"Das angegebene Ziel ist kein vollständiger Referenzname (startet mit \"refs/"5384"\").\n"5385"Wir versuchten zu erraten, was Sie meinten, mit:\n"5386"\n"5387"- Suche einer Referenz, die mit '%s' übereinstimmt, auf der Remote-Seite\n"5388"- Prüfung, ob die versendete <Quelle> ('%s') eine Referenz in \"refs/{heads,"5389"tags}\"\n"5390" ist, in dessen Falle wir einen entsprechenden refs/{heads,tags} Präfix "5391"auf\n"5392" der Remote-Seite hinzufügen würden.\n"5393"\n"5394"Keines hat funktioniert, sodass wir aufgegeben haben. Sie müssen die\n"5395"Referenz mit vollqualifizierten Namen angeben."53965397#: remote.c:10405398#, c-format5399msgid ""5400"The <src> part of the refspec is a commit object.\n"5401"Did you mean to create a new branch by pushing to\n"5402"'%s:refs/heads/%s'?"5403msgstr ""5404"Der <Quelle> Teil der Refspec ist ein Commit-Objekt.\n"5405"Meinten Sie, einen neuen Branch mittels Push nach\n"5406"'%s:refs/heads/%s' zu erstellen?"54075408#: remote.c:10455409#, c-format5410msgid ""5411"The <src> part of the refspec is a tag object.\n"5412"Did you mean to create a new tag by pushing to\n"5413"'%s:refs/tags/%s'?"5414msgstr ""5415"Der <Quelle> Teil der Refspec ist ein Tag-Objekt.\n"5416"Meinten Sie, einen neuen Tag mittels Push nach\n"5417"'%s:refs/tags/%s' zu erstellen?"54185419#: remote.c:10505420#, c-format5421msgid ""5422"The <src> part of the refspec is a tree object.\n"5423"Did you mean to tag a new tree by pushing to\n"5424"'%s:refs/tags/%s'?"5425msgstr ""5426"Der <Quelle> Teil der Refspec ist ein Tree-Objekt.\n"5427"Meinten Sie, einen Tag für ein neues Tree-Objekt\n"5428"mittels Push nach '%s:refs/tags/'%s' zu erstellen?"54295430#: remote.c:10555431#, c-format5432msgid ""5433"The <src> part of the refspec is a blob object.\n"5434"Did you mean to tag a new blob by pushing to\n"5435"'%s:refs/tags/%s'?"5436msgstr ""5437"Der <Quelle> Teil der Refspec ist ein Blob-Objekt.\n"5438"Meinten Sie, einen Tag für ein neues Blob-Objekt\n"5439"mittels Push nach '%s:refs/tags/%s' zu erstellen?"54405441#: remote.c:10915442#, c-format5443msgid "%s cannot be resolved to branch"5444msgstr "%s kann nicht zu Branch aufgelöst werden."54455446#: remote.c:11025447#, c-format5448msgid "unable to delete '%s': remote ref does not exist"5449msgstr "Konnte '%s' nicht löschen: Remote-Referenz existiert nicht."54505451#: remote.c:11145452#, c-format5453msgid "dst refspec %s matches more than one"5454msgstr "Dst-Refspec %s entspricht mehr als einer Referenz."54555456#: remote.c:11215457#, c-format5458msgid "dst ref %s receives from more than one src"5459msgstr "Dst-Referenz %s empfängt von mehr als einer Quelle"54605461#: remote.c:1624 remote.c:17255462msgid "HEAD does not point to a branch"5463msgstr "HEAD zeigt auf keinen Branch"54645465#: remote.c:16335466#, c-format5467msgid "no such branch: '%s'"5468msgstr "Kein solcher Branch: '%s'"54695470#: remote.c:16365471#, c-format5472msgid "no upstream configured for branch '%s'"5473msgstr "Kein Upstream-Branch für Branch '%s' konfiguriert."54745475#: remote.c:16425476#, c-format5477msgid "upstream branch '%s' not stored as a remote-tracking branch"5478msgstr "Upstream-Branch '%s' nicht als Remote-Tracking-Branch gespeichert"54795480#: remote.c:16575481#, c-format5482msgid "push destination '%s' on remote '%s' has no local tracking branch"5483msgstr ""5484"Ziel für \"push\" '%s' auf Remote-Repository '%s' hat keinen lokal gefolgten "5485"Branch"54865487#: remote.c:16695488#, c-format5489msgid "branch '%s' has no remote for pushing"5490msgstr "Branch '%s' hat keinen Upstream-Branch gesetzt"54915492#: remote.c:16795493#, c-format5494msgid "push refspecs for '%s' do not include '%s'"5495msgstr "Push-Refspecs für '%s' beinhalten nicht '%s'"54965497#: remote.c:16925498msgid "push has no destination (push.default is 'nothing')"5499msgstr "kein Ziel für \"push\" (push.default ist 'nothing')"55005501#: remote.c:17145502msgid "cannot resolve 'simple' push to a single destination"5503msgstr "kann einzelnes Ziel für \"push\" im Modus 'simple' nicht auflösen"55045505#: remote.c:18405506#, c-format5507msgid "couldn't find remote ref %s"5508msgstr "Konnte Remote-Referenz %s nicht finden."55095510#: remote.c:18535511#, c-format5512msgid "* Ignoring funny ref '%s' locally"5513msgstr "* Ignoriere sonderbare Referenz '%s' lokal"55145515#: remote.c:20165516#, c-format5517msgid "Your branch is based on '%s', but the upstream is gone.\n"5518msgstr ""5519"Ihr Branch basiert auf '%s', aber der Upstream-Branch wurde entfernt.\n"55205521#: remote.c:20205522msgid " (use \"git branch --unset-upstream\" to fixup)\n"5523msgstr " (benutzen Sie \"git branch --unset-upstream\" zum Beheben)\n"55245525#: remote.c:20235526#, c-format5527msgid "Your branch is up to date with '%s'.\n"5528msgstr "Ihr Branch ist auf demselben Stand wie '%s'.\n"55295530#: remote.c:20275531#, c-format5532msgid "Your branch and '%s' refer to different commits.\n"5533msgstr "Ihr Branch und '%s' zeigen auf unterschiedliche Commits.\n"55345535#: remote.c:20305536#, c-format5537msgid " (use \"%s\" for details)\n"5538msgstr " (benutzen Sie \"%s\" für Details)\n"55395540#: remote.c:20345541#, c-format5542msgid "Your branch is ahead of '%s' by %d commit.\n"5543msgid_plural "Your branch is ahead of '%s' by %d commits.\n"5544msgstr[0] "Ihr Branch ist %2$d Commit vor '%1$s'.\n"5545msgstr[1] "Ihr Branch ist %2$d Commits vor '%1$s'.\n"55465547#: remote.c:20405548msgid " (use \"git push\" to publish your local commits)\n"5549msgstr " (benutzen Sie \"git push\", um lokale Commits zu publizieren)\n"55505551#: remote.c:20435552#, c-format5553msgid "Your branch is behind '%s' by %d commit, and can be fast-forwarded.\n"5554msgid_plural ""5555"Your branch is behind '%s' by %d commits, and can be fast-forwarded.\n"5556msgstr[0] ""5557"Ihr Branch ist %2$d Commit hinter '%1$s', und kann vorgespult werden.\n"5558msgstr[1] ""5559"Ihr Branch ist %2$d Commits hinter '%1$s', und kann vorgespult werden.\n"55605561#: remote.c:20515562msgid " (use \"git pull\" to update your local branch)\n"5563msgstr ""5564" (benutzen Sie \"git pull\", um Ihren lokalen Branch zu aktualisieren)\n"55655566#: remote.c:20545567#, c-format5568msgid ""5569"Your branch and '%s' have diverged,\n"5570"and have %d and %d different commit each, respectively.\n"5571msgid_plural ""5572"Your branch and '%s' have diverged,\n"5573"and have %d and %d different commits each, respectively.\n"5574msgstr[0] ""5575"Ihr Branch und '%s' sind divergiert,\n"5576"und haben jeweils %d und %d unterschiedliche Commits.\n"5577msgstr[1] ""5578"Ihr Branch und '%s' sind divergiert,\n"5579"und haben jeweils %d und %d unterschiedliche Commits.\n"55805581#: remote.c:20645582msgid " (use \"git pull\" to merge the remote branch into yours)\n"5583msgstr ""5584" (benutzen Sie \"git pull\", um Ihren Branch mit dem Remote-Branch "5585"zusammenzuführen)\n"55865587#: remote.c:22475588#, c-format5589msgid "cannot parse expected object name '%s'"5590msgstr "Kann erwarteten Objektnamen '%s' nicht parsen."55915592#: replace-object.c:215593#, c-format5594msgid "bad replace ref name: %s"5595msgstr "ungültiger Name für ersetzende Referenz: %s"55965597#: replace-object.c:305598#, c-format5599msgid "duplicate replace ref: %s"5600msgstr "doppelte ersetzende Referenz: %s"56015602#: replace-object.c:735603#, c-format5604msgid "replace depth too high for object %s"5605msgstr "Ersetzungstiefe zu hoch für Objekt %s"56065607#: rerere.c:217 rerere.c:226 rerere.c:2295608msgid "corrupt MERGE_RR"5609msgstr "Fehlerhaftes MERGE_RR"56105611#: rerere.c:264 rerere.c:2695612msgid "unable to write rerere record"5613msgstr "Konnte Rerere-Eintrag nicht schreiben."56145615#: rerere.c:4955616#, c-format5617msgid "there were errors while writing '%s' (%s)"5618msgstr "Fehler beim Schreiben von '%s' (%s)."56195620#: rerere.c:4985621#, c-format5622msgid "failed to flush '%s'"5623msgstr "Flush bei '%s' fehlgeschlagen."56245625#: rerere.c:503 rerere.c:10395626#, c-format5627msgid "could not parse conflict hunks in '%s'"5628msgstr "Konnte Konflikt-Blöcke in '%s' nicht parsen."56295630#: rerere.c:6845631#, c-format5632msgid "failed utime() on '%s'"5633msgstr "Fehler beim Aufruf von utime() auf '%s'."56345635#: rerere.c:6945636#, c-format5637msgid "writing '%s' failed"5638msgstr "Schreiben von '%s' fehlgeschlagen."56395640#: rerere.c:7145641#, c-format5642msgid "Staged '%s' using previous resolution."5643msgstr "'%s' mit vorheriger Konfliktauflösung zum Commit vorgemerkt."56445645#: rerere.c:7535646#, c-format5647msgid "Recorded resolution for '%s'."5648msgstr "Konfliktauflösung für '%s' aufgezeichnet."56495650#: rerere.c:7885651#, c-format5652msgid "Resolved '%s' using previous resolution."5653msgstr "Konflikte in '%s' mit vorheriger Konfliktauflösung beseitigt."56545655#: rerere.c:8035656#, c-format5657msgid "cannot unlink stray '%s'"5658msgstr "Kann '%s' nicht löschen."56595660#: rerere.c:8075661#, c-format5662msgid "Recorded preimage for '%s'"5663msgstr "Preimage für '%s' aufgezeichnet."56645665#: rerere.c:881 submodule.c:2024 builtin/log.c:17505666#: builtin/submodule--helper.c:1417 builtin/submodule--helper.c:14275667#, c-format5668msgid "could not create directory '%s'"5669msgstr "Konnte Verzeichnis '%s' nicht erstellen."56705671#: rerere.c:10575672#, c-format5673msgid "failed to update conflicted state in '%s'"5674msgstr "Fehler beim Aktualisieren des Konflikt-Status in '%s'."56755676#: rerere.c:1068 rerere.c:10755677#, c-format5678msgid "no remembered resolution for '%s'"5679msgstr "Keine aufgezeichnete Konfliktauflösung für '%s'."56805681#: rerere.c:10775682#, c-format5683msgid "cannot unlink '%s'"5684msgstr "Kann '%s' nicht löschen."56855686#: rerere.c:10875687#, c-format5688msgid "Updated preimage for '%s'"5689msgstr "Preimage für '%s' aktualisiert."56905691#: rerere.c:10965692#, c-format5693msgid "Forgot resolution for '%s'\n"5694msgstr "Aufgezeichnete Konfliktauflösung für '%s' gelöscht.\n"56955696#: rerere.c:11995697msgid "unable to open rr-cache directory"5698msgstr "Konnte rr-cache Verzeichnis nicht öffnen."56995700#: revision.c:24765701msgid "your current branch appears to be broken"5702msgstr "Ihr aktueller Branch scheint fehlerhaft zu sein."57035704#: revision.c:24795705#, c-format5706msgid "your current branch '%s' does not have any commits yet"5707msgstr "Ihr aktueller Branch '%s' hat noch keine Commits."57085709#: revision.c:26795710msgid "--first-parent is incompatible with --bisect"5711msgstr "Die Optionen --first-parent und --bisect sind inkompatibel."57125713#: revision.c:26835714msgid "-L does not yet support diff formats besides -p and -s"5715msgstr "-L unterstützt noch keine anderen Diff-Formate außer -p und -s"57165717#: run-command.c:7635718msgid "open /dev/null failed"5719msgstr "Öffnen von /dev/null fehlgeschlagen"57205721#: run-command.c:12695722#, c-format5723msgid "cannot create async thread: %s"5724msgstr "Konnte Thread für async nicht erzeugen: %s"57255726#: run-command.c:13335727#, c-format5728msgid ""5729"The '%s' hook was ignored because it's not set as executable.\n"5730"You can disable this warning with `git config advice.ignoredHook false`."5731msgstr ""5732"Der '%s' Hook wurde ignoriert, weil er nicht als ausführbar markiert ist.\n"5733"Sie können diese Warnung mit `git config advice.ignoredHook false` "5734"deaktivieren."57355736#: send-pack.c:1415737msgid "unexpected flush packet while reading remote unpack status"5738msgstr "Unerwartetes Flush-Paket beim Lesen des Remote-Unpack-Status."57395740#: send-pack.c:1435741#, c-format5742msgid "unable to parse remote unpack status: %s"5743msgstr "Konnte Status des Entpackens der Gegenseite nicht parsen: %s"57445745#: send-pack.c:1455746#, c-format5747msgid "remote unpack failed: %s"5748msgstr "Entpacken auf der Gegenseite fehlgeschlagen: %s"57495750#: send-pack.c:3065751msgid "failed to sign the push certificate"5752msgstr "Fehler beim Signieren des \"push\"-Zertifikates"57535754#: send-pack.c:4205755msgid "the receiving end does not support --signed push"5756msgstr ""5757"die Gegenseite unterstützt keinen signierten Versand (\"--signed push\")"57585759#: send-pack.c:4225760msgid ""5761"not sending a push certificate since the receiving end does not support --"5762"signed push"5763msgstr ""5764"kein Versand des \"push\"-Zertifikates, da die Gegenseite keinen signierten\n"5765"Versand (\"--signed push\") unterstützt"57665767#: send-pack.c:4345768msgid "the receiving end does not support --atomic push"5769msgstr "die Gegenseite unterstützt keinen atomaren Versand (\"--atomic push\")"57705771#: send-pack.c:4395772msgid "the receiving end does not support push options"5773msgstr "die Gegenseite unterstützt keine Push-Optionen"57745775#: sequencer.c:1875776#, c-format5777msgid "invalid commit message cleanup mode '%s'"5778msgstr "Ungültiger \"cleanup\"-Modus '%s' für Commit-Beschreibungen."57795780#: sequencer.c:2925781#, c-format5782msgid "could not delete '%s'"5783msgstr "Konnte '%s' nicht löschen."57845785#: sequencer.c:3185786msgid "revert"5787msgstr "Revert"57885789#: sequencer.c:3205790msgid "cherry-pick"5791msgstr "Cherry-Pick"57925793#: sequencer.c:3225794msgid "rebase -i"5795msgstr "interaktives Rebase"57965797#: sequencer.c:3245798#, c-format5799msgid "unknown action: %d"5800msgstr "Unbekannte Aktion: %d"58015802#: sequencer.c:3825803msgid ""5804"after resolving the conflicts, mark the corrected paths\n"5805"with 'git add <paths>' or 'git rm <paths>'"5806msgstr ""5807"nach Auflösung der Konflikte markieren Sie die korrigierten Pfade\n"5808"mit 'git add <Pfade>' oder 'git rm <Pfade>'"58095810#: sequencer.c:3855811msgid ""5812"after resolving the conflicts, mark the corrected paths\n"5813"with 'git add <paths>' or 'git rm <paths>'\n"5814"and commit the result with 'git commit'"5815msgstr ""5816"nach Auflösung der Konflikte markieren Sie die korrigierten Pfade\n"5817"mit 'git add <Pfade>' oder 'git rm <Pfade>' und tragen Sie das Ergebnis mit\n"5818"'git commit' ein"58195820#: sequencer.c:398 sequencer.c:28015821#, c-format5822msgid "could not lock '%s'"5823msgstr "Konnte '%s' nicht sperren"58245825#: sequencer.c:4055826#, c-format5827msgid "could not write eol to '%s'"5828msgstr "Konnte EOL nicht nach '%s' schreiben."58295830#: sequencer.c:410 sequencer.c:2684 sequencer.c:2807 sequencer.c:28215831#: sequencer.c:30845832#, c-format5833msgid "failed to finalize '%s'"5834msgstr "Fehler beim Fertigstellen von '%s'."58355836#: sequencer.c:433 sequencer.c:978 sequencer.c:1652 sequencer.c:27045837#: sequencer.c:3066 sequencer.c:3175 builtin/am.c:245 builtin/commit.c:7605838#: builtin/merge.c:1115 builtin/rebase.c:5675839#, c-format5840msgid "could not read '%s'"5841msgstr "Konnte '%s' nicht lesen"58425843#: sequencer.c:4595844#, c-format5845msgid "your local changes would be overwritten by %s."5846msgstr "Ihre lokalen Änderungen würden durch den %s überschrieben werden."58475848#: sequencer.c:4635849msgid "commit your changes or stash them to proceed."5850msgstr ""5851"Committen Sie Ihre Änderungen oder benutzen Sie \"stash\", um fortzufahren."58525853#: sequencer.c:4955854#, c-format5855msgid "%s: fast-forward"5856msgstr "%s: Vorspulen"58575858#: sequencer.c:534 builtin/tag.c:5555859#, c-format5860msgid "Invalid cleanup mode %s"5861msgstr "Ungültiger \"cleanup\" Modus %s"58625863#. TRANSLATORS: %s will be "revert", "cherry-pick" or5864#. "rebase -i".5865#.5866#: sequencer.c:6295867#, c-format5868msgid "%s: Unable to write new index file"5869msgstr "%s: Konnte neue Index-Datei nicht schreiben"58705871#: sequencer.c:6465872msgid "unable to update cache tree"5873msgstr "Konnte Cache-Verzeichnis nicht aktualisieren."58745875#: sequencer.c:6605876msgid "could not resolve HEAD commit"5877msgstr "Konnte HEAD-Commit nicht auflösen."58785879#: sequencer.c:7405880#, c-format5881msgid "no key present in '%.*s'"5882msgstr "Kein Schlüssel in '%.*s' vorhanden."58835884#: sequencer.c:7515885#, c-format5886msgid "unable to dequote value of '%s'"5887msgstr "Konnte Anführungszeichen von '%s' nicht entfernen."58885889#: sequencer.c:788 wrapper.c:227 wrapper.c:397 builtin/am.c:7065890#: builtin/am.c:798 builtin/merge.c:1112 builtin/rebase.c:10355891#, c-format5892msgid "could not open '%s' for reading"5893msgstr "Konnte '%s' nicht zum Lesen öffnen."58945895#: sequencer.c:7985896msgid "'GIT_AUTHOR_NAME' already given"5897msgstr "'GIT_AUTHOR_NAME' bereits angegeben."58985899#: sequencer.c:8035900msgid "'GIT_AUTHOR_EMAIL' already given"5901msgstr "'GIT_AUTHOR_EMAIL' bereits angegeben."59025903#: sequencer.c:8085904msgid "'GIT_AUTHOR_DATE' already given"5905msgstr "'GIT_AUTHOR_DATE' bereits angegeben."59065907#: sequencer.c:8125908#, c-format5909msgid "unknown variable '%s'"5910msgstr "Unbekannte Variable '%s'"59115912#: sequencer.c:8175913msgid "missing 'GIT_AUTHOR_NAME'"5914msgstr "'GIT_AUTHOR_NAME' fehlt."59155916#: sequencer.c:8195917msgid "missing 'GIT_AUTHOR_EMAIL'"5918msgstr "'GIT_AUTHOR_EMAIL' fehlt."59195920#: sequencer.c:8215921msgid "missing 'GIT_AUTHOR_DATE'"5922msgstr "'GIT_AUTHOR_DATE' fehlt."59235924#: sequencer.c:8815925#, c-format5926msgid "invalid date format '%s' in '%s'"5927msgstr "Ungültiges Datumsformat '%s' in '%s'"59285929#: sequencer.c:8985930#, c-format5931msgid ""5932"you have staged changes in your working tree\n"5933"If these changes are meant to be squashed into the previous commit, run:\n"5934"\n"5935" git commit --amend %s\n"5936"\n"5937"If they are meant to go into a new commit, run:\n"5938"\n"5939" git commit %s\n"5940"\n"5941"In both cases, once you're done, continue with:\n"5942"\n"5943" git rebase --continue\n"5944msgstr ""5945"Es befinden sich zum Commit vorgemerkte Änderungen in Ihrem "5946"Arbeitsverzeichnis.\n"5947"Wenn diese Änderungen in den vorherigen Commit aufgenommen werden sollen,\n"5948"führen Sie aus:\n"5949"\n"5950" git commit --amend %s\n"5951"\n"5952"Wenn daraus ein neuer Commit erzeugt werden soll, führen Sie aus:\n"5953"\n"5954" git commit %s\n"5955"\n"5956"Im Anschluss führen Sie zum Fortfahren aus:\n"5957"\n"5958" git rebase --continue\n"59595960#: sequencer.c:9925961msgid "writing root commit"5962msgstr "Root-Commit schreiben"59635964#: sequencer.c:12135965msgid "'prepare-commit-msg' hook failed"5966msgstr "'prepare-commit-msg' Hook fehlgeschlagen."59675968#: sequencer.c:12205969msgid ""5970"Your name and email address were configured automatically based\n"5971"on your username and hostname. Please check that they are accurate.\n"5972"You can suppress this message by setting them explicitly. Run the\n"5973"following command and follow the instructions in your editor to edit\n"5974"your configuration file:\n"5975"\n"5976" git config --global --edit\n"5977"\n"5978"After doing this, you may fix the identity used for this commit with:\n"5979"\n"5980" git commit --amend --reset-author\n"5981msgstr ""5982"Ihr Name und E-Mail Adresse wurden automatisch auf Basis\n"5983"Ihres Benutzer- und Rechnernamens konfiguriert. Bitte prüfen Sie, dass\n"5984"diese zutreffend sind. Sie können diese Meldung unterdrücken, indem Sie\n"5985"diese explizit setzen. Führen Sie dazu den folgenden Befehl aus und folgen\n"5986"Sie den Anweisungen in Ihrem Editor, um die Konfigurationsdatei zu "5987"bearbeiten:\n"5988"\n"5989" git config --global --edit\n"5990"\n"5991"Nachdem Sie das getan haben, können Sie Ihre Identität für diesen Commit\n"5992"ändern mit:\n"5993"\n"5994" git commit --amend --reset-author\n"59955996#: sequencer.c:12335997msgid ""5998"Your name and email address were configured automatically based\n"5999"on your username and hostname. Please check that they are accurate.\n"6000"You can suppress this message by setting them explicitly:\n"6001"\n"6002" git config --global user.name \"Your Name\"\n"6003" git config --global user.email you@example.com\n"6004"\n"6005"After doing this, you may fix the identity used for this commit with:\n"6006"\n"6007" git commit --amend --reset-author\n"6008msgstr ""6009"Ihr Name und E-Mail Adresse wurden automatisch auf Basis\n"6010"Ihres Benutzer- und Rechnernamens konfiguriert. Bitte prüfen Sie, dass\n"6011"diese zutreffend sind. Sie können diese Meldung unterdrücken, indem Sie\n"6012"diese explizit setzen:\n"6013"\n"6014" git config --global user.name \"Ihr Name\"\n"6015" git config --global user.email ihre@emailadresse.de\n"6016"\n"6017"Nachdem Sie das getan haben, können Sie Ihre Identität für diesen Commit "6018"ändern:\n"6019"\n"6020" git commit --amend --reset-author\n"60216022#: sequencer.c:12756023msgid "couldn't look up newly created commit"6024msgstr "Konnte neu erstellten Commit nicht nachschlagen."60256026#: sequencer.c:12776027msgid "could not parse newly created commit"6028msgstr "Konnte neu erstellten Commit nicht analysieren."60296030#: sequencer.c:13236031msgid "unable to resolve HEAD after creating commit"6032msgstr "Konnte HEAD nicht auflösen, nachdem der Commit erstellt wurde."60336034#: sequencer.c:13256035msgid "detached HEAD"6036msgstr "losgelöster HEAD"60376038#: sequencer.c:13296039msgid " (root-commit)"6040msgstr " (Root-Commit)"60416042#: sequencer.c:13506043msgid "could not parse HEAD"6044msgstr "Konnte HEAD nicht parsen."60456046#: sequencer.c:13526047#, c-format6048msgid "HEAD %s is not a commit!"6049msgstr "HEAD %s ist kein Commit!"60506051#: sequencer.c:1356 builtin/commit.c:15516052msgid "could not parse HEAD commit"6053msgstr "Konnte Commit von HEAD nicht analysieren."60546055#: sequencer.c:1408 sequencer.c:20016056msgid "unable to parse commit author"6057msgstr "Konnte Commit-Autor nicht parsen."60586059#: sequencer.c:1418 builtin/am.c:1572 builtin/merge.c:6886060msgid "git write-tree failed to write a tree"6061msgstr "\"git write-tree\" schlug beim Schreiben eines \"Tree\"-Objektes fehl"60626063#: sequencer.c:1435 sequencer.c:14966064#, c-format6065msgid "unable to read commit message from '%s'"6066msgstr "Konnte Commit-Beschreibung von '%s' nicht lesen."60676068#: sequencer.c:1462 builtin/am.c:1594 builtin/commit.c:1650 builtin/merge.c:8826069#: builtin/merge.c:9066070msgid "failed to write commit object"6071msgstr "Fehler beim Schreiben des Commit-Objektes."60726073#: sequencer.c:15236074#, c-format6075msgid "could not parse commit %s"6076msgstr "Konnte Commit %s nicht parsen."60776078#: sequencer.c:15286079#, c-format6080msgid "could not parse parent commit %s"6081msgstr "Konnte Eltern-Commit %s nicht parsen."60826083#: sequencer.c:1602 sequencer.c:17126084#, c-format6085msgid "unknown command: %d"6086msgstr "Unbekannter Befehl: %d"60876088#: sequencer.c:1659 sequencer.c:16846089#, c-format6090msgid "This is a combination of %d commits."6091msgstr "Das ist eine Kombination aus %d Commits."60926093#: sequencer.c:16696094msgid "need a HEAD to fixup"6095msgstr "benötige HEAD für fixup"60966097#: sequencer.c:1671 sequencer.c:31116098msgid "could not read HEAD"6099msgstr "Konnte HEAD nicht lesen"61006101#: sequencer.c:16736102msgid "could not read HEAD's commit message"6103msgstr "Konnte Commit-Beschreibung von HEAD nicht lesen"61046105#: sequencer.c:16796106#, c-format6107msgid "cannot write '%s'"6108msgstr "kann '%s' nicht schreiben"61096110#: sequencer.c:1686 git-rebase--preserve-merges.sh:4416111msgid "This is the 1st commit message:"6112msgstr "Das ist die erste Commit-Beschreibung:"61136114#: sequencer.c:16946115#, c-format6116msgid "could not read commit message of %s"6117msgstr "Konnte Commit-Beschreibung von %s nicht lesen."61186119#: sequencer.c:17016120#, c-format6121msgid "This is the commit message #%d:"6122msgstr "Das ist Commit-Beschreibung #%d:"61236124#: sequencer.c:17076125#, c-format6126msgid "The commit message #%d will be skipped:"6127msgstr "Die Commit-Beschreibung #%d wird ausgelassen:"61286129#: sequencer.c:17956130msgid "your index file is unmerged."6131msgstr "Ihre Index-Datei ist nicht zusammengeführt."61326133#: sequencer.c:18026134msgid "cannot fixup root commit"6135msgstr "kann fixup nicht auf Root-Commit anwenden"61366137#: sequencer.c:18216138#, c-format6139msgid "commit %s is a merge but no -m option was given."6140msgstr "Commit %s ist ein Merge, aber die Option -m wurde nicht angegeben."61416142#: sequencer.c:1829 sequencer.c:18376143#, c-format6144msgid "commit %s does not have parent %d"6145msgstr "Commit %s hat keinen Eltern-Commit %d"61466147#: sequencer.c:18436148#, c-format6149msgid "cannot get commit message for %s"6150msgstr "Kann keine Commit-Beschreibung für %s bekommen."61516152#. TRANSLATORS: The first %s will be a "todo" command like6153#. "revert" or "pick", the second %s a SHA1.6154#: sequencer.c:18626155#, c-format6156msgid "%s: cannot parse parent commit %s"6157msgstr "%s: kann Eltern-Commit %s nicht parsen"61586159#: sequencer.c:19276160#, c-format6161msgid "could not rename '%s' to '%s'"6162msgstr "Konnte '%s' nicht zu '%s' umbenennen."61636164#: sequencer.c:19826165#, c-format6166msgid "could not revert %s... %s"6167msgstr "Konnte \"revert\" nicht auf %s... (%s) ausführen"61686169#: sequencer.c:19836170#, c-format6171msgid "could not apply %s... %s"6172msgstr "Konnte %s... (%s) nicht anwenden"61736174#: sequencer.c:20426175#, c-format6176msgid "git %s: failed to read the index"6177msgstr "git %s: Fehler beim Lesen des Index"61786179#: sequencer.c:20496180#, c-format6181msgid "git %s: failed to refresh the index"6182msgstr "git %s: Fehler beim Aktualisieren des Index"61836184#: sequencer.c:21186185#, c-format6186msgid "%s does not accept arguments: '%s'"6187msgstr "%s akzeptiert keine Argumente: '%s'"61886189#: sequencer.c:21276190#, c-format6191msgid "missing arguments for %s"6192msgstr "Fehlende Argumente für %s."61936194#: sequencer.c:21646195#, c-format6196msgid "could not parse '%.*s'"6197msgstr "Konnte '%.*s' nicht parsen."61986199#: sequencer.c:22266200#, c-format6201msgid "invalid line %d: %.*s"6202msgstr "Ungültige Zeile %d: %.*s"62036204#: sequencer.c:22376205#, c-format6206msgid "cannot '%s' without a previous commit"6207msgstr "Kann '%s' nicht ohne vorherigen Commit ausführen"62086209#: sequencer.c:2285 builtin/rebase.c:153 builtin/rebase.c:1786210#: builtin/rebase.c:204 builtin/rebase.c:2296211#, c-format6212msgid "could not read '%s'."6213msgstr "Konnte '%s' nicht lesen."62146215#: sequencer.c:23606216msgid "please fix this using 'git rebase --edit-todo'."6217msgstr ""6218"Bitte beheben Sie dieses, indem Sie 'git rebase --edit-todo' ausführen."62196220#: sequencer.c:23626221#, c-format6222msgid "unusable instruction sheet: '%s'"6223msgstr "Unbenutzbares Instruktionsblatt: '%s'"62246225#: sequencer.c:23676226msgid "no commits parsed."6227msgstr "Keine Commits geparst."62286229#: sequencer.c:23786230msgid "cannot cherry-pick during a revert."6231msgstr "Kann Cherry-Pick nicht während eines Reverts ausführen."62326233#: sequencer.c:23806234msgid "cannot revert during a cherry-pick."6235msgstr "Kann Revert nicht während eines Cherry-Picks ausführen."62366237#: sequencer.c:24626238#, c-format6239msgid "invalid value for %s: %s"6240msgstr "Ungültiger Wert für %s: %s"62416242#: sequencer.c:25496243msgid "unusable squash-onto"6244msgstr "Unbenutzbares squash-onto."62456246#: sequencer.c:25656247#, c-format6248msgid "malformed options sheet: '%s'"6249msgstr "Fehlerhaftes Optionsblatt: '%s'"62506251#: sequencer.c:2648 sequencer.c:42276252msgid "empty commit set passed"6253msgstr "leere Menge von Commits übergeben"62546255#: sequencer.c:26566256msgid "a cherry-pick or revert is already in progress"6257msgstr "\"cherry-pick\" oder \"revert\" ist bereits im Gang"62586259#: sequencer.c:26576260msgid "try \"git cherry-pick (--continue | --quit | --abort)\""6261msgstr "versuchen Sie \"git cherry-pick (--continue | --quit | --abort)\""62626263#: sequencer.c:26606264#, c-format6265msgid "could not create sequencer directory '%s'"6266msgstr "Konnte \"sequencer\"-Verzeichnis '%s' nicht erstellen."62676268#: sequencer.c:26746269msgid "could not lock HEAD"6270msgstr "Konnte HEAD nicht sperren"62716272#: sequencer.c:2729 sequencer.c:39796273msgid "no cherry-pick or revert in progress"6274msgstr "kein \"cherry-pick\" oder \"revert\" im Gang"62756276#: sequencer.c:27316277msgid "cannot resolve HEAD"6278msgstr "kann HEAD nicht auflösen"62796280#: sequencer.c:2733 sequencer.c:27686281msgid "cannot abort from a branch yet to be born"6282msgstr "kann nicht abbrechen: bin auf einem Branch, der noch nicht geboren ist"62836284#: sequencer.c:2754 builtin/grep.c:7326285#, c-format6286msgid "cannot open '%s'"6287msgstr "kann '%s' nicht öffnen"62886289#: sequencer.c:27566290#, c-format6291msgid "cannot read '%s': %s"6292msgstr "Kann '%s' nicht lesen: %s"62936294#: sequencer.c:27576295msgid "unexpected end of file"6296msgstr "Unerwartetes Dateiende"62976298#: sequencer.c:27636299#, c-format6300msgid "stored pre-cherry-pick HEAD file '%s' is corrupt"6301msgstr "gespeicherte \"pre-cherry-pick\" HEAD Datei '%s' ist beschädigt"63026303#: sequencer.c:27746304msgid "You seem to have moved HEAD. Not rewinding, check your HEAD!"6305msgstr ""6306"Sie scheinen HEAD verändert zu haben. Keine Rückspulung, prüfen Sie HEAD."63076308#: sequencer.c:2903 sequencer.c:38946309#, c-format6310msgid "could not update %s"6311msgstr "Konnte %s nicht aktualisieren."63126313#: sequencer.c:2941 sequencer.c:38746314msgid "cannot read HEAD"6315msgstr "Kann HEAD nicht lesen"63166317#: sequencer.c:29586318#, c-format6319msgid "unable to copy '%s' to '%s'"6320msgstr "Konnte '%s' nicht nach '%s' kopieren."63216322#: sequencer.c:29666323#, c-format6324msgid ""6325"You can amend the commit now, with\n"6326"\n"6327" git commit --amend %s\n"6328"\n"6329"Once you are satisfied with your changes, run\n"6330"\n"6331" git rebase --continue\n"6332msgstr ""6333"Sie können den Commit nun nachbessern mit:\n"6334"\n"6335" git commit --amend %s\n"6336"\n"6337"Sobald Sie mit Ihren Änderungen zufrieden sind, führen Sie aus:\n"6338"\n"6339" git rebase --continue\n"63406341#: sequencer.c:29766342#, c-format6343msgid "Could not apply %s... %.*s"6344msgstr "Konnte %s... (%.*s) nicht anwenden"63456346#: sequencer.c:29836347#, c-format6348msgid "Could not merge %.*s"6349msgstr "Konnte \"%.*s\" nicht zusammenführen."63506351#: sequencer.c:2997 sequencer.c:3001 builtin/difftool.c:6336352#, c-format6353msgid "could not copy '%s' to '%s'"6354msgstr "Konnte '%s' nicht nach '%s' kopieren."63556356#: sequencer.c:3023 sequencer.c:3446 builtin/rebase.c:839 builtin/rebase.c:15806357#: builtin/rebase.c:1940 builtin/rebase.c:19956358msgid "could not read index"6359msgstr "Konnte den Index nicht lesen."63606361#: sequencer.c:30286362#, c-format6363msgid ""6364"execution failed: %s\n"6365"%sYou can fix the problem, and then run\n"6366"\n"6367" git rebase --continue\n"6368"\n"6369msgstr ""6370"Ausführung fehlgeschlagen: %s\n"6371"%sSie können das Problem beheben, und dann\n"6372"\n"6373"\tgit rebase --continue\n"6374"\n"6375"ausführen.\n"63766377#: sequencer.c:30346378msgid "and made changes to the index and/or the working tree\n"6379msgstr "Der Index und/oder das Arbeitsverzeichnis wurde geändert.\n"63806381#: sequencer.c:30406382#, c-format6383msgid ""6384"execution succeeded: %s\n"6385"but left changes to the index and/or the working tree\n"6386"Commit or stash your changes, and then run\n"6387"\n"6388" git rebase --continue\n"6389"\n"6390msgstr ""6391"Ausführung erfolgreich: %s\n"6392"Aber Änderungen in Index oder Arbeitsverzeichnis verblieben.\n"6393"Committen Sie Ihre Änderungen oder benutzen Sie \"stash\".\n"6394"Führen Sie dann aus:\n"6395"\n"6396" git rebase --continue\n"6397"\n"63986399#: sequencer.c:31016400#, c-format6401msgid "illegal label name: '%.*s'"6402msgstr "Unerlaubter Beschriftungsname: '%.*s'"64036404#: sequencer.c:31556405msgid "writing fake root commit"6406msgstr "unechten Root-Commit schreiben"64076408#: sequencer.c:31606409msgid "writing squash-onto"6410msgstr "squash-onto schreiben"64116412#: sequencer.c:3198 builtin/rebase.c:844 builtin/rebase.c:8506413#, c-format6414msgid "failed to find tree of %s"6415msgstr "Fehler beim Finden des \"Tree\"-Objektes von %s."64166417#: sequencer.c:3216 builtin/rebase.c:8636418msgid "could not write index"6419msgstr "Konnte Index nicht schreiben."64206421#: sequencer.c:32436422#, c-format6423msgid "could not resolve '%s'"6424msgstr "Konnte '%s' nicht auflösen."64256426#: sequencer.c:32716427msgid "cannot merge without a current revision"6428msgstr "Kann nicht ohne einen aktuellen Commit mergen."64296430#: sequencer.c:32936431#, c-format6432msgid "unable to parse '%.*s'"6433msgstr "Konnte '%.*s' nicht parsen."64346435#: sequencer.c:33026436#, c-format6437msgid "nothing to merge: '%.*s'"6438msgstr "Nichts zum Zusammenführen: '%.*s'"64396440#: sequencer.c:33146441msgid "octopus merge cannot be executed on top of a [new root]"6442msgstr ""6443"Octupus-Merge kann nicht auf Basis von [neuem Root-Commit] ausgeführt werden."64446445#: sequencer.c:33296446#, c-format6447msgid "could not get commit message of '%s'"6448msgstr "Konnte keine Commit-Beschreibung von '%s' bekommen."64496450#: sequencer.c:34786451#, c-format6452msgid "could not even attempt to merge '%.*s'"6453msgstr "Konnte nicht einmal versuchen '%.*s' zu mergen."64546455#: sequencer.c:34946456msgid "merge: Unable to write new index file"6457msgstr "merge: Konnte neue Index-Datei nicht schreiben."64586459#: sequencer.c:3562 builtin/rebase.c:7116460#, c-format6461msgid "Applied autostash.\n"6462msgstr "Automatischen Stash angewendet.\n"64636464#: sequencer.c:35746465#, c-format6466msgid "cannot store %s"6467msgstr "kann %s nicht speichern"64686469#: sequencer.c:3577 builtin/rebase.c:7276470#, c-format6471msgid ""6472"Applying autostash resulted in conflicts.\n"6473"Your changes are safe in the stash.\n"6474"You can run \"git stash pop\" or \"git stash drop\" at any time.\n"6475msgstr ""6476"Anwendung des automatischen Stash resultierte in Konflikten.\n"6477"Ihre Änderungen sind im Stash sicher.\n"6478"Sie können jederzeit \"git stash pop\" oder \"git stash drop\" ausführen.\n"64796480#: sequencer.c:36386481#, c-format6482msgid "could not checkout %s"6483msgstr "Konnte %s nicht auschecken."64846485#: sequencer.c:36526486#, c-format6487msgid "%s: not a valid OID"6488msgstr "%s: keine gültige OID"64896490#: sequencer.c:3657 git-rebase--preserve-merges.sh:7246491msgid "could not detach HEAD"6492msgstr "Konnte HEAD nicht loslösen"64936494#: sequencer.c:36726495#, c-format6496msgid "Stopped at HEAD\n"6497msgstr "Angehalten bei HEAD\n"64986499#: sequencer.c:36746500#, c-format6501msgid "Stopped at %s\n"6502msgstr "Angehalten bei %s\n"65036504#: sequencer.c:36826505#, c-format6506msgid ""6507"Could not execute the todo command\n"6508"\n"6509" %.*s\n"6510"It has been rescheduled; To edit the command before continuing, please\n"6511"edit the todo list first:\n"6512"\n"6513" git rebase --edit-todo\n"6514" git rebase --continue\n"6515msgstr ""6516"Konnte TODO-Befehl nicht ausführen\n"6517"\n"6518" %.*s\n"6519"Dieser wurde neu angesetzt; Um den Befehl zu bearbeiten, bevor fortgesetzt "6520"wird,\n"6521"bearbeiten Sie bitte zuerst die TODO-Liste:\n"6522"\n"6523" git rebase --edit-todo\n"6524" git rebase --continue\n"65256526#: sequencer.c:37596527#, c-format6528msgid "Stopped at %s... %.*s\n"6529msgstr "Angehalten bei %s... %.*s\n"65306531#: sequencer.c:38376532#, c-format6533msgid "unknown command %d"6534msgstr "Unbekannter Befehl %d"65356536#: sequencer.c:38826537msgid "could not read orig-head"6538msgstr "Konnte orig-head nicht lesen."65396540#: sequencer.c:38876541msgid "could not read 'onto'"6542msgstr "Konnte 'onto' nicht lesen."65436544#: sequencer.c:39016545#, c-format6546msgid "could not update HEAD to %s"6547msgstr "Konnte HEAD nicht auf %s aktualisieren."65486549#: sequencer.c:39916550msgid "cannot rebase: You have unstaged changes."6551msgstr ""6552"Rebase nicht möglich: Sie haben Änderungen, die nicht zum Commit\n"6553"vorgemerkt sind."65546555#: sequencer.c:40006556msgid "cannot amend non-existing commit"6557msgstr "Kann nicht existierenden Commit nicht nachbessern."65586559#: sequencer.c:40026560#, c-format6561msgid "invalid file: '%s'"6562msgstr "Ungültige Datei: '%s'"65636564#: sequencer.c:40046565#, c-format6566msgid "invalid contents: '%s'"6567msgstr "Ungültige Inhalte: '%s'"65686569#: sequencer.c:40076570msgid ""6571"\n"6572"You have uncommitted changes in your working tree. Please, commit them\n"6573"first and then run 'git rebase --continue' again."6574msgstr ""6575"\n"6576"Sie haben nicht committete Änderungen in Ihrem Arbeitsverzeichnis. Bitte\n"6577"committen Sie diese zuerst und führen Sie dann 'git rebase --continue'\n"6578"erneut aus."65796580#: sequencer.c:4043 sequencer.c:40816581#, c-format6582msgid "could not write file: '%s'"6583msgstr "Konnte Datei nicht schreiben: '%s'"65846585#: sequencer.c:40966586msgid "could not remove CHERRY_PICK_HEAD"6587msgstr "Konnte CHERRY_PICK_HEAD nicht löschen."65886589#: sequencer.c:41036590msgid "could not commit staged changes."6591msgstr "Konnte Änderungen aus der Staging-Area nicht committen."65926593#: sequencer.c:42046594#, c-format6595msgid "%s: can't cherry-pick a %s"6596msgstr "%s: %s kann nicht in \"cherry-pick\" benutzt werden"65976598#: sequencer.c:42086599#, c-format6600msgid "%s: bad revision"6601msgstr "%s: ungültiger Commit"66026603#: sequencer.c:42436604msgid "can't revert as initial commit"6605msgstr "Kann nicht als allerersten Commit einen Revert ausführen."66066607#: sequencer.c:46866608msgid "make_script: unhandled options"6609msgstr "make_script: unbehandelte Optionen"66106611#: sequencer.c:46896612msgid "make_script: error preparing revisions"6613msgstr "make_script: Fehler beim Vorbereiten der Commits"66146615#: sequencer.c:48476616msgid ""6617"You can fix this with 'git rebase --edit-todo' and then run 'git rebase --"6618"continue'.\n"6619"Or you can abort the rebase with 'git rebase --abort'.\n"6620msgstr ""6621"Sie können das mit 'git rebase --edit-todo' beheben. Führen Sie danach\n"6622"'git rebase --continue' aus.\n"6623"Oder Sie können den Rebase mit 'git rebase --abort' abbrechen.\n"66246625#: sequencer.c:4959 sequencer.c:49766626msgid "nothing to do"6627msgstr "Nichts zu tun."66286629#: sequencer.c:49906630msgid "could not skip unnecessary pick commands"6631msgstr "Konnte unnötige \"pick\"-Befehle nicht auslassen."66326633#: sequencer.c:50736634msgid "the script was already rearranged."6635msgstr "Das Script wurde bereits umgeordnet."66366637#: setup.c:1236638#, c-format6639msgid "'%s' is outside repository"6640msgstr "'%s' liegt außerhalb des Repositories."66416642#: setup.c:1736643#, c-format6644msgid ""6645"%s: no such path in the working tree.\n"6646"Use 'git <command> -- <path>...' to specify paths that do not exist locally."6647msgstr ""6648"%s: kein solcher Pfad im Arbeitsverzeichnis.\n"6649"Benutzen Sie 'git <Befehl> -- <Pfad>...' zur Angabe von Pfaden, die lokal\n"6650"nicht existieren."66516652#: setup.c:1866653#, c-format6654msgid ""6655"ambiguous argument '%s': unknown revision or path not in the working tree.\n"6656"Use '--' to separate paths from revisions, like this:\n"6657"'git <command> [<revision>...] -- [<file>...]'"6658msgstr ""6659"mehrdeutiges Argument '%s': unbekannter Commit oder Pfad existiert nicht\n"6660"im Arbeitsverzeichnis\n"6661"Benutzen Sie '--', um Pfade und Commits zu trennen, ähnlich wie:\n"6662"'git <Befehl> [<Commit>...] -- [<Datei>...]'"66636664#: setup.c:2356665#, c-format6666msgid "option '%s' must come before non-option arguments"6667msgstr ""6668"Die Option '%s' muss vor den Argumenten kommen, die keine Optionen sind."66696670#: setup.c:2546671#, c-format6672msgid ""6673"ambiguous argument '%s': both revision and filename\n"6674"Use '--' to separate paths from revisions, like this:\n"6675"'git <command> [<revision>...] -- [<file>...]'"6676msgstr ""6677"mehrdeutiges Argument '%s': sowohl Commit als auch Dateiname\n"6678"Benutzen Sie '--', um Pfade und Commits zu trennen, ähnlich wie:\n"6679"'git <Befehl> [<Commit>...] -- [<Datei>...]'"66806681#: setup.c:3906682msgid "unable to set up work tree using invalid config"6683msgstr ""6684"Konnte Arbeitsverzeichnis mit ungültiger Konfiguration nicht einrichten."66856686#: setup.c:3946687msgid "this operation must be run in a work tree"6688msgstr "Diese Operation muss in einem Arbeitsverzeichnis ausgeführt werden."66896690#: setup.c:5406691#, c-format6692msgid "Expected git repo version <= %d, found %d"6693msgstr "Erwartete Git-Repository-Version <= %d, %d gefunden"66946695#: setup.c:5486696msgid "unknown repository extensions found:"6697msgstr "Unbekannte Repository-Erweiterungen gefunden:"66986699#: setup.c:5676700#, c-format6701msgid "error opening '%s'"6702msgstr "Fehler beim Öffnen von '%s'."67036704#: setup.c:5696705#, c-format6706msgid "too large to be a .git file: '%s'"6707msgstr "Zu groß, um eine .git-Datei zu sein: '%s'"67086709#: setup.c:5716710#, c-format6711msgid "error reading %s"6712msgstr "Fehler beim Lesen von '%s'."67136714#: setup.c:5736715#, c-format6716msgid "invalid gitfile format: %s"6717msgstr "Ungültiges gitfile-Format: %s"67186719#: setup.c:5756720#, c-format6721msgid "no path in gitfile: %s"6722msgstr "Kein Pfad in gitfile: %s"67236724#: setup.c:5776725#, c-format6726msgid "not a git repository: %s"6727msgstr "Kein Git-Repository: %s"67286729#: setup.c:6766730#, c-format6731msgid "'$%s' too big"6732msgstr "'$%s' zu groß"67336734#: setup.c:6906735#, c-format6736msgid "not a git repository: '%s'"6737msgstr "Kein Git-Repository: '%s'"67386739#: setup.c:719 setup.c:721 setup.c:7526740#, c-format6741msgid "cannot chdir to '%s'"6742msgstr "Kann nicht in Verzeichnis '%s' wechseln."67436744#: setup.c:724 setup.c:780 setup.c:790 setup.c:829 setup.c:8376745msgid "cannot come back to cwd"6746msgstr "Kann nicht zum aktuellen Arbeitsverzeichnis zurückwechseln."67476748#: setup.c:8516749#, c-format6750msgid "failed to stat '%*s%s%s'"6751msgstr "Konnte '%*s%s%s' nicht lesen."67526753#: setup.c:10836754msgid "Unable to read current working directory"6755msgstr "Konnte aktuelles Arbeitsverzeichnis nicht lesen."67566757#: setup.c:1092 setup.c:10986758#, c-format6759msgid "cannot change to '%s'"6760msgstr "Kann nicht nach '%s' wechseln."67616762#: setup.c:11036763#, c-format6764msgid "not a git repository (or any of the parent directories): %s"6765msgstr "Kein Git-Repository (oder irgendeines der Elternverzeichnisse): %s"67666767#: setup.c:11096768#, c-format6769msgid ""6770"not a git repository (or any parent up to mount point %s)\n"6771"Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."6772msgstr ""6773"Kein Git-Repository (oder irgendein Elternverzeichnis bis zum Einhängepunkt "6774"%s)\n"6775"Stoppe bei Dateisystemgrenze (GIT_DISCOVERY_ACROSS_FILESYSTEM nicht gesetzt)."67766777#: setup.c:12206778#, c-format6779msgid ""6780"problem with core.sharedRepository filemode value (0%.3o).\n"6781"The owner of files must always have read and write permissions."6782msgstr ""6783"Problem mit Wert für Dateimodus (0%.3o) von core.sharedRepository.\n"6784"Der Besitzer der Dateien muss immer Lese- und Schreibrechte haben."67856786#: setup.c:12646787msgid "open /dev/null or dup failed"6788msgstr "Öffnen von /dev/null oder dup fehlgeschlagen."67896790#: setup.c:12796791msgid "fork failed"6792msgstr "fork fehlgeschlagen"67936794#: setup.c:12846795msgid "setsid failed"6796msgstr "setsid fehlgeschlagen"67976798#: sha1-file.c:4536799#, c-format6800msgid "object directory %s does not exist; check .git/objects/info/alternates"6801msgstr ""6802"Objektverzeichnis %s existiert nicht; prüfe .git/objects/info/alternates"68036804#: sha1-file.c:5046805#, c-format6806msgid "unable to normalize alternate object path: %s"6807msgstr "Konnte alternativen Objektpfad '%s' nicht normalisieren."68086809#: sha1-file.c:5766810#, c-format6811msgid "%s: ignoring alternate object stores, nesting too deep"6812msgstr "%s: ignoriere alternative Objektspeicher - Verschachtelung zu tief"68136814#: sha1-file.c:5836815#, c-format6816msgid "unable to normalize object directory: %s"6817msgstr "Konnte Objektverzeichnis '%s' nicht normalisieren."68186819#: sha1-file.c:6266820msgid "unable to fdopen alternates lockfile"6821msgstr "Konnte fdopen nicht auf Lock-Datei für \"alternates\" aufrufen."68226823#: sha1-file.c:6446824msgid "unable to read alternates file"6825msgstr "Konnte \"alternates\"-Datei nicht lesen."68266827#: sha1-file.c:6516828msgid "unable to move new alternates file into place"6829msgstr "Konnte neue \"alternates\"-Datei nicht übernehmen."68306831#: sha1-file.c:6866832#, c-format6833msgid "path '%s' does not exist"6834msgstr "Pfad '%s' existiert nicht"68356836#: sha1-file.c:7126837#, c-format6838msgid "reference repository '%s' as a linked checkout is not supported yet."6839msgstr ""6840"Referenziertes Repository '%s' wird noch nicht als verknüpftes\n"6841"Arbeitsverzeichnis unterstützt."68426843#: sha1-file.c:7186844#, c-format6845msgid "reference repository '%s' is not a local repository."6846msgstr "Referenziertes Repository '%s' ist kein lokales Repository."68476848#: sha1-file.c:7246849#, c-format6850msgid "reference repository '%s' is shallow"6851msgstr ""6852"Referenziertes Repository '%s' hat eine unvollständige Historie (shallow)."68536854#: sha1-file.c:7326855#, c-format6856msgid "reference repository '%s' is grafted"6857msgstr ""6858"Referenziertes Repository '%s' ist mit künstlichen Vorgängern (\"grafts\") "6859"eingehängt."68606861#: sha1-file.c:8466862#, c-format6863msgid "attempting to mmap %<PRIuMAX> over limit %<PRIuMAX>"6864msgstr "Versuche mmap %<PRIuMAX> über Limit %<PRIuMAX>."68656866#: sha1-file.c:8716867msgid "mmap failed"6868msgstr "mmap fehlgeschlagen"68696870#: sha1-file.c:10356871#, c-format6872msgid "object file %s is empty"6873msgstr "Objektdatei %s ist leer."68746875#: sha1-file.c:1159 sha1-file.c:22976876#, c-format6877msgid "corrupt loose object '%s'"6878msgstr "Fehlerhaftes loses Objekt '%s'."68796880#: sha1-file.c:1161 sha1-file.c:23016881#, c-format6882msgid "garbage at end of loose object '%s'"6883msgstr "Nutzlose Daten am Ende von losem Objekt '%s'."68846885#: sha1-file.c:12036886msgid "invalid object type"6887msgstr "ungültiger Objekt-Typ"68886889#: sha1-file.c:12876890#, c-format6891msgid "unable to unpack %s header with --allow-unknown-type"6892msgstr "Konnte %s Kopfbereich nicht mit --allow-unknown-type entpacken."68936894#: sha1-file.c:12906895#, c-format6896msgid "unable to unpack %s header"6897msgstr "Konnte %s Kopfbereich nicht entpacken."68986899#: sha1-file.c:12966900#, c-format6901msgid "unable to parse %s header with --allow-unknown-type"6902msgstr "Konnte %s Kopfbereich mit --allow-unknown-type nicht parsen."69036904#: sha1-file.c:12996905#, c-format6906msgid "unable to parse %s header"6907msgstr "Konnte %s Kopfbereich nicht parsen."69086909#: sha1-file.c:14906910#, c-format6911msgid "failed to read object %s"6912msgstr "Konnte Objekt %s nicht lesen."69136914#: sha1-file.c:14946915#, c-format6916msgid "replacement %s not found for %s"6917msgstr "Ersetzung %s für %s nicht gefunden."69186919#: sha1-file.c:14986920#, c-format6921msgid "loose object %s (stored in %s) is corrupt"6922msgstr "Loses Objekt %s (gespeichert in %s) ist beschädigt."69236924#: sha1-file.c:15026925#, c-format6926msgid "packed object %s (stored in %s) is corrupt"6927msgstr "Gepacktes Objekt %s (gespeichert in %s) ist beschädigt."69286929#: sha1-file.c:16046930#, c-format6931msgid "unable to write file %s"6932msgstr "Konnte Datei %s nicht schreiben."69336934#: sha1-file.c:16116935#, c-format6936msgid "unable to set permission to '%s'"6937msgstr "Konnte Zugriffsberechtigung auf '%s' nicht setzen."69386939#: sha1-file.c:16186940msgid "file write error"6941msgstr "Fehler beim Schreiben einer Datei."69426943#: sha1-file.c:16376944msgid "error when closing loose object file"6945msgstr "Fehler beim Schließen der Datei für lose Objekte."69466947#: sha1-file.c:17026948#, c-format6949msgid "insufficient permission for adding an object to repository database %s"6950msgstr ""6951"Unzureichende Berechtigung zum Hinzufügen eines Objektes zur Repository-"6952"Datenbank %s"69536954#: sha1-file.c:17046955msgid "unable to create temporary file"6956msgstr "Konnte temporäre Datei nicht erstellen."69576958#: sha1-file.c:17286959msgid "unable to write loose object file"6960msgstr "Fehler beim Schreiben der Datei für lose Objekte."69616962#: sha1-file.c:17346963#, c-format6964msgid "unable to deflate new object %s (%d)"6965msgstr "Konnte neues Objekt %s (%d) nicht komprimieren."69666967#: sha1-file.c:17386968#, c-format6969msgid "deflateEnd on object %s failed (%d)"6970msgstr "deflateEnd auf Objekt %s fehlgeschlagen (%d)"69716972#: sha1-file.c:17426973#, c-format6974msgid "confused by unstable object source data for %s"6975msgstr "Fehler wegen instabilen Objektquelldaten für %s"69766977#: sha1-file.c:1752 builtin/pack-objects.c:9206978#, c-format6979msgid "failed utime() on %s"6980msgstr "Fehler beim Aufruf von utime() auf '%s'."69816982#: sha1-file.c:18276983#, c-format6984msgid "cannot read object for %s"6985msgstr "Kann Objekt für %s nicht lesen."69866987#: sha1-file.c:18676988msgid "corrupt commit"6989msgstr "fehlerhafter Commit"69906991#: sha1-file.c:18756992msgid "corrupt tag"6993msgstr "fehlerhaftes Tag"69946995#: sha1-file.c:19746996#, c-format6997msgid "read error while indexing %s"6998msgstr "Lesefehler beim Indizieren von '%s'."69997000#: sha1-file.c:19777001#, c-format7002msgid "short read while indexing %s"7003msgstr "read() zu kurz beim Indizieren von '%s'."70047005#: sha1-file.c:2050 sha1-file.c:20597006#, c-format7007msgid "%s: failed to insert into database"7008msgstr "%s: Fehler beim Einfügen in die Datenbank"70097010#: sha1-file.c:20657011#, c-format7012msgid "%s: unsupported file type"7013msgstr "%s: nicht unterstützte Dateiart"70147015#: sha1-file.c:20897016#, c-format7017msgid "%s is not a valid object"7018msgstr "%s ist kein gültiges Objekt"70197020#: sha1-file.c:20917021#, c-format7022msgid "%s is not a valid '%s' object"7023msgstr "%s ist kein gültiges '%s' Objekt"70247025#: sha1-file.c:2118 builtin/index-pack.c:1547026#, c-format7027msgid "unable to open %s"7028msgstr "kann %s nicht öffnen"70297030#: sha1-file.c:2308 sha1-file.c:23607031#, c-format7032msgid "hash mismatch for %s (expected %s)"7033msgstr "Hash für %s stimmt nicht überein (%s erwartet)."70347035#: sha1-file.c:23327036#, c-format7037msgid "unable to mmap %s"7038msgstr "Konnte mmap nicht auf %s ausführen."70397040#: sha1-file.c:23377041#, c-format7042msgid "unable to unpack header of %s"7043msgstr "Konnte Kopfbereich von %s nicht entpacken."70447045#: sha1-file.c:23437046#, c-format7047msgid "unable to parse header of %s"7048msgstr "Konnte Kopfbereich von %s nicht parsen."70497050#: sha1-file.c:23547051#, c-format7052msgid "unable to unpack contents of %s"7053msgstr "Konnte Inhalt von %s nicht entpacken."70547055#: sha1-name.c:4907056#, c-format7057msgid "short SHA1 %s is ambiguous"7058msgstr "Kurzer SHA-1 %s ist mehrdeutig."70597060#: sha1-name.c:5017061msgid "The candidates are:"7062msgstr "Die Kandidaten sind:"70637064#: sha1-name.c:8007065msgid ""7066"Git normally never creates a ref that ends with 40 hex characters\n"7067"because it will be ignored when you just specify 40-hex. These refs\n"7068"may be created by mistake. For example,\n"7069"\n"7070" git checkout -b $br $(git rev-parse ...)\n"7071"\n"7072"where \"$br\" is somehow empty and a 40-hex ref is created. Please\n"7073"examine these refs and maybe delete them. Turn this message off by\n"7074"running \"git config advice.objectNameWarning false\""7075msgstr ""7076"Git erzeugt normalerweise keine Referenzen die mit\n"7077"40 Hex-Zeichen enden, da diese ignoriert werden wenn\n"7078"Sie diese angeben. Diese Referenzen könnten aus Versehen\n"7079"erzeugt worden sein. Zum Beispiel,\n"7080"\n"7081" git checkout -b $br $(git rev-parse ...)\n"7082"\n"7083"wobei \"$br\" leer ist und eine 40-Hex-Referenz erzeugt\n"7084"wurde. Bitte prüfen Sie diese Referenzen und löschen\n"7085"Sie sie gegebenenfalls. Unterdrücken Sie diese Meldung\n"7086"indem Sie \"git config advice.objectNameWarning false\"\n"7087"ausführen."70887089#: submodule.c:114 submodule.c:1437090msgid "Cannot change unmerged .gitmodules, resolve merge conflicts first"7091msgstr ""7092"Kann nicht zusammengeführte .gitmodules-Datei nicht ändern, lösen\n"7093"Sie zuerst die Konflikte auf"70947095#: submodule.c:118 submodule.c:1477096#, c-format7097msgid "Could not find section in .gitmodules where path=%s"7098msgstr "Konnte keine Sektion in .gitmodules mit Pfad \"%s\" finden"70997100#: submodule.c:1547101#, c-format7102msgid "Could not remove .gitmodules entry for %s"7103msgstr "Konnte Eintrag '%s' nicht aus .gitmodules entfernen"71047105#: submodule.c:1657106msgid "staging updated .gitmodules failed"7107msgstr "Konnte aktualisierte .gitmodules-Datei nicht zum Commit vormerken"71087109#: submodule.c:3277110#, c-format7111msgid "in unpopulated submodule '%s'"7112msgstr "In nicht ausgechecktem Submodul '%s'."71137114#: submodule.c:3587115#, c-format7116msgid "Pathspec '%s' is in submodule '%.*s'"7117msgstr "Pfadspezifikation '%s' befindet sich in Submodul '%.*s'"71187119#: submodule.c:9107120#, c-format7121msgid "submodule entry '%s' (%s) is a %s, not a commit"7122msgstr "Submodul-Eintrag '%s' (%s) ist ein %s, kein Commit."71237124#: submodule.c:1147 builtin/branch.c:672 builtin/submodule--helper.c:19887125msgid "Failed to resolve HEAD as a valid ref."7126msgstr "Konnte HEAD nicht als gültige Referenz auflösen."71277128#: submodule.c:14817129#, c-format7130msgid "Could not access submodule '%s'"7131msgstr "Konnte nicht auf Submodul '%s' zugreifen."71327133#: submodule.c:16517134#, c-format7135msgid "'%s' not recognized as a git repository"7136msgstr "'%s' nicht als Git-Repository erkannt"71377138#: submodule.c:17897139#, c-format7140msgid "could not start 'git status' in submodule '%s'"7141msgstr "Konnte 'git status' in Submodul '%s' nicht starten."71427143#: submodule.c:18027144#, c-format7145msgid "could not run 'git status' in submodule '%s'"7146msgstr "Konnte 'git status' in Submodul '%s' nicht ausführen."71477148#: submodule.c:18177149#, c-format7150msgid "Could not unset core.worktree setting in submodule '%s'"7151msgstr "Konnte core.worktree Einstellung in Submodul '%s' nicht aufheben."71527153#: submodule.c:19077154#, c-format7155msgid "submodule '%s' has dirty index"7156msgstr "Submodul '%s' hat einen geänderten Index."71577158#: submodule.c:19597159#, c-format7160msgid "Submodule '%s' could not be updated."7161msgstr "Submodule '%s' konnte nicht aktualisiert werden."71627163#: submodule.c:20087164#, c-format7165msgid ""7166"relocate_gitdir for submodule '%s' with more than one worktree not supported"7167msgstr ""7168"relocate_gitdir für Submodul '%s' mit mehr als einem Arbeitsverzeichnis\n"7169"wird nicht unterstützt"71707171#: submodule.c:2020 submodule.c:20767172#, c-format7173msgid "could not lookup name for submodule '%s'"7174msgstr "konnte Name für Submodul '%s' nicht nachschlagen"71757176#: submodule.c:20277177#, c-format7178msgid ""7179"Migrating git directory of '%s%s' from\n"7180"'%s' to\n"7181"'%s'\n"7182msgstr ""7183"Migriere Git-Verzeichnis von '%s%s' von\n"7184"'%s' nach\n"7185"'%s'\n"71867187#: submodule.c:21117188#, c-format7189msgid "could not recurse into submodule '%s'"7190msgstr "Fehler bei Rekursion in Submodul-Pfad '%s'"71917192#: submodule.c:21557193msgid "could not start ls-files in .."7194msgstr "Konnte 'ls-files' nicht in .. starten"71957196#: submodule.c:21947197#, c-format7198msgid "ls-tree returned unexpected return code %d"7199msgstr "ls-tree mit unerwartetem Rückgabewert %d beendet"72007201#: submodule-config.c:2327202#, c-format7203msgid "ignoring suspicious submodule name: %s"7204msgstr "Ignoriere verdächtigen Submodulnamen: %s"72057206#: submodule-config.c:2997207msgid "negative values not allowed for submodule.fetchjobs"7208msgstr "Negative Werte für submodule.fetchjobs nicht erlaubt."72097210#: submodule-config.c:3977211#, c-format7212msgid "ignoring '%s' which may be interpreted as a command-line option: %s"7213msgstr ""7214"Ignoriere '%s', was als eine Befehlszeilenoption '%s' interpretiert werden "7215"würde."72167217#: submodule-config.c:4867218#, c-format7219msgid "invalid value for %s"7220msgstr "Ungültiger Wert für %s"72217222#: submodule-config.c:7557223#, c-format7224msgid "Could not update .gitmodules entry %s"7225msgstr "Konnte Eintrag '%s' in .gitmodules nicht aktualisieren"72267227#: trailer.c:2387228#, c-format7229msgid "running trailer command '%s' failed"7230msgstr "Ausführen des Anhang-Befehls '%s' fehlgeschlagen"72317232#: trailer.c:485 trailer.c:490 trailer.c:495 trailer.c:549 trailer.c:5537233#: trailer.c:5577234#, c-format7235msgid "unknown value '%s' for key '%s'"7236msgstr "unbekannter Wert '%s' für Schlüssel %s"72377238#: trailer.c:539 trailer.c:544 builtin/remote.c:2957239#, c-format7240msgid "more than one %s"7241msgstr "mehr als ein %s"72427243#: trailer.c:7307244#, c-format7245msgid "empty trailer token in trailer '%.*s'"7246msgstr "leerer Anhang-Token in Anhang '%.*s'"72477248#: trailer.c:7507249#, c-format7250msgid "could not read input file '%s'"7251msgstr "Konnte Eingabe-Datei '%s' nicht lesen"72527253#: trailer.c:7537254msgid "could not read from stdin"7255msgstr "konnte nicht von der Standard-Eingabe lesen"72567257#: trailer.c:1011 wrapper.c:7017258#, c-format7259msgid "could not stat %s"7260msgstr "Konnte '%s' nicht lesen"72617262#: trailer.c:10137263#, c-format7264msgid "file %s is not a regular file"7265msgstr "Datei '%s' ist keine reguläre Datei"72667267#: trailer.c:10157268#, c-format7269msgid "file %s is not writable by user"7270msgstr "Datei %s ist vom Benutzer nicht beschreibbar."72717272#: trailer.c:10277273msgid "could not open temporary file"7274msgstr "konnte temporäre Datei '%s' nicht öffnen"72757276#: trailer.c:10677277#, c-format7278msgid "could not rename temporary file to %s"7279msgstr "konnte temporäre Datei nicht zu %s umbenennen"72807281#: transport.c:1167282#, c-format7283msgid "Would set upstream of '%s' to '%s' of '%s'\n"7284msgstr "Würde Upstream-Branch von '%s' zu '%s' von '%s' setzen\n"72857286#: transport.c:1427287#, c-format7288msgid "could not read bundle '%s'"7289msgstr "Konnte Paket '%s' nicht lesen."72907291#: transport.c:2087292#, c-format7293msgid "transport: invalid depth option '%s'"7294msgstr "transport: ungültige --depth Option '%s'"72957296#: transport.c:2597297msgid "see protocol.version in 'git help config' for more details"7298msgstr "Siehe protocol.version in 'git help config' für weitere Informationen"72997300#: transport.c:2607301msgid "server options require protocol version 2 or later"7302msgstr "Server-Optionen benötigen Protokoll-Version 2 oder höher"73037304#: transport.c:6257305msgid "could not parse transport.color.* config"7306msgstr "Konnte transport.color.* Konfiguration nicht parsen."73077308#: transport.c:6987309msgid "support for protocol v2 not implemented yet"7310msgstr "Unterstützung für Protokoll v2 noch nicht implementiert."73117312#: transport.c:8257313#, c-format7314msgid "unknown value for config '%s': %s"7315msgstr "Unbekannter Wert für Konfiguration '%s': %s"73167317#: transport.c:8917318#, c-format7319msgid "transport '%s' not allowed"7320msgstr "Übertragungsart '%s' nicht erlaubt."73217322#: transport.c:9457323msgid "git-over-rsync is no longer supported"7324msgstr "git-over-rsync wird nicht länger unterstützt."73257326#: transport.c:10407327#, c-format7328msgid ""7329"The following submodule paths contain changes that can\n"7330"not be found on any remote:\n"7331msgstr ""7332"Die folgenden Submodul-Pfade enthalten Änderungen, die in keinem\n"7333"Remote-Repository gefunden wurden:\n"73347335#: transport.c:10447336#, c-format7337msgid ""7338"\n"7339"Please try\n"7340"\n"7341"\tgit push --recurse-submodules=on-demand\n"7342"\n"7343"or cd to the path and use\n"7344"\n"7345"\tgit push\n"7346"\n"7347"to push them to a remote.\n"7348"\n"7349msgstr ""7350"\n"7351"Bitte versuchen Sie\n"7352"\n"7353"\tgit push --recurse-submodules=on-demand\n"7354"\n"7355"oder wechseln Sie in das Verzeichnis und benutzen Sie\n"7356"\n"7357"\tgit push\n"7358"\n"7359"zum Versenden zu einem Remote-Repository.\n"7360"\n"73617362#: transport.c:10527363msgid "Aborting."7364msgstr "Abbruch."73657366#: transport.c:11937367msgid "failed to push all needed submodules"7368msgstr "Fehler beim Versand aller erforderlichen Submodule."73697370#: transport.c:1326 transport-helper.c:6457371msgid "operation not supported by protocol"7372msgstr "Die Operation wird von dem Protokoll nicht unterstützt."73737374#: transport.c:14307375#, c-format7376msgid "invalid line while parsing alternate refs: %s"7377msgstr "Ungültige Zeile beim Parsen alternativer Referenzen: %s"73787379#: transport-helper.c:51 transport-helper.c:807380msgid "full write to remote helper failed"7381msgstr "Vollständiges Schreiben zu Remote-Helper fehlgeschlagen."73827383#: transport-helper.c:1347384#, c-format7385msgid "unable to find remote helper for '%s'"7386msgstr "Konnte Remote-Helper für '%s' nicht finden."73877388#: transport-helper.c:150 transport-helper.c:5597389msgid "can't dup helper output fd"7390msgstr ""7391"Konnte dup() auf Dateideskriptor für Ausgaben des Remote-Helpers nicht "7392"ausführen."73937394#: transport-helper.c:2017395#, c-format7396msgid ""7397"unknown mandatory capability %s; this remote helper probably needs newer "7398"version of Git"7399msgstr ""7400"Unbekannte erforderliche Fähigkeit %s; dieser Remote-Helper benötigt\n"7401"wahrscheinlich eine neuere Version von Git."74027403#: transport-helper.c:2077404msgid "this remote helper should implement refspec capability"7405msgstr "Dieser Remote-Helper sollte die \"refspec\"-Fähigkeit implementieren."74067407#: transport-helper.c:274 transport-helper.c:4147408#, c-format7409msgid "%s unexpectedly said: '%s'"7410msgstr "unerwartete Ausgabe von %s: '%s'"74117412#: transport-helper.c:4037413#, c-format7414msgid "%s also locked %s"7415msgstr "%s sperrte auch %s"74167417#: transport-helper.c:4817418msgid "couldn't run fast-import"7419msgstr "Konnte \"fast-import\" nicht ausführen."74207421#: transport-helper.c:5047422msgid "error while running fast-import"7423msgstr "Fehler beim Ausführen von 'fast-import'."74247425#: transport-helper.c:533 transport-helper.c:10997426#, c-format7427msgid "could not read ref %s"7428msgstr "Konnte Referenz %s nicht lesen."74297430#: transport-helper.c:5787431#, c-format7432msgid "unknown response to connect: %s"7433msgstr "Unbekannte Antwort auf 'connect': %s"74347435#: transport-helper.c:6007436msgid "setting remote service path not supported by protocol"7437msgstr ""7438"Setzen des Remote-Service Pfads wird von dem Protokoll nicht unterstützt."74397440#: transport-helper.c:6027441msgid "invalid remote service path"7442msgstr "Ungültiger Remote-Service Pfad."74437444#: transport-helper.c:6487445#, c-format7446msgid "can't connect to subservice %s"7447msgstr "Kann keine Verbindung zu Subservice %s herstellen."74487449#: transport-helper.c:7207450#, c-format7451msgid "expected ok/error, helper said '%s'"7452msgstr "Erwartete ok/error, Remote-Helper gab '%s' aus."74537454#: transport-helper.c:7737455#, c-format7456msgid "helper reported unexpected status of %s"7457msgstr "Remote-Helper meldete unerwarteten Status von %s."74587459#: transport-helper.c:8347460#, c-format7461msgid "helper %s does not support dry-run"7462msgstr "Remote-Helper %s unterstützt kein Trockenlauf."74637464#: transport-helper.c:8377465#, c-format7466msgid "helper %s does not support --signed"7467msgstr "Remote-Helper %s unterstützt kein --signed."74687469#: transport-helper.c:8407470#, c-format7471msgid "helper %s does not support --signed=if-asked"7472msgstr "Remote-Helper %s unterstützt kein --signed=if-asked."74737474#: transport-helper.c:8477475#, c-format7476msgid "helper %s does not support 'push-option'"7477msgstr "Remote-Helper %s unterstützt nicht 'push-option'."74787479#: transport-helper.c:9397480msgid "remote-helper doesn't support push; refspec needed"7481msgstr "Remote-Helper unterstützt kein Push; Refspec benötigt"74827483#: transport-helper.c:9447484#, c-format7485msgid "helper %s does not support 'force'"7486msgstr "Remote-Helper %s unterstützt kein 'force'."74877488#: transport-helper.c:9917489msgid "couldn't run fast-export"7490msgstr "Konnte \"fast-export\" nicht ausführen."74917492#: transport-helper.c:9967493msgid "error while running fast-export"7494msgstr "Fehler beim Ausführen von \"fast-export\"."74957496#: transport-helper.c:10217497#, c-format7498msgid ""7499"No refs in common and none specified; doing nothing.\n"7500"Perhaps you should specify a branch such as 'master'.\n"7501msgstr ""7502"Keine gemeinsamen Referenzen und nichts spezifiziert; keine Ausführung.\n"7503"Vielleicht sollten Sie einen Branch wie 'master' angeben.\n"75047505#: transport-helper.c:10857506#, c-format7507msgid "malformed response in ref list: %s"7508msgstr "Ungültige Antwort in Referenzliste: %s"75097510#: transport-helper.c:12387511#, c-format7512msgid "read(%s) failed"7513msgstr "Lesen von %s fehlgeschlagen."75147515#: transport-helper.c:12657516#, c-format7517msgid "write(%s) failed"7518msgstr "Schreiben von %s fehlgeschlagen."75197520#: transport-helper.c:13147521#, c-format7522msgid "%s thread failed"7523msgstr "Thread %s fehlgeschlagen."75247525#: transport-helper.c:13187526#, c-format7527msgid "%s thread failed to join: %s"7528msgstr "Fehler beim Beitreten zu Thread %s: %s"75297530#: transport-helper.c:1337 transport-helper.c:13417531#, c-format7532msgid "can't start thread for copying data: %s"7533msgstr "Kann Thread zum Kopieren von Daten nicht starten: %s"75347535#: transport-helper.c:13787536#, c-format7537msgid "%s process failed to wait"7538msgstr "Fehler beim Warten von Prozess %s."75397540#: transport-helper.c:13827541#, c-format7542msgid "%s process failed"7543msgstr "Prozess %s fehlgeschlagen"75447545#: transport-helper.c:1400 transport-helper.c:14097546msgid "can't start thread for copying data"7547msgstr "Kann Thread zum Kopieren von Daten nicht starten."75487549#: tree-walk.c:337550msgid "too-short tree object"7551msgstr "zu kurzes Tree-Objekt"75527553#: tree-walk.c:397554msgid "malformed mode in tree entry"7555msgstr "fehlerhafter Modus in Tree-Eintrag"75567557#: tree-walk.c:437558msgid "empty filename in tree entry"7559msgstr "leerer Dateiname in Tree-Eintrag"75607561#: tree-walk.c:1167562msgid "too-short tree file"7563msgstr "zu kurze Tree-Datei"75647565#: unpack-trees.c:1117566#, c-format7567msgid ""7568"Your local changes to the following files would be overwritten by checkout:\n"7569"%%sPlease commit your changes or stash them before you switch branches."7570msgstr ""7571"Ihre lokalen Änderungen in den folgenden Dateien würden beim Auschecken\n"7572"überschrieben werden:\n"7573"%%sBitte committen oder stashen Sie Ihre Änderungen, bevor Sie Branches\n"7574"wechseln."75757576#: unpack-trees.c:1137577#, c-format7578msgid ""7579"Your local changes to the following files would be overwritten by checkout:\n"7580"%%s"7581msgstr ""7582"Ihre lokalen Änderungen in den folgenden Dateien würden beim Auschecken\n"7583"überschrieben werden:\n"7584"%%s"75857586#: unpack-trees.c:1167587#, c-format7588msgid ""7589"Your local changes to the following files would be overwritten by merge:\n"7590"%%sPlease commit your changes or stash them before you merge."7591msgstr ""7592"Ihre lokalen Änderungen in den folgenden Dateien würden durch den Merge\n"7593"überschrieben werden:\n"7594"%%sBitte committen oder stashen Sie Ihre Änderungen, bevor Sie mergen."75957596#: unpack-trees.c:1187597#, c-format7598msgid ""7599"Your local changes to the following files would be overwritten by merge:\n"7600"%%s"7601msgstr ""7602"Ihre lokalen Änderungen in den folgenden Dateien würden durch den Merge\n"7603"überschrieben werden:\n"7604"%%s"76057606#: unpack-trees.c:1217607#, c-format7608msgid ""7609"Your local changes to the following files would be overwritten by %s:\n"7610"%%sPlease commit your changes or stash them before you %s."7611msgstr ""7612"Ihre lokalen Änderungen in den folgenden Dateien würden durch %s\n"7613"überschrieben werden:\n"7614"%%sBitte committen oder stashen Sie Ihre Änderungen, bevor Sie %s ausführen."76157616#: unpack-trees.c:1237617#, c-format7618msgid ""7619"Your local changes to the following files would be overwritten by %s:\n"7620"%%s"7621msgstr ""7622"Ihre lokalen Änderungen würden durch %s überschrieben werden.\n"7623"%%s"76247625#: unpack-trees.c:1287626#, c-format7627msgid ""7628"Updating the following directories would lose untracked files in them:\n"7629"%s"7630msgstr ""7631"Durch die Aktualisierung der folgenden Verzeichnisse würden unversionierte\n"7632"Dateien in diesen Verzeichnissen verloren gehen:\n"7633"%s"76347635#: unpack-trees.c:1327636#, c-format7637msgid ""7638"The following untracked working tree files would be removed by checkout:\n"7639"%%sPlease move or remove them before you switch branches."7640msgstr ""7641"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7642"den Checkout entfernt werden:\n"7643"%%sBitte verschieben oder entfernen Sie diese, bevor Sie Branches wechseln."76447645#: unpack-trees.c:1347646#, c-format7647msgid ""7648"The following untracked working tree files would be removed by checkout:\n"7649"%%s"7650msgstr ""7651"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "7652"den\n"7653"Checkout entfernt werden:\n"7654"%%s"76557656#: unpack-trees.c:1377657#, c-format7658msgid ""7659"The following untracked working tree files would be removed by merge:\n"7660"%%sPlease move or remove them before you merge."7661msgstr ""7662"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7663"den Merge entfernt werden:\n"7664"%%sBitte verschieben oder entfernen Sie diese, bevor sie mergen."76657666#: unpack-trees.c:1397667#, c-format7668msgid ""7669"The following untracked working tree files would be removed by merge:\n"7670"%%s"7671msgstr ""7672"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "7673"den\n"7674"Merge entfernt werden:\n"7675"%%s"76767677#: unpack-trees.c:1427678#, c-format7679msgid ""7680"The following untracked working tree files would be removed by %s:\n"7681"%%sPlease move or remove them before you %s."7682msgstr ""7683"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7684"den %s entfernt werden:\n"7685"%%sBitte verschieben oder entfernen Sie diese, bevor sie %s ausführen."76867687#: unpack-trees.c:1447688#, c-format7689msgid ""7690"The following untracked working tree files would be removed by %s:\n"7691"%%s"7692msgstr ""7693"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7694"den %s entfernt werden:\n"7695"%%s"76967697#: unpack-trees.c:1507698#, c-format7699msgid ""7700"The following untracked working tree files would be overwritten by "7701"checkout:\n"7702"%%sPlease move or remove them before you switch branches."7703msgstr ""7704"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7705"den Checkout überschrieben werden:\n"7706"%%sBitte verschieben oder entfernen Sie diese, bevor Sie Branches wechseln."77077708#: unpack-trees.c:1527709#, c-format7710msgid ""7711"The following untracked working tree files would be overwritten by "7712"checkout:\n"7713"%%s"7714msgstr ""7715"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "7716"den\n"7717"Checkout überschrieben werden:\n"7718"%%s"77197720#: unpack-trees.c:1557721#, c-format7722msgid ""7723"The following untracked working tree files would be overwritten by merge:\n"7724"%%sPlease move or remove them before you merge."7725msgstr ""7726"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7727"den Merge überschrieben werden:\n"7728"%%sBitte verschieben oder entfernen Sie diese, bevor Sie mergen."77297730#: unpack-trees.c:1577731#, c-format7732msgid ""7733"The following untracked working tree files would be overwritten by merge:\n"7734"%%s"7735msgstr ""7736"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7737"den Merge überschrieben werden:\n"7738"%%s"77397740#: unpack-trees.c:1607741#, c-format7742msgid ""7743"The following untracked working tree files would be overwritten by %s:\n"7744"%%sPlease move or remove them before you %s."7745msgstr ""7746"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"7747"den %s überschrieben werden:\n"7748"%%sBitte verschieben oder entfernen Sie diese, bevor sie %s ausführen."77497750#: unpack-trees.c:1627751#, c-format7752msgid ""7753"The following untracked working tree files would be overwritten by %s:\n"7754"%%s"7755msgstr ""7756"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "7757"den\n"7758"%s überschrieben werden:\n"7759"%%s"77607761#: unpack-trees.c:1707762#, c-format7763msgid "Entry '%s' overlaps with '%s'. Cannot bind."7764msgstr "Eintrag '%s' überschneidet sich mit '%s'. Kann nicht verbinden."77657766#: unpack-trees.c:1737767#, c-format7768msgid ""7769"Cannot update sparse checkout: the following entries are not up to date:\n"7770"%s"7771msgstr ""7772"Kann partiellen Checkout nicht aktualisieren: die folgenden Einträge\n"7773"sind nicht aktuell:\n"7774"%s"77757776#: unpack-trees.c:1757777#, c-format7778msgid ""7779"The following working tree files would be overwritten by sparse checkout "7780"update:\n"7781"%s"7782msgstr ""7783"Die folgenden Dateien im Arbeitsverzeichnis würden durch die Aktualisierung\n"7784"über einen partiellen Checkout überschrieben werden:\n"7785"%s"77867787#: unpack-trees.c:1777788#, c-format7789msgid ""7790"The following working tree files would be removed by sparse checkout "7791"update:\n"7792"%s"7793msgstr ""7794"Die folgenden Dateien im Arbeitsverzeichnis würden durch die Aktualisierung\n"7795"über einen partiellen Checkout entfernt werden:\n"7796"%s"77977798#: unpack-trees.c:1797799#, c-format7800msgid ""7801"Cannot update submodule:\n"7802"%s"7803msgstr ""7804"Kann Submodul nicht aktualisieren:\n"7805"%s"78067807#: unpack-trees.c:2567808#, c-format7809msgid "Aborting\n"7810msgstr "Abbruch\n"78117812#: unpack-trees.c:3187813msgid "Checking out files"7814msgstr "Checke Dateien aus"78157816#: unpack-trees.c:3507817msgid ""7818"the following paths have collided (e.g. case-sensitive paths\n"7819"on a case-insensitive filesystem) and only one from the same\n"7820"colliding group is in the working tree:\n"7821msgstr ""7822"Die folgenden Pfade haben kollidiert (z.B. case-sensitive Pfade\n"7823"auf einem case-insensitiven Dateisystem) und nur einer von der\n"7824"selben Kollissionsgruppe ist im Arbeitsverzeichnis:\n"78257826#: urlmatch.c:1637827msgid "invalid URL scheme name or missing '://' suffix"7828msgstr "Ungültiges URL-Schema oder Suffix '://' fehlt"78297830#: urlmatch.c:187 urlmatch.c:346 urlmatch.c:4057831#, c-format7832msgid "invalid %XX escape sequence"7833msgstr "ungültige Escape-Sequenz %XX"78347835#: urlmatch.c:2157836msgid "missing host and scheme is not 'file:'"7837msgstr "fehlender Host und Schema ist nicht 'file:'"78387839#: urlmatch.c:2327840msgid "a 'file:' URL may not have a port number"7841msgstr "eine 'file:' URL darf keine Portnummer enthalten"78427843#: urlmatch.c:2477844msgid "invalid characters in host name"7845msgstr "Hostname enthält ungültige Zeichen"78467847#: urlmatch.c:292 urlmatch.c:3037848msgid "invalid port number"7849msgstr "ungültige Portnummer"78507851#: urlmatch.c:3717852msgid "invalid '..' path segment"7853msgstr "ungültiges '..' Pfadsegment"78547855#: worktree.c:255 builtin/am.c:20977856#, c-format7857msgid "failed to read '%s'"7858msgstr "Fehler beim Lesen von '%s'"78597860#: worktree.c:3017861#, c-format7862msgid "'%s' at main working tree is not the repository directory"7863msgstr "'%s' im Hauptarbeitsverzeichnis ist nicht das Repository-Verzeichnis."78647865#: worktree.c:3127866#, c-format7867msgid "'%s' file does not contain absolute path to the working tree location"7868msgstr "'%s' Datei enthält nicht den absoluten Pfad zum Arbeitsverzeichnis."78697870#: worktree.c:3247871#, c-format7872msgid "'%s' does not exist"7873msgstr "'%s' existiert nicht."78747875#: worktree.c:3307876#, c-format7877msgid "'%s' is not a .git file, error code %d"7878msgstr "'%s' ist keine .git-Datei, Fehlercode %d"78797880#: worktree.c:3387881#, c-format7882msgid "'%s' does not point back to '%s'"7883msgstr "'%s' zeigt nicht zurück auf '%s'"78847885#: wrapper.c:223 wrapper.c:3937886#, c-format7887msgid "could not open '%s' for reading and writing"7888msgstr "Konnte '%s' nicht zum Lesen und Schreiben öffnen."78897890#: wrapper.c:424 wrapper.c:6247891#, c-format7892msgid "unable to access '%s'"7893msgstr "konnte nicht auf '%s' zugreifen"78947895#: wrapper.c:6327896msgid "unable to get current working directory"7897msgstr "Konnte aktuelles Arbeitsverzeichnis nicht bekommen."78987899#: wt-status.c:1567900msgid "Unmerged paths:"7901msgstr "Nicht zusammengeführte Pfade:"79027903#: wt-status.c:183 wt-status.c:2107904#, c-format7905msgid " (use \"git reset %s <file>...\" to unstage)"7906msgstr ""7907" (benutzen Sie \"git reset %s <Datei>...\" zum Entfernen aus der Staging-"7908"Area)"79097910#: wt-status.c:185 wt-status.c:2127911msgid " (use \"git rm --cached <file>...\" to unstage)"7912msgstr ""7913" (benutzen Sie \"git rm --cached <Datei>...\" zum Entfernen aus der Staging-"7914"Area)"79157916#: wt-status.c:1897917msgid " (use \"git add <file>...\" to mark resolution)"7918msgstr ""7919" (benutzen Sie \"git add/rm <Datei>...\", um die Auflösung zu markieren)"79207921#: wt-status.c:191 wt-status.c:1957922msgid " (use \"git add/rm <file>...\" as appropriate to mark resolution)"7923msgstr ""7924" (benutzen Sie \"git add/rm <Datei>...\", um die Auflösung entsprechend zu "7925"markieren)"79267927#: wt-status.c:1937928msgid " (use \"git rm <file>...\" to mark resolution)"7929msgstr ""7930" (benutzen Sie \"git add/rm <Datei>...\", um die Auflösung zu markieren)"79317932#: wt-status.c:204 wt-status.c:10647933msgid "Changes to be committed:"7934msgstr "Zum Commit vorgemerkte Änderungen:"79357936#: wt-status.c:222 wt-status.c:10737937msgid "Changes not staged for commit:"7938msgstr "Änderungen, die nicht zum Commit vorgemerkt sind:"79397940#: wt-status.c:2267941msgid " (use \"git add <file>...\" to update what will be committed)"7942msgstr ""7943" (benutzen Sie \"git add <Datei>...\", um die Änderungen zum Commit "7944"vorzumerken)"79457946#: wt-status.c:2287947msgid " (use \"git add/rm <file>...\" to update what will be committed)"7948msgstr ""7949" (benutzen Sie \"git add/rm <Datei>...\", um die Änderungen zum Commit "7950"vorzumerken)"79517952#: wt-status.c:2297953msgid ""7954" (use \"git checkout -- <file>...\" to discard changes in working directory)"7955msgstr ""7956" (benutzen Sie \"git checkout -- <Datei>...\", um die Änderungen im "7957"Arbeitsverzeichnis zu verwerfen)"79587959#: wt-status.c:2317960msgid " (commit or discard the untracked or modified content in submodules)"7961msgstr ""7962" (committen oder verwerfen Sie den unversionierten oder geänderten Inhalt "7963"in den Submodulen)"79647965#: wt-status.c:2437966#, c-format7967msgid " (use \"git %s <file>...\" to include in what will be committed)"7968msgstr ""7969" (benutzen Sie \"git %s <Datei>...\", um die Änderungen zum Commit "7970"vorzumerken)"79717972#: wt-status.c:2587973msgid "both deleted:"7974msgstr "beide gelöscht:"79757976#: wt-status.c:2607977msgid "added by us:"7978msgstr "von uns hinzugefügt:"79797980#: wt-status.c:2627981msgid "deleted by them:"7982msgstr "von denen gelöscht:"79837984#: wt-status.c:2647985msgid "added by them:"7986msgstr "von denen hinzugefügt:"79877988#: wt-status.c:2667989msgid "deleted by us:"7990msgstr "von uns gelöscht:"79917992#: wt-status.c:2687993msgid "both added:"7994msgstr "von beiden hinzugefügt:"79957996#: wt-status.c:2707997msgid "both modified:"7998msgstr "von beiden geändert:"79998000#: wt-status.c:2808001msgid "new file:"8002msgstr "neue Datei:"80038004#: wt-status.c:2828005msgid "copied:"8006msgstr "kopiert:"80078008#: wt-status.c:2848009msgid "deleted:"8010msgstr "gelöscht:"80118012#: wt-status.c:2868013msgid "modified:"8014msgstr "geändert:"80158016#: wt-status.c:2888017msgid "renamed:"8018msgstr "umbenannt:"80198020#: wt-status.c:2908021msgid "typechange:"8022msgstr "Typänderung:"80238024#: wt-status.c:2928025msgid "unknown:"8026msgstr "unbekannt:"80278028#: wt-status.c:2948029msgid "unmerged:"8030msgstr "nicht gemerged:"80318032#: wt-status.c:3748033msgid "new commits, "8034msgstr "neue Commits, "80358036#: wt-status.c:3768037msgid "modified content, "8038msgstr "geänderter Inhalt, "80398040#: wt-status.c:3788041msgid "untracked content, "8042msgstr "unversionierter Inhalt, "80438044#: wt-status.c:8968045#, c-format8046msgid "Your stash currently has %d entry"8047msgid_plural "Your stash currently has %d entries"8048msgstr[0] "Ihr Stash hat gerade %d Eintrag"8049msgstr[1] "Ihr Stash hat gerade %d Einträge"80508051#: wt-status.c:9288052msgid "Submodules changed but not updated:"8053msgstr "Submodule geändert, aber nicht aktualisiert:"80548055#: wt-status.c:9308056msgid "Submodule changes to be committed:"8057msgstr "Änderungen in Submodul zum Committen:"80588059#: wt-status.c:10128060msgid ""8061"Do not modify or remove the line above.\n"8062"Everything below it will be ignored."8063msgstr ""8064"Ändern oder entfernen Sie nicht die obige Zeile.\n"8065"Alles unterhalb von ihr wird ignoriert."80668067#: wt-status.c:11198068msgid "You have unmerged paths."8069msgstr "Sie haben nicht zusammengeführte Pfade."80708071#: wt-status.c:11228072msgid " (fix conflicts and run \"git commit\")"8073msgstr " (beheben Sie die Konflikte und führen Sie \"git commit\" aus)"80748075#: wt-status.c:11248076msgid " (use \"git merge --abort\" to abort the merge)"8077msgstr " (benutzen Sie \"git merge --abort\", um den Merge abzubrechen)"80788079#: wt-status.c:11288080msgid "All conflicts fixed but you are still merging."8081msgstr "Alle Konflikte sind behoben, aber Sie sind immer noch beim Merge."80828083#: wt-status.c:11318084msgid " (use \"git commit\" to conclude merge)"8085msgstr " (benutzen Sie \"git commit\", um den Merge abzuschließen)"80868087#: wt-status.c:11408088msgid "You are in the middle of an am session."8089msgstr "Eine \"am\"-Sitzung ist im Gange."80908091#: wt-status.c:11438092msgid "The current patch is empty."8093msgstr "Der aktuelle Patch ist leer."80948095#: wt-status.c:11478096msgid " (fix conflicts and then run \"git am --continue\")"8097msgstr ""8098" (beheben Sie die Konflikte und führen Sie dann \"git am --continue\" aus)"80998100#: wt-status.c:11498101msgid " (use \"git am --skip\" to skip this patch)"8102msgstr " (benutzen Sie \"git am --skip\", um diesen Patch auszulassen)"81038104#: wt-status.c:11518105msgid " (use \"git am --abort\" to restore the original branch)"8106msgstr ""8107" (benutzen Sie \"git am --abort\", um den ursprünglichen Branch "8108"wiederherzustellen)"81098110#: wt-status.c:12848111msgid "git-rebase-todo is missing."8112msgstr "git-rebase-todo fehlt."81138114#: wt-status.c:12868115msgid "No commands done."8116msgstr "Keine Befehle ausgeführt."81178118#: wt-status.c:12898119#, c-format8120msgid "Last command done (%d command done):"8121msgid_plural "Last commands done (%d commands done):"8122msgstr[0] "Zuletzt ausgeführter Befehl (%d Befehl ausgeführt):"8123msgstr[1] "Zuletzt ausgeführte Befehle (%d Befehle ausgeführt):"81248125#: wt-status.c:13008126#, c-format8127msgid " (see more in file %s)"8128msgstr " (mehr Informationen in Datei %s)"81298130#: wt-status.c:13058131msgid "No commands remaining."8132msgstr "Keine Befehle verbleibend."81338134#: wt-status.c:13088135#, c-format8136msgid "Next command to do (%d remaining command):"8137msgid_plural "Next commands to do (%d remaining commands):"8138msgstr[0] "Nächster auszuführender Befehl (%d Befehle verbleibend):"8139msgstr[1] "Nächste auszuführende Befehle (%d Befehle verbleibend):"81408141#: wt-status.c:13168142msgid " (use \"git rebase --edit-todo\" to view and edit)"8143msgstr " (benutzen Sie \"git rebase --edit-todo\" zum Ansehen und Bearbeiten)"81448145#: wt-status.c:13288146#, c-format8147msgid "You are currently rebasing branch '%s' on '%s'."8148msgstr "Sie sind gerade beim Rebase von Branch '%s' auf '%s'."81498150#: wt-status.c:13338151msgid "You are currently rebasing."8152msgstr "Sie sind gerade beim Rebase."81538154#: wt-status.c:13468155msgid " (fix conflicts and then run \"git rebase --continue\")"8156msgstr ""8157" (beheben Sie die Konflikte und führen Sie dann \"git rebase --continue\" "8158"aus)"81598160#: wt-status.c:13488161msgid " (use \"git rebase --skip\" to skip this patch)"8162msgstr " (benutzen Sie \"git rebase --skip\", um diesen Patch auszulassen)"81638164#: wt-status.c:13508165msgid " (use \"git rebase --abort\" to check out the original branch)"8166msgstr ""8167" (benutzen Sie \"git rebase --abort\", um den ursprünglichen Branch "8168"auszuchecken)"81698170#: wt-status.c:13578171msgid " (all conflicts fixed: run \"git rebase --continue\")"8172msgstr " (alle Konflikte behoben: führen Sie \"git rebase --continue\" aus)"81738174#: wt-status.c:13618175#, c-format8176msgid ""8177"You are currently splitting a commit while rebasing branch '%s' on '%s'."8178msgstr ""8179"Sie teilen gerade einen Commit auf, während ein Rebase von Branch '%s' auf "8180"'%s' im Gange ist."81818182#: wt-status.c:13668183msgid "You are currently splitting a commit during a rebase."8184msgstr "Sie teilen gerade einen Commit während eines Rebase auf."81858186#: wt-status.c:13698187msgid " (Once your working directory is clean, run \"git rebase --continue\")"8188msgstr ""8189" (Sobald Ihr Arbeitsverzeichnis unverändert ist, führen Sie \"git rebase --"8190"continue\" aus)"81918192#: wt-status.c:13738193#, c-format8194msgid "You are currently editing a commit while rebasing branch '%s' on '%s'."8195msgstr ""8196"Sie editieren gerade einen Commit während eines Rebase von Branch '%s' auf "8197"'%s'."81988199#: wt-status.c:13788200msgid "You are currently editing a commit during a rebase."8201msgstr "Sie editieren gerade einen Commit während eines Rebase."82028203#: wt-status.c:13818204msgid " (use \"git commit --amend\" to amend the current commit)"8205msgstr ""8206" (benutzen Sie \"git commit --amend\", um den aktuellen Commit "8207"nachzubessern)"82088209#: wt-status.c:13838210msgid ""8211" (use \"git rebase --continue\" once you are satisfied with your changes)"8212msgstr ""8213" (benutzen Sie \"git rebase --continue\" sobald Ihre Änderungen "8214"abgeschlossen sind)"82158216#: wt-status.c:13948217msgid "Cherry-pick currently in progress."8218msgstr "Cherry-pick zurzeit im Gange."82198220#: wt-status.c:13978221#, c-format8222msgid "You are currently cherry-picking commit %s."8223msgstr "Sie führen gerade \"cherry-pick\" von Commit %s aus."82248225#: wt-status.c:14048226msgid " (fix conflicts and run \"git cherry-pick --continue\")"8227msgstr ""8228" (beheben Sie die Konflikte und führen Sie dann \"git cherry-pick --continue"8229"\" aus)"82308231#: wt-status.c:14078232msgid " (run \"git cherry-pick --continue\" to continue)"8233msgstr " (Führen Sie \"git cherry-pick --continue\" aus, um weiterzumachen)"82348235#: wt-status.c:14108236msgid " (all conflicts fixed: run \"git cherry-pick --continue\")"8237msgstr ""8238" (alle Konflikte behoben: führen Sie \"git cherry-pick --continue\" aus)"82398240#: wt-status.c:14128241msgid " (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"8242msgstr ""8243" (benutzen Sie \"git cherry-pick --abort\", um die Cherry-Pick-Operation "8244"abzubrechen)"82458246#: wt-status.c:14228247msgid "Revert currently in progress."8248msgstr "Revert zurzeit im Gange."82498250#: wt-status.c:14258251#, c-format8252msgid "You are currently reverting commit %s."8253msgstr "Sie sind gerade beim Revert von Commit '%s'."82548255#: wt-status.c:14318256msgid " (fix conflicts and run \"git revert --continue\")"8257msgstr ""8258" (beheben Sie die Konflikte und führen Sie dann \"git revert --continue\" "8259"aus)"82608261#: wt-status.c:14348262msgid " (run \"git revert --continue\" to continue)"8263msgstr " (Führen Sie \"git revert --continue\", um weiterzumachen)"82648265#: wt-status.c:14378266msgid " (all conflicts fixed: run \"git revert --continue\")"8267msgstr " (alle Konflikte behoben: führen Sie \"git revert --continue\" aus)"82688269#: wt-status.c:14398270msgid " (use \"git revert --abort\" to cancel the revert operation)"8271msgstr ""8272" (benutzen Sie \"git revert --abort\", um die Revert-Operation abzubrechen)"82738274#: wt-status.c:14498275#, c-format8276msgid "You are currently bisecting, started from branch '%s'."8277msgstr "Sie sind gerade bei einer binären Suche, gestartet von Branch '%s'."82788279#: wt-status.c:14538280msgid "You are currently bisecting."8281msgstr "Sie sind gerade bei einer binären Suche."82828283#: wt-status.c:14568284msgid " (use \"git bisect reset\" to get back to the original branch)"8285msgstr ""8286" (benutzen Sie \"git bisect reset\", um zum ursprünglichen Branch "8287"zurückzukehren)"82888289#: wt-status.c:16658290msgid "On branch "8291msgstr "Auf Branch "82928293#: wt-status.c:16728294msgid "interactive rebase in progress; onto "8295msgstr "interaktives Rebase im Gange; auf "82968297#: wt-status.c:16748298msgid "rebase in progress; onto "8299msgstr "Rebase im Gange; auf "83008301#: wt-status.c:16798302msgid "HEAD detached at "8303msgstr "HEAD losgelöst bei "83048305#: wt-status.c:16818306msgid "HEAD detached from "8307msgstr "HEAD losgelöst von "83088309#: wt-status.c:16848310msgid "Not currently on any branch."8311msgstr "Im Moment auf keinem Branch."83128313#: wt-status.c:17018314msgid "Initial commit"8315msgstr "Initialer Commit"83168317#: wt-status.c:17028318msgid "No commits yet"8319msgstr "Noch keine Commits"83208321#: wt-status.c:17168322msgid "Untracked files"8323msgstr "Unversionierte Dateien"83248325#: wt-status.c:17188326msgid "Ignored files"8327msgstr "Ignorierte Dateien"83288329#: wt-status.c:17228330#, c-format8331msgid ""8332"It took %.2f seconds to enumerate untracked files. 'status -uno'\n"8333"may speed it up, but you have to be careful not to forget to add\n"8334"new files yourself (see 'git help status')."8335msgstr ""8336"Es dauerte %.2f Sekunden die unversionierten Dateien zu bestimmen.\n"8337"'status -uno' könnte das beschleunigen, aber Sie müssen darauf achten,\n"8338"neue Dateien selbstständig hinzuzufügen (siehe 'git help status')."83398340#: wt-status.c:17288341#, c-format8342msgid "Untracked files not listed%s"8343msgstr "Unversionierte Dateien nicht aufgelistet%s"83448345#: wt-status.c:17308346msgid " (use -u option to show untracked files)"8347msgstr " (benutzen Sie die Option -u, um unversionierte Dateien anzuzeigen)"83488349#: wt-status.c:17368350msgid "No changes"8351msgstr "Keine Änderungen"83528353#: wt-status.c:17418354#, c-format8355msgid "no changes added to commit (use \"git add\" and/or \"git commit -a\")\n"8356msgstr ""8357"keine Änderungen zum Commit vorgemerkt (benutzen Sie \"git add\" und/oder "8358"\"git commit -a\")\n"83598360#: wt-status.c:17448361#, c-format8362msgid "no changes added to commit\n"8363msgstr "keine Änderungen zum Commit vorgemerkt\n"83648365#: wt-status.c:17478366#, c-format8367msgid ""8368"nothing added to commit but untracked files present (use \"git add\" to "8369"track)\n"8370msgstr ""8371"nichts zum Commit vorgemerkt, aber es gibt unversionierte Dateien\n"8372"(benutzen Sie \"git add\" zum Versionieren)\n"83738374#: wt-status.c:17508375#, c-format8376msgid "nothing added to commit but untracked files present\n"8377msgstr "nichts zum Commit vorgemerkt, aber es gibt unversionierte Dateien\n"83788379#: wt-status.c:17538380#, c-format8381msgid "nothing to commit (create/copy files and use \"git add\" to track)\n"8382msgstr ""8383"nichts zu committen (erstellen/kopieren Sie Dateien und benutzen\n"8384"Sie \"git add\" zum Versionieren)\n"83858386#: wt-status.c:1756 wt-status.c:17618387#, c-format8388msgid "nothing to commit\n"8389msgstr "nichts zu committen\n"83908391#: wt-status.c:17598392#, c-format8393msgid "nothing to commit (use -u to show untracked files)\n"8394msgstr ""8395"nichts zu committen (benutzen Sie die Option -u, um unversionierte Dateien "8396"anzuzeigen)\n"83978398#: wt-status.c:17638399#, c-format8400msgid "nothing to commit, working tree clean\n"8401msgstr "nichts zu committen, Arbeitsverzeichnis unverändert\n"84028403#: wt-status.c:18768404msgid "No commits yet on "8405msgstr "Noch keine Commits in "84068407#: wt-status.c:18808408msgid "HEAD (no branch)"8409msgstr "HEAD (kein Branch)"84108411#: wt-status.c:19118412msgid "different"8413msgstr "unterschiedlich"84148415#: wt-status.c:1913 wt-status.c:19218416msgid "behind "8417msgstr "hinterher "84188419#: wt-status.c:1916 wt-status.c:19198420msgid "ahead "8421msgstr "voraus "84228423#. TRANSLATORS: the action is e.g. "pull with rebase"8424#: wt-status.c:24438425#, c-format8426msgid "cannot %s: You have unstaged changes."8427msgstr ""8428"%s nicht möglich: Sie haben Änderungen, die nicht zum Commit vorgemerkt sind."84298430#: wt-status.c:24498431msgid "additionally, your index contains uncommitted changes."8432msgstr "Zusätzlich enthält die Staging-Area nicht committete Änderungen."84338434#: wt-status.c:24518435#, c-format8436msgid "cannot %s: Your index contains uncommitted changes."8437msgstr ""8438"%s nicht möglich: Die Staging-Area enthält nicht committete Änderungen."84398440#: builtin/add.c:258441msgid "git add [<options>] [--] <pathspec>..."8442msgstr "git add [<Optionen>] [--] <Pfadspezifikation>..."84438444#: builtin/add.c:848445#, c-format8446msgid "unexpected diff status %c"8447msgstr "unerwarteter Differenz-Status %c"84488449#: builtin/add.c:89 builtin/commit.c:2858450msgid "updating files failed"8451msgstr "Aktualisierung der Dateien fehlgeschlagen"84528453#: builtin/add.c:998454#, c-format8455msgid "remove '%s'\n"8456msgstr "lösche '%s'\n"84578458#: builtin/add.c:1748459msgid "Unstaged changes after refreshing the index:"8460msgstr ""8461"Nicht zum Commit vorgemerkte Änderungen nach Aktualisierung der Staging-Area:"84628463#: builtin/add.c:234 builtin/rev-parse.c:8968464msgid "Could not read the index"8465msgstr "Konnte den Index nicht lesen"84668467#: builtin/add.c:2458468#, c-format8469msgid "Could not open '%s' for writing."8470msgstr "Konnte '%s' nicht zum Schreiben öffnen."84718472#: builtin/add.c:2498473msgid "Could not write patch"8474msgstr "Konnte Patch nicht schreiben"84758476#: builtin/add.c:2528477msgid "editing patch failed"8478msgstr "Bearbeitung des Patches fehlgeschlagen"84798480#: builtin/add.c:2558481#, c-format8482msgid "Could not stat '%s'"8483msgstr "Konnte Verzeichnis '%s' nicht lesen"84848485#: builtin/add.c:2578486msgid "Empty patch. Aborted."8487msgstr "Leerer Patch. Abgebrochen."84888489#: builtin/add.c:2628490#, c-format8491msgid "Could not apply '%s'"8492msgstr "Konnte '%s' nicht anwenden."84938494#: builtin/add.c:2708495msgid "The following paths are ignored by one of your .gitignore files:\n"8496msgstr ""8497"Die folgenden Pfade werden durch eine Ihrer \".gitignore\" Dateien "8498"ignoriert:\n"84998500#: builtin/add.c:290 builtin/clean.c:908 builtin/fetch.c:137 builtin/mv.c:1248501#: builtin/prune-packed.c:56 builtin/pull.c:221 builtin/push.c:5608502#: builtin/remote.c:1345 builtin/rm.c:241 builtin/send-pack.c:1658503msgid "dry run"8504msgstr "Probelauf"85058506#: builtin/add.c:2938507msgid "interactive picking"8508msgstr "interaktives Auswählen"85098510#: builtin/add.c:294 builtin/checkout.c:1379 builtin/reset.c:3068511msgid "select hunks interactively"8512msgstr "Blöcke interaktiv auswählen"85138514#: builtin/add.c:2958515msgid "edit current diff and apply"8516msgstr "aktuelle Unterschiede editieren und anwenden"85178518#: builtin/add.c:2968519msgid "allow adding otherwise ignored files"8520msgstr "das Hinzufügen andernfalls ignorierter Dateien erlauben"85218522#: builtin/add.c:2978523msgid "update tracked files"8524msgstr "versionierte Dateien aktualisieren"85258526#: builtin/add.c:2988527msgid "renormalize EOL of tracked files (implies -u)"8528msgstr ""8529"erneutes Normalisieren der Zeilenenden von versionierten Dateien (impliziert "8530"-u)"85318532#: builtin/add.c:2998533msgid "record only the fact that the path will be added later"8534msgstr "nur speichern, dass der Pfad später hinzugefügt werden soll"85358536#: builtin/add.c:3008537msgid "add changes from all tracked and untracked files"8538msgstr ""8539"Änderungen von allen versionierten und unversionierten Dateien hinzufügen"85408541#: builtin/add.c:3038542msgid "ignore paths removed in the working tree (same as --no-all)"8543msgstr "gelöschte Pfade im Arbeitsverzeichnis ignorieren (genau wie --no-all)"85448545#: builtin/add.c:3058546msgid "don't add, only refresh the index"8547msgstr "nichts hinzufügen, nur den Index aktualisieren"85488549#: builtin/add.c:3068550msgid "just skip files which cannot be added because of errors"8551msgstr ""8552"Dateien überspringen, die aufgrund von Fehlern nicht hinzugefügt werden "8553"konnten"85548555#: builtin/add.c:3078556msgid "check if - even missing - files are ignored in dry run"8557msgstr "prüfen ob - auch fehlende - Dateien im Probelauf ignoriert werden"85588559#: builtin/add.c:309 builtin/update-index.c:10018560msgid "override the executable bit of the listed files"8561msgstr "das \"ausführbar\"-Bit der aufgelisteten Dateien überschreiben"85628563#: builtin/add.c:3118564msgid "warn when adding an embedded repository"8565msgstr "warnen wenn eingebettetes Repository hinzugefügt wird"85668567#: builtin/add.c:3268568#, c-format8569msgid ""8570"You've added another git repository inside your current repository.\n"8571"Clones of the outer repository will not contain the contents of\n"8572"the embedded repository and will not know how to obtain it.\n"8573"If you meant to add a submodule, use:\n"8574"\n"8575"\tgit submodule add <url> %s\n"8576"\n"8577"If you added this path by mistake, you can remove it from the\n"8578"index with:\n"8579"\n"8580"\tgit rm --cached %s\n"8581"\n"8582"See \"git help submodule\" for more information."8583msgstr ""8584"Sie haben ein Git-Repository innerhalb ihres aktuellen Repositories "8585"hinzugefügt.\n"8586"Klone des äußeren Repositories werden die Inhalte des eingebetteten "8587"Repositories\n"8588"weder enthalten, noch wissen, wie diese zu beschaffen sind.\n"8589"Wenn Sie ein Submodul hinzufügen wollten, benutzen Sie:\n"8590"\n"8591"\tgit submodule add <URL> %s\n"8592"\n"8593"Wenn Sie diesen Pfad aus Versehen hinzugefügt haben, können Sie diesen mit\n"8594"\n"8595"\tgit rm --cached %s\n"8596"\n"8597"vom Index entfernen.\n"8598"\n"8599"Siehe \"git help submodule\" für weitere Informationen."86008601#: builtin/add.c:3548602#, c-format8603msgid "adding embedded git repository: %s"8604msgstr "Füge eingebettetes Repository hinzu: %s"86058606#: builtin/add.c:3728607#, c-format8608msgid "Use -f if you really want to add them.\n"8609msgstr "Verwenden Sie -f wenn Sie diese wirklich hinzufügen möchten.\n"86108611#: builtin/add.c:3798612msgid "adding files failed"8613msgstr "Hinzufügen von Dateien fehlgeschlagen"86148615#: builtin/add.c:4198616msgid "-A and -u are mutually incompatible"8617msgstr "Die Optionen -A und -u sind zueinander inkompatibel."86188619#: builtin/add.c:4268620msgid "Option --ignore-missing can only be used together with --dry-run"8621msgstr ""8622"Die Option --ignore-missing kann nur zusammen mit --dry-run verwendet werden."86238624#: builtin/add.c:4308625#, c-format8626msgid "--chmod param '%s' must be either -x or +x"8627msgstr "--chmod Parameter '%s' muss entweder -x oder +x sein"86288629#: builtin/add.c:4458630#, c-format8631msgid "Nothing specified, nothing added.\n"8632msgstr "Nichts spezifiziert, nichts hinzugefügt.\n"86338634#: builtin/add.c:4468635#, c-format8636msgid "Maybe you wanted to say 'git add .'?\n"8637msgstr "Meinten Sie vielleicht 'git add .'?\n"86388639#: builtin/am.c:3488640msgid "could not parse author script"8641msgstr "konnte Autor-Skript nicht parsen"86428643#: builtin/am.c:4328644#, c-format8645msgid "'%s' was deleted by the applypatch-msg hook"8646msgstr "'%s' wurde durch den applypatch-msg Hook entfernt"86478648#: builtin/am.c:4748649#, c-format8650msgid "Malformed input line: '%s'."8651msgstr "Fehlerhafte Eingabezeile: '%s'."86528653#: builtin/am.c:5128654#, c-format8655msgid "Failed to copy notes from '%s' to '%s'"8656msgstr "Fehler beim Kopieren der Notizen von '%s' nach '%s'"86578658#: builtin/am.c:5388659msgid "fseek failed"8660msgstr "\"fseek\" fehlgeschlagen"86618662#: builtin/am.c:7268663#, c-format8664msgid "could not parse patch '%s'"8665msgstr "konnte Patch '%s' nicht parsen"86668667#: builtin/am.c:7918668msgid "Only one StGIT patch series can be applied at once"8669msgstr "Es kann nur eine StGIT Patch-Serie auf einmal angewendet werden."86708671#: builtin/am.c:8398672msgid "invalid timestamp"8673msgstr "ungültiger Zeitstempel"86748675#: builtin/am.c:844 builtin/am.c:8568676msgid "invalid Date line"8677msgstr "Ungültige \"Date\"-Zeile"86788679#: builtin/am.c:8518680msgid "invalid timezone offset"8681msgstr "Ungültiger Offset in der Zeitzone"86828683#: builtin/am.c:9448684msgid "Patch format detection failed."8685msgstr "Patch-Formaterkennung fehlgeschlagen."86868687#: builtin/am.c:949 builtin/clone.c:4098688#, c-format8689msgid "failed to create directory '%s'"8690msgstr "Fehler beim Erstellen von Verzeichnis '%s'"86918692#: builtin/am.c:9548693msgid "Failed to split patches."8694msgstr "Fehler beim Aufteilen der Patches."86958696#: builtin/am.c:1084 builtin/commit.c:3718697msgid "unable to write index file"8698msgstr "Konnte Index-Datei nicht schreiben."86998700#: builtin/am.c:10988701#, c-format8702msgid "When you have resolved this problem, run \"%s --continue\"."8703msgstr ""8704"Wenn Sie das Problem aufgelöst haben, führen Sie \"%s --continue\" aus."87058706#: builtin/am.c:10998707#, c-format8708msgid "If you prefer to skip this patch, run \"%s --skip\" instead."8709msgstr ""8710"Falls Sie diesen Patch auslassen möchten, führen Sie stattdessen \"%s --skip"8711"\" aus."87128713#: builtin/am.c:11008714#, c-format8715msgid "To restore the original branch and stop patching, run \"%s --abort\"."8716msgstr ""8717"Um den ursprünglichen Branch wiederherzustellen und die Anwendung der "8718"Patches abzubrechen, führen Sie \"%s --abort\" aus."87198720#: builtin/am.c:11838721msgid "Patch sent with format=flowed; space at the end of lines might be lost."8722msgstr ""8723"Patch mit format=flowed versendet; Leerzeichen am Ende von Zeilen könnte "8724"verloren gehen."87258726#: builtin/am.c:12118727msgid "Patch is empty."8728msgstr "Patch ist leer."87298730#: builtin/am.c:12778731#, c-format8732msgid "invalid ident line: %.*s"8733msgstr "Ungültige Identifikationszeile: %.*s"87348735#: builtin/am.c:12998736#, c-format8737msgid "unable to parse commit %s"8738msgstr "Konnte Commit '%s' nicht parsen."87398740#: builtin/am.c:14958741msgid "Repository lacks necessary blobs to fall back on 3-way merge."8742msgstr ""8743"Dem Repository fehlen notwendige Blobs um auf einen 3-Wege-Merge "8744"zurückzufallen."87458746#: builtin/am.c:14978747msgid "Using index info to reconstruct a base tree..."8748msgstr ""8749"Verwende Informationen aus der Staging-Area, um ein Basisverzeichnis "8750"nachzustellen ..."87518752#: builtin/am.c:15168753msgid ""8754"Did you hand edit your patch?\n"8755"It does not apply to blobs recorded in its index."8756msgstr ""8757"Haben Sie den Patch per Hand editiert?\n"8758"Er kann nicht auf die Blobs in seiner 'index' Zeile angewendet werden."87598760#: builtin/am.c:15228761msgid "Falling back to patching base and 3-way merge..."8762msgstr "Falle zurück zum Patchen der Basis und zum 3-Wege-Merge ..."87638764#: builtin/am.c:15488765msgid "Failed to merge in the changes."8766msgstr "Merge der Änderungen fehlgeschlagen."87678768#: builtin/am.c:15808769msgid "applying to an empty history"8770msgstr "auf leere Historie anwenden"87718772#: builtin/am.c:1627 builtin/am.c:16318773#, c-format8774msgid "cannot resume: %s does not exist."8775msgstr "Kann nicht fortsetzen: %s existiert nicht"87768777#: builtin/am.c:16478778msgid "cannot be interactive without stdin connected to a terminal."8779msgstr ""8780"Kann nicht interaktiv sein, ohne dass die Standard-Eingabe mit einem "8781"Terminal verbunden ist."87828783#: builtin/am.c:16528784msgid "Commit Body is:"8785msgstr "Commit-Beschreibung ist:"87868787#. TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]8788#. in your translation. The program will only accept English8789#. input at this point.8790#.8791#: builtin/am.c:16628792msgid "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "8793msgstr "Anwenden? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "87948795#: builtin/am.c:17128796#, c-format8797msgid "Dirty index: cannot apply patches (dirty: %s)"8798msgstr "Geänderter Index: kann Patches nicht anwenden (geändert: %s)"87998800#: builtin/am.c:1752 builtin/am.c:18208801#, c-format8802msgid "Applying: %.*s"8803msgstr "Wende an: %.*s"88048805#: builtin/am.c:17698806msgid "No changes -- Patch already applied."8807msgstr "Keine Änderungen -- Patches bereits angewendet."88088809#: builtin/am.c:17758810#, c-format8811msgid "Patch failed at %s %.*s"8812msgstr "Anwendung des Patches fehlgeschlagen bei %s %.*s"88138814#: builtin/am.c:17798815msgid "Use 'git am --show-current-patch' to see the failed patch"8816msgstr ""8817"Benutzen Sie 'git am --show-current-patch', um den\n"8818"fehlgeschlagenen Patch zu sehen."88198820#: builtin/am.c:18238821msgid ""8822"No changes - did you forget to use 'git add'?\n"8823"If there is nothing left to stage, chances are that something else\n"8824"already introduced the same changes; you might want to skip this patch."8825msgstr ""8826"Keine Änderungen - haben Sie vergessen 'git add' zu benutzen?\n"8827"Wenn keine Änderungen mehr zum Commit vorzumerken sind, könnten\n"8828"diese bereits anderweitig eingefügt worden sein; Sie könnten diesen Patch\n"8829"auslassen."88308831#: builtin/am.c:18308832msgid ""8833"You still have unmerged paths in your index.\n"8834"You should 'git add' each file with resolved conflicts to mark them as "8835"such.\n"8836"You might run `git rm` on a file to accept \"deleted by them\" for it."8837msgstr ""8838"Sie haben noch immer nicht zusammengeführte Pfade in Ihrem Index.\n"8839"Sie sollten 'git add' für jede Datei mit aufgelösten Konflikten ausführen,\n"8840"um diese als solche zu markieren.\n"8841"Sie können 'git rm' auf Dateien ausführen, um \"von denen gelöscht\" für\n"8842"diese zu akzeptieren."88438844#: builtin/am.c:1937 builtin/am.c:1941 builtin/am.c:1953 builtin/reset.c:3298845#: builtin/reset.c:3378846#, c-format8847msgid "Could not parse object '%s'."8848msgstr "Konnte Objekt '%s' nicht parsen."88498850#: builtin/am.c:19898851msgid "failed to clean index"8852msgstr "Fehler beim Bereinigen des Index"88538854#: builtin/am.c:20338855msgid ""8856"You seem to have moved HEAD since the last 'am' failure.\n"8857"Not rewinding to ORIG_HEAD"8858msgstr ""8859"Sie scheinen seit dem letzten gescheiterten 'am' HEAD geändert zu haben.\n"8860"Keine Zurücksetzung zu ORIG_HEAD."88618862#: builtin/am.c:21308863#, c-format8864msgid "Invalid value for --patch-format: %s"8865msgstr "Ungültiger Wert für --patch-format: %s"88668867#: builtin/am.c:21668868msgid "git am [<options>] [(<mbox> | <Maildir>)...]"8869msgstr "git am [<Optionen>] [(<mbox> | <E-Mail-Verzeichnis>)...]"88708871#: builtin/am.c:21678872msgid "git am [<options>] (--continue | --skip | --abort)"8873msgstr "git am [<Optionen>] (--continue | --skip | --abort)"88748875#: builtin/am.c:21738876msgid "run interactively"8877msgstr "interaktiv ausführen"88788879#: builtin/am.c:21758880msgid "historical option -- no-op"8881msgstr "historische Option -- kein Effekt"88828883#: builtin/am.c:21778884msgid "allow fall back on 3way merging if needed"8885msgstr "erlaube, falls notwendig, das Zurückfallen auf einen 3-Wege-Merge"88868887#: builtin/am.c:2178 builtin/init-db.c:494 builtin/prune-packed.c:588888#: builtin/repack.c:306 builtin/stash.c:8058889msgid "be quiet"8890msgstr "weniger Ausgaben"88918892#: builtin/am.c:21808893msgid "add a Signed-off-by line to the commit message"8894msgstr "der Commit-Beschreibung eine Signed-off-by Zeile hinzufügen"88958896#: builtin/am.c:21838897msgid "recode into utf8 (default)"8898msgstr "nach UTF-8 umkodieren (Standard)"88998900#: builtin/am.c:21858901msgid "pass -k flag to git-mailinfo"8902msgstr "-k an git-mailinfo übergeben"89038904#: builtin/am.c:21878905msgid "pass -b flag to git-mailinfo"8906msgstr "-b an git-mailinfo übergeben"89078908#: builtin/am.c:21898909msgid "pass -m flag to git-mailinfo"8910msgstr "-m an git-mailinfo übergeben"89118912#: builtin/am.c:21918913msgid "pass --keep-cr flag to git-mailsplit for mbox format"8914msgstr "--keep-cr an git-mailsplit für mbox-Format übergeben"89158916#: builtin/am.c:21948917msgid "do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"8918msgstr "kein --keep-cr an git-mailsplit übergeben, unabhängig von am.keepcr"89198920#: builtin/am.c:21978921msgid "strip everything before a scissors line"8922msgstr "alles vor einer Scheren-Zeile entfernen"89238924#: builtin/am.c:2199 builtin/am.c:2202 builtin/am.c:2205 builtin/am.c:22088925#: builtin/am.c:2211 builtin/am.c:2214 builtin/am.c:2217 builtin/am.c:22208926#: builtin/am.c:22268927msgid "pass it through git-apply"8928msgstr "an git-apply übergeben"89298930#: builtin/am.c:2216 builtin/commit.c:1348 builtin/fmt-merge-msg.c:6718931#: builtin/fmt-merge-msg.c:674 builtin/grep.c:879 builtin/merge.c:2478932#: builtin/pull.c:158 builtin/pull.c:217 builtin/rebase.c:14128933#: builtin/repack.c:317 builtin/repack.c:321 builtin/repack.c:3238934#: builtin/show-branch.c:651 builtin/show-ref.c:172 builtin/tag.c:3978935#: parse-options.h:141 parse-options.h:162 parse-options.h:3118936msgid "n"8937msgstr "Anzahl"89388939#: builtin/am.c:2222 builtin/branch.c:653 builtin/for-each-ref.c:388940#: builtin/replace.c:554 builtin/tag.c:431 builtin/verify-tag.c:398941msgid "format"8942msgstr "Format"89438944#: builtin/am.c:22238945msgid "format the patch(es) are in"8946msgstr "Patch-Format"89478948#: builtin/am.c:22298949msgid "override error message when patch failure occurs"8950msgstr "Meldung bei fehlerhafter Patch-Anwendung überschreiben"89518952#: builtin/am.c:22318953msgid "continue applying patches after resolving a conflict"8954msgstr "Anwendung der Patches nach Auflösung eines Konfliktes fortsetzen"89558956#: builtin/am.c:22348957msgid "synonyms for --continue"8958msgstr "Synonyme für --continue"89598960#: builtin/am.c:22378961msgid "skip the current patch"8962msgstr "den aktuellen Patch auslassen"89638964#: builtin/am.c:22408965msgid "restore the original branch and abort the patching operation."8966msgstr ""8967"ursprünglichen Branch wiederherstellen und Anwendung der Patches abbrechen"89688969#: builtin/am.c:22438970msgid "abort the patching operation but keep HEAD where it is."8971msgstr "Patch-Operation abbrechen, aber HEAD an aktueller Stelle belassen"89728973#: builtin/am.c:22468974msgid "show the patch being applied."8975msgstr "den Patch, der gerade angewendet wird, anzeigen"89768977#: builtin/am.c:22508978msgid "lie about committer date"8979msgstr "Autor-Datum als Commit-Datum verwenden"89808981#: builtin/am.c:22528982msgid "use current timestamp for author date"8983msgstr "aktuellen Zeitstempel als Autor-Datum verwenden"89848985#: builtin/am.c:2254 builtin/commit-tree.c:120 builtin/commit.c:14918986#: builtin/merge.c:282 builtin/pull.c:192 builtin/rebase.c:4898987#: builtin/rebase.c:1453 builtin/revert.c:116 builtin/tag.c:4128988msgid "key-id"8989msgstr "GPG-Schlüsselkennung"89908991#: builtin/am.c:2255 builtin/rebase.c:490 builtin/rebase.c:14548992msgid "GPG-sign commits"8993msgstr "Commits mit GPG signieren"89948995#: builtin/am.c:22588996msgid "(internal use for git-rebase)"8997msgstr "(intern für git-rebase verwendet)"89988999#: builtin/am.c:22769000msgid ""9001"The -b/--binary option has been a no-op for long time, and\n"9002"it will be removed. Please do not use it anymore."9003msgstr ""9004"Die -b/--binary Option hat seit Langem keinen Effekt und wird\n"9005"entfernt. Bitte verwenden Sie diese nicht mehr."90069007#: builtin/am.c:22839008msgid "failed to read the index"9009msgstr "Fehler beim Lesen des Index"90109011#: builtin/am.c:22989012#, c-format9013msgid "previous rebase directory %s still exists but mbox given."9014msgstr "Vorheriges Rebase-Verzeichnis %s existiert noch, aber mbox gegeben."90159016#: builtin/am.c:23229017#, c-format9018msgid ""9019"Stray %s directory found.\n"9020"Use \"git am --abort\" to remove it."9021msgstr ""9022"Stray %s Verzeichnis gefunden.\n"9023"Benutzen Sie \"git am --abort\", um es zu entfernen."90249025#: builtin/am.c:23289026msgid "Resolve operation not in progress, we are not resuming."9027msgstr "Es ist keine Auflösung im Gange, es wird nicht fortgesetzt."90289029#: builtin/apply.c:89030msgid "git apply [<options>] [<patch>...]"9031msgstr "git apply [<Optionen>] [<Patch>...]"90329033#: builtin/archive.c:179034#, c-format9035msgid "could not create archive file '%s'"9036msgstr "Konnte Archiv-Datei '%s' nicht erstellen."90379038#: builtin/archive.c:209039msgid "could not redirect output"9040msgstr "Konnte Ausgabe nicht umleiten."90419042#: builtin/archive.c:379043msgid "git archive: Remote with no URL"9044msgstr "git archive: Externes Archiv ohne URL"90459046#: builtin/archive.c:619047msgid "git archive: expected ACK/NAK, got a flush packet"9048msgstr "git archive: ACK/NAK erwartet, Flush-Paket bekommen"90499050#: builtin/archive.c:649051#, c-format9052msgid "git archive: NACK %s"9053msgstr "git archive: NACK %s"90549055#: builtin/archive.c:659056msgid "git archive: protocol error"9057msgstr "git archive: Protokollfehler"90589059#: builtin/archive.c:699060msgid "git archive: expected a flush"9061msgstr "git archive: erwartete eine Spülung (flush)"90629063#: builtin/bisect--helper.c:229064msgid "git bisect--helper --next-all [--no-checkout]"9065msgstr "git bisect--helper --next-all [--no-checkout]"90669067#: builtin/bisect--helper.c:239068msgid "git bisect--helper --write-terms <bad_term> <good_term>"9069msgstr "git bisect--helper --write-terms <bad_term> <good_term>"90709071#: builtin/bisect--helper.c:249072msgid "git bisect--helper --bisect-clean-state"9073msgstr "git bisect--helper --bisect-clean-state"90749075#: builtin/bisect--helper.c:259076msgid "git bisect--helper --bisect-reset [<commit>]"9077msgstr "git bisect--helper --bisect-reset [<Commit>]"90789079#: builtin/bisect--helper.c:269080msgid ""9081"git bisect--helper --bisect-write [--no-log] <state> <revision> <good_term> "9082"<bad_term>"9083msgstr ""9084"git bisect--helper --bisect-write [--no-log] <Zustand> <Revision> "9085"<Begriff_gut> <Begriff_schlecht>"90869087#: builtin/bisect--helper.c:279088msgid ""9089"git bisect--helper --bisect-check-and-set-terms <command> <good_term> "9090"<bad_term>"9091msgstr ""9092"git bisect--helper --bisect-check-and-set-terms <Befehl> <Begriff_gut> "9093"<Begriff_schlecht>"90949095#: builtin/bisect--helper.c:289096msgid "git bisect--helper --bisect-next-check <good_term> <bad_term> [<term>]"9097msgstr ""9098"git bisect--helper --bisect-next-check <Begriff_gut> <Begriff_schlecht> "9099"[<Begriff>]"91009101#: builtin/bisect--helper.c:299102msgid ""9103"git bisect--helper --bisect-terms [--term-good | --term-old | --term-bad | --"9104"term-new]"9105msgstr ""9106"git bisect--helper --bisect-terms [--term-good | --term-old | --term-bad | --"9107"term-new]"91089109#: builtin/bisect--helper.c:309110msgid ""9111"git bisect--helper --bisect-start [--term-{old,good}=<term> --term-{new,bad}"9112"=<term>][--no-checkout] [<bad> [<good>...]] [--] [<paths>...]"9113msgstr ""9114"git bisect--helper --bisect-start [--term-{old,good}=<Begriff> --term-{new,"9115"bad}=<Begriff>][--no-checkout] [<schlecht> [<gut>...]] [--] [<Pfade>...]"91169117#: builtin/bisect--helper.c:869118#, c-format9119msgid "'%s' is not a valid term"9120msgstr "'%s' ist kein gültiger Begriff."91219122#: builtin/bisect--helper.c:909123#, c-format9124msgid "can't use the builtin command '%s' as a term"9125msgstr "Kann den eingebauten Befehl '%s' nicht als Begriff verwenden."91269127#: builtin/bisect--helper.c:1009128#, c-format9129msgid "can't change the meaning of the term '%s'"9130msgstr "Kann die Bedeutung von dem Begriff '%s' nicht ändern."91319132#: builtin/bisect--helper.c:1119133msgid "please use two different terms"9134msgstr "Bitte verwenden Sie zwei verschiedene Begriffe."91359136#: builtin/bisect--helper.c:1189137msgid "could not open the file BISECT_TERMS"9138msgstr "Konnte die Datei BISECT_TERMS nicht öffnen."91399140#: builtin/bisect--helper.c:1559141#, c-format9142msgid "We are not bisecting.\n"9143msgstr "Keine binäre Suche im Gange.\n"91449145#: builtin/bisect--helper.c:1639146#, c-format9147msgid "'%s' is not a valid commit"9148msgstr "'%s' ist kein gültiger Commit."91499150#: builtin/bisect--helper.c:1749151#, c-format9152msgid ""9153"could not check out original HEAD '%s'. Try 'git bisect reset <commit>'."9154msgstr ""9155"Konnte den ursprünglichen HEAD '%s' nicht auschecken.\n"9156"Versuchen Sie 'git bisect reset <Commit>'."91579158#: builtin/bisect--helper.c:2159159#, c-format9160msgid "Bad bisect_write argument: %s"9161msgstr "Ungültiges \"bisect_write\" Argument: %s"91629163#: builtin/bisect--helper.c:2209164#, c-format9165msgid "couldn't get the oid of the rev '%s'"9166msgstr "Konnte die OID der Revision '%s' nicht erhalten."91679168#: builtin/bisect--helper.c:2329169#, c-format9170msgid "couldn't open the file '%s'"9171msgstr "Konnte die Datei '%s' nicht öffnen."91729173#: builtin/bisect--helper.c:2589174#, c-format9175msgid "Invalid command: you're currently in a %s/%s bisect"9176msgstr "Ungültiger Befehl: Sie sind gerade bei einer binären %s/%s Suche."91779178#: builtin/bisect--helper.c:2859179#, c-format9180msgid ""9181"You need to give me at least one %s and %s revision.\n"9182"You can use \"git bisect %s\" and \"git bisect %s\" for that."9183msgstr ""9184"Sie müssen mindestens einen \"%s\" und einen \"%s\" Commit angeben.\n"9185"Sie können dafür \"git bisect %s\" und \"git bisect %s\" benutzen."91869187#: builtin/bisect--helper.c:2899188#, c-format9189msgid ""9190"You need to start by \"git bisect start\".\n"9191"You then need to give me at least one %s and %s revision.\n"9192"You can use \"git bisect %s\" and \"git bisect %s\" for that."9193msgstr ""9194"Sie müssen mit \"git bisect start\" beginnen.\n"9195"Danach müssen Sie mindestens einen \"%s\" und einen \"%s\" Commit angeben.\n"9196"Sie können dafür \"git bisect %s\" und \"git bisect %s\" benutzen."91979198#: builtin/bisect--helper.c:3219199#, c-format9200msgid "bisecting only with a %s commit"9201msgstr "Binäre Suche nur mit einem %s Commit."92029203#. TRANSLATORS: Make sure to include [Y] and [n] in your9204#. translation. The program will only accept English input9205#. at this point.9206#.9207#: builtin/bisect--helper.c:3299208msgid "Are you sure [Y/n]? "9209msgstr "Sind Sie sicher [Y/n]? "92109211#: builtin/bisect--helper.c:3769212msgid "no terms defined"9213msgstr "Keine Begriffe definiert."92149215#: builtin/bisect--helper.c:3799216#, c-format9217msgid ""9218"Your current terms are %s for the old state\n"9219"and %s for the new state.\n"9220msgstr ""9221"Ihre aktuellen Begriffe sind %s für den alten Zustand\n"9222"und %s für den neuen Zustand.\n"92239224#: builtin/bisect--helper.c:3899225#, c-format9226msgid ""9227"invalid argument %s for 'git bisect terms'.\n"9228"Supported options are: --term-good|--term-old and --term-bad|--term-new."9229msgstr ""9230"Ungültiges Argument %s für 'git bisect terms'.\n"9231"Unterstützte Optionen sind: --term-good|--term-old und --term-bad|--term-new."92329233#: builtin/bisect--helper.c:4759234#, c-format9235msgid "unrecognized option: '%s'"9236msgstr "Nicht erkannte Position: '%s'"92379238#: builtin/bisect--helper.c:4799239#, c-format9240msgid "'%s' does not appear to be a valid revision"9241msgstr "'%s' scheint kein gültiger Commit zu sein."92429243#: builtin/bisect--helper.c:5119244msgid "bad HEAD - I need a HEAD"9245msgstr "Ungültiger HEAD - HEAD wird benötigt."92469247#: builtin/bisect--helper.c:5269248#, c-format9249msgid "checking out '%s' failed. Try 'git bisect start <valid-branch>'."9250msgstr ""9251"Auschecken von '%s' fehlgeschlagen. Versuchen Sie 'git bisect start "9252"<gültiger-Branch>'."92539254#: builtin/bisect--helper.c:5479255msgid "won't bisect on cg-seek'ed tree"9256msgstr ""9257"binäre Suche auf einem durch 'cg-seek' geändertem Verzeichnis nicht möglich"92589259#: builtin/bisect--helper.c:5509260msgid "bad HEAD - strange symbolic ref"9261msgstr "Ungültiger HEAD - merkwürdige symbolische Referenz."92629263#: builtin/bisect--helper.c:6279264msgid "perform 'git bisect next'"9265msgstr "'git bisect next' ausführen"92669267#: builtin/bisect--helper.c:6299268msgid "write the terms to .git/BISECT_TERMS"9269msgstr "die Begriffe nach .git/BISECT_TERMS schreiben"92709271#: builtin/bisect--helper.c:6319272msgid "cleanup the bisection state"9273msgstr "den Zustand der binären Suche aufräumen"92749275#: builtin/bisect--helper.c:6339276msgid "check for expected revs"9277msgstr "auf erwartete Commits prüfen"92789279#: builtin/bisect--helper.c:6359280msgid "reset the bisection state"9281msgstr "den Zustand der binären Suche zurücksetzen"92829283#: builtin/bisect--helper.c:6379284msgid "write out the bisection state in BISECT_LOG"9285msgstr "den Zustand der binären Suche nach BISECT_LOG schreiben"92869287#: builtin/bisect--helper.c:6399288msgid "check and set terms in a bisection state"9289msgstr "Begriffe innerhalb einer binären Suche prüfen und setzen"92909291#: builtin/bisect--helper.c:6419292msgid "check whether bad or good terms exist"9293msgstr "prüfen, ob Begriffe für gute und schlechte Commits existieren"92949295#: builtin/bisect--helper.c:6439296msgid "print out the bisect terms"9297msgstr "die Begriffe für die binäre Suche ausgeben"92989299#: builtin/bisect--helper.c:6459300msgid "start the bisect session"9301msgstr "Sitzung für binäre Suche starten"93029303#: builtin/bisect--helper.c:6479304msgid "update BISECT_HEAD instead of checking out the current commit"9305msgstr "BISECT_HEAD aktualisieren, anstatt den aktuellen Commit auszuchecken"93069307#: builtin/bisect--helper.c:6499308msgid "no log for BISECT_WRITE"9309msgstr "kein Log für BISECT_WRITE"93109311#: builtin/bisect--helper.c:6669312msgid "--write-terms requires two arguments"9313msgstr "--write-terms benötigt zwei Argumente."93149315#: builtin/bisect--helper.c:6709316msgid "--bisect-clean-state requires no arguments"9317msgstr "--bisect-clean-state erwartet keine Argumente."93189319#: builtin/bisect--helper.c:6779320msgid "--bisect-reset requires either no argument or a commit"9321msgstr "--bisect-reset benötigt entweder kein Argument oder ein Commit."93229323#: builtin/bisect--helper.c:6819324msgid "--bisect-write requires either 4 or 5 arguments"9325msgstr "--bisect-write benötigt entweder 4 oder 5 Argumente."93269327#: builtin/bisect--helper.c:6879328msgid "--check-and-set-terms requires 3 arguments"9329msgstr "--check-and-set-terms benötigt 3 Argumente."93309331#: builtin/bisect--helper.c:6939332msgid "--bisect-next-check requires 2 or 3 arguments"9333msgstr "--bisect-next-check benötigt 2 oder 3 Argumente."93349335#: builtin/bisect--helper.c:6999336msgid "--bisect-terms requires 0 or 1 argument"9337msgstr "--bisect-terms benötigt 0 oder 1 Argument."93389339#: builtin/blame.c:329340msgid "git blame [<options>] [<rev-opts>] [<rev>] [--] <file>"9341msgstr "git blame [<Optionen>] [<rev-opts>] [<Commit>] [--] <Datei>"93429343#: builtin/blame.c:379344msgid "<rev-opts> are documented in git-rev-list(1)"9345msgstr "<rev-opts> sind dokumentiert in git-rev-list(1)"93469347#: builtin/blame.c:4079348#, c-format9349msgid "expecting a color: %s"9350msgstr "Erwarte eine Farbe: %s"93519352#: builtin/blame.c:4149353msgid "must end with a color"9354msgstr "Muss mit einer Farbe enden."93559356#: builtin/blame.c:7019357#, c-format9358msgid "invalid color '%s' in color.blame.repeatedLines"9359msgstr "Ungültige Farbe '%s' in color.blame.repeatedLines."93609361#: builtin/blame.c:7199362msgid "invalid value for blame.coloring"9363msgstr "Ungültiger Wert für blame.coloring."93649365#: builtin/blame.c:7949366msgid "Show blame entries as we find them, incrementally"9367msgstr "\"blame\"-Einträge schrittweise anzeigen, während wir sie generieren"93689369#: builtin/blame.c:7959370msgid "Show blank SHA-1 for boundary commits (Default: off)"9371msgstr "leere SHA-1 für Grenz-Commits anzeigen (Standard: aus)"93729373#: builtin/blame.c:7969374msgid "Do not treat root commits as boundaries (Default: off)"9375msgstr "Root-Commits nicht als Grenzen behandeln (Standard: aus)"93769377#: builtin/blame.c:7979378msgid "Show work cost statistics"9379msgstr "Statistiken zum Arbeitsaufwand anzeigen"93809381#: builtin/blame.c:7989382msgid "Force progress reporting"9383msgstr "Fortschrittsanzeige erzwingen"93849385#: builtin/blame.c:7999386msgid "Show output score for blame entries"9387msgstr "Ausgabebewertung für \"blame\"-Einträge anzeigen"93889389#: builtin/blame.c:8009390msgid "Show original filename (Default: auto)"9391msgstr "ursprünglichen Dateinamen anzeigen (Standard: auto)"93929393#: builtin/blame.c:8019394msgid "Show original linenumber (Default: off)"9395msgstr "ursprüngliche Zeilennummer anzeigen (Standard: aus)"93969397#: builtin/blame.c:8029398msgid "Show in a format designed for machine consumption"9399msgstr "Anzeige in einem Format für maschinelle Auswertung"94009401#: builtin/blame.c:8039402msgid "Show porcelain format with per-line commit information"9403msgstr ""9404"Anzeige in Format für Fremdprogramme mit Commit-Informationen pro Zeile"94059406#: builtin/blame.c:8049407msgid "Use the same output mode as git-annotate (Default: off)"9408msgstr ""9409"Den gleichen Ausgabemodus benutzen wie \"git-annotate\" (Standard: aus)"94109411#: builtin/blame.c:8059412msgid "Show raw timestamp (Default: off)"9413msgstr "Unbearbeiteten Zeitstempel anzeigen (Standard: aus)"94149415#: builtin/blame.c:8069416msgid "Show long commit SHA1 (Default: off)"9417msgstr "Langen Commit-SHA1 anzeigen (Standard: aus)"94189419#: builtin/blame.c:8079420msgid "Suppress author name and timestamp (Default: off)"9421msgstr "Den Namen des Autors und den Zeitstempel unterdrücken (Standard: aus)"94229423#: builtin/blame.c:8089424msgid "Show author email instead of name (Default: off)"9425msgstr ""9426"Anstatt des Namens die E-Mail-Adresse des Autors anzeigen (Standard: aus)"94279428#: builtin/blame.c:8099429msgid "Ignore whitespace differences"9430msgstr "Unterschiede im Whitespace ignorieren"94319432#: builtin/blame.c:8109433msgid "color redundant metadata from previous line differently"9434msgstr "redundante Metadaten der vorherigen Zeile unterschiedlich einfärben"94359436#: builtin/blame.c:8119437msgid "color lines by age"9438msgstr "Zeilen nach Alter einfärben"94399440#: builtin/blame.c:8189441msgid "Use an experimental heuristic to improve diffs"9442msgstr ""9443"eine experimentelle Heuristik zur Verbesserung der Darstellung\n"9444"von Unterschieden verwenden"94459446#: builtin/blame.c:8209447msgid "Spend extra cycles to find better match"9448msgstr "Länger arbeiten, um bessere Übereinstimmungen zu finden"94499450#: builtin/blame.c:8219451msgid "Use revisions from <file> instead of calling git-rev-list"9452msgstr "Commits von <Datei> benutzen, anstatt \"git-rev-list\" aufzurufen"94539454#: builtin/blame.c:8229455msgid "Use <file>'s contents as the final image"9456msgstr "Inhalte der <Datei>en als endgültiges Abbild benutzen"94579458#: builtin/blame.c:823 builtin/blame.c:8249459msgid "score"9460msgstr "Bewertung"94619462#: builtin/blame.c:8239463msgid "Find line copies within and across files"9464msgstr "kopierte Zeilen innerhalb oder zwischen Dateien finden"94659466#: builtin/blame.c:8249467msgid "Find line movements within and across files"9468msgstr "verschobene Zeilen innerhalb oder zwischen Dateien finden"94699470#: builtin/blame.c:8259471msgid "n,m"9472msgstr "n,m"94739474#: builtin/blame.c:8259475msgid "Process only line range n,m, counting from 1"9476msgstr "nur Zeilen im Bereich n,m verarbeiten, gezählt von 1"94779478#: builtin/blame.c:8769479msgid "--progress can't be used with --incremental or porcelain formats"9480msgstr ""9481"--progress kann nicht mit --incremental oder Formaten für Fremdprogramme\n"9482"verwendet werden"94839484#. TRANSLATORS: This string is used to tell us the9485#. maximum display width for a relative timestamp in9486#. "git blame" output. For C locale, "4 years, 119487#. months ago", which takes 22 places, is the longest9488#. among various forms of relative timestamps, but9489#. your language may need more or fewer display9490#. columns.9491#.9492#: builtin/blame.c:9279493msgid "4 years, 11 months ago"9494msgstr "vor 4 Jahren und 11 Monaten"94959496#: builtin/blame.c:10319497#, c-format9498msgid "file %s has only %lu line"9499msgid_plural "file %s has only %lu lines"9500msgstr[0] "Datei %s hat nur %lu Zeile"9501msgstr[1] "Datei %s hat nur %lu Zeilen"95029503#: builtin/blame.c:10779504msgid "Blaming lines"9505msgstr "Verarbeite Zeilen"95069507#: builtin/branch.c:299508msgid "git branch [<options>] [-r | -a] [--merged | --no-merged]"9509msgstr "git branch [<Optionen>] [-r | -a] [--merged | --no-merged]"95109511#: builtin/branch.c:309512msgid "git branch [<options>] [-l] [-f] <branch-name> [<start-point>]"9513msgstr "git branch [<Optionen>] [-l] [-f] <Branchname> [<Startpunkt>]"95149515#: builtin/branch.c:319516msgid "git branch [<options>] [-r] (-d | -D) <branch-name>..."9517msgstr "git branch [<Optionen>] [-r] (-d | -D) <Branchname>..."95189519#: builtin/branch.c:329520msgid "git branch [<options>] (-m | -M) [<old-branch>] <new-branch>"9521msgstr "git branch [<Optionen>] (-m | -M) [<alter-Branch>] <neuer-Branch>"95229523#: builtin/branch.c:339524msgid "git branch [<options>] (-c | -C) [<old-branch>] <new-branch>"9525msgstr "git branch [<Optionen>] (-c | -C) [<alter-Branch>] <neuer-Branch>"95269527#: builtin/branch.c:349528msgid "git branch [<options>] [-r | -a] [--points-at]"9529msgstr "git branch [<Optionen>] [-r | -a] [--points-at]"95309531#: builtin/branch.c:359532msgid "git branch [<options>] [-r | -a] [--format]"9533msgstr "git branch [<Optionen>] [-r | -a] [--format]"95349535#: builtin/branch.c:1519536#, c-format9537msgid ""9538"deleting branch '%s' that has been merged to\n"9539" '%s', but not yet merged to HEAD."9540msgstr ""9541"entferne Branch '%s', der zusammengeführt wurde mit\n"9542" '%s', aber noch nicht mit HEAD zusammengeführt wurde."95439544#: builtin/branch.c:1559545#, c-format9546msgid ""9547"not deleting branch '%s' that is not yet merged to\n"9548" '%s', even though it is merged to HEAD."9549msgstr ""9550"entferne Branch '%s' nicht, der noch nicht zusammengeführt wurde mit\n"9551" '%s', obwohl er mit HEAD zusammengeführt wurde."95529553#: builtin/branch.c:1699554#, c-format9555msgid "Couldn't look up commit object for '%s'"9556msgstr "Konnte Commit-Objekt für '%s' nicht nachschlagen."95579558#: builtin/branch.c:1739559#, c-format9560msgid ""9561"The branch '%s' is not fully merged.\n"9562"If you are sure you want to delete it, run 'git branch -D %s'."9563msgstr ""9564"Der Branch '%s' ist nicht vollständig zusammengeführt.\n"9565"Wenn Sie sicher sind diesen Branch zu entfernen, führen Sie 'git branch -D "9566"%s' aus."95679568#: builtin/branch.c:1869569msgid "Update of config-file failed"9570msgstr "Aktualisierung der Konfigurationsdatei fehlgeschlagen."95719572#: builtin/branch.c:2179573msgid "cannot use -a with -d"9574msgstr "kann -a nicht mit -d benutzen"95759576#: builtin/branch.c:2239577msgid "Couldn't look up commit object for HEAD"9578msgstr "Konnte Commit-Objekt für HEAD nicht nachschlagen."95799580#: builtin/branch.c:2379581#, c-format9582msgid "Cannot delete branch '%s' checked out at '%s'"9583msgstr "Kann Branch '%s' nicht entfernen, ausgecheckt in '%s'."95849585#: builtin/branch.c:2529586#, c-format9587msgid "remote-tracking branch '%s' not found."9588msgstr "Remote-Tracking-Branch '%s' nicht gefunden"95899590#: builtin/branch.c:2539591#, c-format9592msgid "branch '%s' not found."9593msgstr "Branch '%s' nicht gefunden."95949595#: builtin/branch.c:2689596#, c-format9597msgid "Error deleting remote-tracking branch '%s'"9598msgstr "Fehler beim Entfernen des Remote-Tracking-Branches '%s'"95999600#: builtin/branch.c:2699601#, c-format9602msgid "Error deleting branch '%s'"9603msgstr "Fehler beim Entfernen des Branches '%s'"96049605#: builtin/branch.c:2769606#, c-format9607msgid "Deleted remote-tracking branch %s (was %s).\n"9608msgstr "Remote-Tracking-Branch %s entfernt (war %s).\n"96099610#: builtin/branch.c:2779611#, c-format9612msgid "Deleted branch %s (was %s).\n"9613msgstr "Branch %s entfernt (war %s).\n"96149615#: builtin/branch.c:421 builtin/tag.c:609616msgid "unable to parse format string"9617msgstr "Konnte Formatierungsstring nicht parsen."96189619#: builtin/branch.c:4529620msgid "could not resolve HEAD"9621msgstr "Konnte HEAD-Commit nicht auflösen."96229623#: builtin/branch.c:4589624#, c-format9625msgid "HEAD (%s) points outside of refs/heads/"9626msgstr "HEAD (%s) wurde nicht unter \"refs/heads/\" gefunden!"96279628#: builtin/branch.c:4739629#, c-format9630msgid "Branch %s is being rebased at %s"9631msgstr "Branch %s wird auf %s umgesetzt"96329633#: builtin/branch.c:4779634#, c-format9635msgid "Branch %s is being bisected at %s"9636msgstr "Binäre Suche von Branch %s zu %s im Gange"96379638#: builtin/branch.c:4949639msgid "cannot copy the current branch while not on any."9640msgstr ""9641"Kann den aktuellen Branch nicht kopieren, solange Sie sich auf keinem "9642"befinden."96439644#: builtin/branch.c:4969645msgid "cannot rename the current branch while not on any."9646msgstr ""9647"Kann aktuellen Branch nicht umbenennen, solange Sie sich auf keinem befinden."96489649#: builtin/branch.c:5079650#, c-format9651msgid "Invalid branch name: '%s'"9652msgstr "Ungültiger Branchname: '%s'"96539654#: builtin/branch.c:5349655msgid "Branch rename failed"9656msgstr "Umbenennung des Branches fehlgeschlagen"96579658#: builtin/branch.c:5369659msgid "Branch copy failed"9660msgstr "Kopie des Branches fehlgeschlagen"96619662#: builtin/branch.c:5409663#, c-format9664msgid "Created a copy of a misnamed branch '%s'"9665msgstr "Kopie eines falsch benannten Branches '%s' erstellt."96669667#: builtin/branch.c:5439668#, c-format9669msgid "Renamed a misnamed branch '%s' away"9670msgstr "falsch benannten Branch '%s' umbenannt"96719672#: builtin/branch.c:5499673#, c-format9674msgid "Branch renamed to %s, but HEAD is not updated!"9675msgstr "Branch umbenannt zu %s, aber HEAD ist nicht aktualisiert!"96769677#: builtin/branch.c:5589678msgid "Branch is renamed, but update of config-file failed"9679msgstr ""9680"Branch ist umbenannt, aber die Aktualisierung der Konfigurationsdatei ist "9681"fehlgeschlagen."96829683#: builtin/branch.c:5609684msgid "Branch is copied, but update of config-file failed"9685msgstr ""9686"Branch wurde kopiert, aber die Aktualisierung der Konfigurationsdatei ist\n"9687"fehlgeschlagen."96889689#: builtin/branch.c:5769690#, c-format9691msgid ""9692"Please edit the description for the branch\n"9693" %s\n"9694"Lines starting with '%c' will be stripped.\n"9695msgstr ""9696"Bitte ändern Sie die Beschreibung für den Branch\n"9697" %s\n"9698"Zeilen, die mit '%c' beginnen, werden entfernt.\n"96999700#: builtin/branch.c:6109701msgid "Generic options"9702msgstr "Allgemeine Optionen"97039704#: builtin/branch.c:6129705msgid "show hash and subject, give twice for upstream branch"9706msgstr "Hash und Betreff anzeigen; -vv: zusätzlich Upstream-Branch"97079708#: builtin/branch.c:6139709msgid "suppress informational messages"9710msgstr "Informationsmeldungen unterdrücken"97119712#: builtin/branch.c:6149713msgid "set up tracking mode (see git-pull(1))"9714msgstr "Modus zum Folgen von Branches einstellen (siehe git-pull(1))"97159716#: builtin/branch.c:6169717msgid "do not use"9718msgstr "nicht verwenden"97199720#: builtin/branch.c:618 builtin/rebase.c:4859721msgid "upstream"9722msgstr "Upstream"97239724#: builtin/branch.c:6189725msgid "change the upstream info"9726msgstr "Informationen zum Upstream-Branch ändern"97279728#: builtin/branch.c:6199729msgid "Unset the upstream info"9730msgstr "Informationen zum Upstream-Branch entfernen"97319732#: builtin/branch.c:6209733msgid "use colored output"9734msgstr "farbige Ausgaben verwenden"97359736#: builtin/branch.c:6219737msgid "act on remote-tracking branches"9738msgstr "auf Remote-Tracking-Branches wirken"97399740#: builtin/branch.c:623 builtin/branch.c:6259741msgid "print only branches that contain the commit"9742msgstr "nur Branches ausgeben, die diesen Commit enthalten"97439744#: builtin/branch.c:624 builtin/branch.c:6269745msgid "print only branches that don't contain the commit"9746msgstr "nur Branches ausgeben, die diesen Commit nicht enthalten"97479748#: builtin/branch.c:6299749msgid "Specific git-branch actions:"9750msgstr "spezifische Aktionen für \"git-branch\":"97519752#: builtin/branch.c:6309753msgid "list both remote-tracking and local branches"9754msgstr "Remote-Tracking und lokale Branches auflisten"97559756#: builtin/branch.c:6329757msgid "delete fully merged branch"9758msgstr "vollständig zusammengeführten Branch entfernen"97599760#: builtin/branch.c:6339761msgid "delete branch (even if not merged)"9762msgstr "Branch löschen (auch wenn nicht zusammengeführt)"97639764#: builtin/branch.c:6349765msgid "move/rename a branch and its reflog"9766msgstr "einen Branch und dessen Reflog verschieben/umbenennen"97679768#: builtin/branch.c:6359769msgid "move/rename a branch, even if target exists"9770msgstr ""9771"einen Branch verschieben/umbenennen, auch wenn das Ziel bereits existiert"97729773#: builtin/branch.c:6369774msgid "copy a branch and its reflog"9775msgstr "einen Branch und dessen Reflog kopieren"97769777#: builtin/branch.c:6379778msgid "copy a branch, even if target exists"9779msgstr "einen Branch kopieren, auch wenn das Ziel bereits existiert"97809781#: builtin/branch.c:6389782msgid "list branch names"9783msgstr "Branchnamen auflisten"97849785#: builtin/branch.c:6399786msgid "show current branch name"9787msgstr "Zeige aktuellen Branch-Namen."97889789#: builtin/branch.c:6409790msgid "create the branch's reflog"9791msgstr "das Reflog des Branches erzeugen"97929793#: builtin/branch.c:6429794msgid "edit the description for the branch"9795msgstr "die Beschreibung für den Branch bearbeiten"97969797#: builtin/branch.c:6439798msgid "force creation, move/rename, deletion"9799msgstr "Erstellung, Verschiebung/Umbenennung oder Löschung erzwingen"98009801#: builtin/branch.c:6449802msgid "print only branches that are merged"9803msgstr "nur zusammengeführte Branches ausgeben"98049805#: builtin/branch.c:6459806msgid "print only branches that are not merged"9807msgstr "nur nicht zusammengeführte Branches ausgeben"98089809#: builtin/branch.c:6469810msgid "list branches in columns"9811msgstr "Branches in Spalten auflisten"98129813#: builtin/branch.c:649 builtin/for-each-ref.c:42 builtin/notes.c:4159814#: builtin/notes.c:418 builtin/notes.c:581 builtin/notes.c:5849815#: builtin/tag.c:4279816msgid "object"9817msgstr "Objekt"98189819#: builtin/branch.c:6509820msgid "print only branches of the object"9821msgstr "nur Branches von diesem Objekt ausgeben"98229823#: builtin/branch.c:652 builtin/for-each-ref.c:48 builtin/tag.c:4349824msgid "sorting and filtering are case insensitive"9825msgstr "Sortierung und Filterung sind unabhängig von Groß- und Kleinschreibung"98269827#: builtin/branch.c:653 builtin/for-each-ref.c:38 builtin/tag.c:4329828#: builtin/verify-tag.c:399829msgid "format to use for the output"9830msgstr "für die Ausgabe zu verwendendes Format"98319832#: builtin/branch.c:676 builtin/clone.c:7489833msgid "HEAD not found below refs/heads!"9834msgstr "HEAD wurde nicht unter \"refs/heads\" gefunden!"98359836#: builtin/branch.c:7009837msgid "--column and --verbose are incompatible"9838msgstr "Die Optionen --column und --verbose sind inkompatibel."98399840#: builtin/branch.c:715 builtin/branch.c:769 builtin/branch.c:7789841msgid "branch name required"9842msgstr "Branchname erforderlich"98439844#: builtin/branch.c:7459845msgid "Cannot give description to detached HEAD"9846msgstr "zu losgelöstem HEAD kann keine Beschreibung hinterlegt werden"98479848#: builtin/branch.c:7509849msgid "cannot edit description of more than one branch"9850msgstr "Beschreibung von mehr als einem Branch kann nicht bearbeitet werden"98519852#: builtin/branch.c:7579853#, c-format9854msgid "No commit on branch '%s' yet."9855msgstr "Noch kein Commit in Branch '%s'."98569857#: builtin/branch.c:7609858#, c-format9859msgid "No branch named '%s'."9860msgstr "Branch '%s' nicht vorhanden."98619862#: builtin/branch.c:7759863msgid "too many branches for a copy operation"9864msgstr "zu viele Branches für eine Kopieroperation angegeben"98659866#: builtin/branch.c:7849867msgid "too many arguments for a rename operation"9868msgstr "zu viele Argumente für eine Umbenennen-Operation angegeben"98699870#: builtin/branch.c:7899871msgid "too many arguments to set new upstream"9872msgstr "zu viele Argumente angegeben, um Upstream-Branch zu setzen"98739874#: builtin/branch.c:7939875#, c-format9876msgid ""9877"could not set upstream of HEAD to %s when it does not point to any branch."9878msgstr ""9879"Konnte keinen neuen Upstream-Branch von HEAD zu %s setzen, da dieser auf\n"9880"keinen Branch zeigt."98819882#: builtin/branch.c:796 builtin/branch.c:8199883#, c-format9884msgid "no such branch '%s'"9885msgstr "Kein solcher Branch '%s'"98869887#: builtin/branch.c:8009888#, c-format9889msgid "branch '%s' does not exist"9890msgstr "Branch '%s' existiert nicht"98919892#: builtin/branch.c:8139893msgid "too many arguments to unset upstream"9894msgstr ""9895"zu viele Argumente angegeben, um Konfiguration zu Upstream-Branch zu "9896"entfernen"98979898#: builtin/branch.c:8179899msgid "could not unset upstream of HEAD when it does not point to any branch."9900msgstr ""9901"Konnte Konfiguration zu Upstream-Branch von HEAD nicht entfernen, da dieser\n"9902"auf keinen Branch zeigt."99039904#: builtin/branch.c:8239905#, c-format9906msgid "Branch '%s' has no upstream information"9907msgstr "Branch '%s' hat keinen Upstream-Branch gesetzt"99089909#: builtin/branch.c:8339910msgid "-a and -r options to 'git branch' do not make sense with a branch name"9911msgstr ""9912"Die Optionen -a und -r bei 'git branch' können nicht gemeimsam mit einem "9913"Branchnamen verwendet werden."99149915#: builtin/branch.c:8369916msgid ""9917"the '--set-upstream' option is no longer supported. Please use '--track' or "9918"'--set-upstream-to' instead."9919msgstr ""9920"Die '--set-upstream' Option wird nicht länger unterstützt.\n"9921"Bitte benutzen Sie stattdessen '--track' oder '--set-upstream-to'."99229923#: builtin/bundle.c:459924#, c-format9925msgid "%s is okay\n"9926msgstr "%s ist in Ordnung\n"99279928#: builtin/bundle.c:589929msgid "Need a repository to create a bundle."9930msgstr "Um ein Paket zu erstellen wird ein Repository benötigt."99319932#: builtin/bundle.c:629933msgid "Need a repository to unbundle."9934msgstr "Zum Entpacken wird ein Repository benötigt."99359936#: builtin/cat-file.c:5939937msgid ""9938"git cat-file (-t [--allow-unknown-type] | -s [--allow-unknown-type] | -e | -"9939"p | <type> | --textconv | --filters) [--path=<path>] <object>"9940msgstr ""9941"git cat-file (-t [--allow-unknown-type] | -s [--allow-unknown-type] | -e | -"9942"p | <Art> | --textconv | --filters) [--path=<Pfad>] <Objekt>"99439944#: builtin/cat-file.c:5949945msgid ""9946"git cat-file (--batch | --batch-check) [--follow-symlinks] [--textconv | --"9947"filters]"9948msgstr ""9949"git cat-file (--batch | --batch-check) [--follow-symlinks] [--textconv | --"9950"filters]"99519952#: builtin/cat-file.c:6159953msgid "only one batch option may be specified"9954msgstr "Nur eine Batch-Option erlaubt."99559956#: builtin/cat-file.c:6339957msgid "<type> can be one of: blob, tree, commit, tag"9958msgstr "<Art> kann sein: blob, tree, commit, tag"99599960#: builtin/cat-file.c:6349961msgid "show object type"9962msgstr "Objektart anzeigen"99639964#: builtin/cat-file.c:6359965msgid "show object size"9966msgstr "Objektgröße anzeigen"99679968#: builtin/cat-file.c:6379969msgid "exit with zero when there's no error"9970msgstr "mit Rückgabewert 0 beenden, wenn kein Fehler aufgetreten ist"99719972#: builtin/cat-file.c:6389973msgid "pretty-print object's content"9974msgstr "ansprechende Anzeige des Objektinhaltes"99759976#: builtin/cat-file.c:6409977msgid "for blob objects, run textconv on object's content"9978msgstr "eine Textkonvertierung auf den Inhalt von Blob-Objekten ausführen"99799980#: builtin/cat-file.c:6429981msgid "for blob objects, run filters on object's content"9982msgstr "für Blob-Objekte, Filter auf Objekt-Inhalte ausführen"99839984#: builtin/cat-file.c:643 git-submodule.sh:9369985msgid "blob"9986msgstr "Blob"99879988#: builtin/cat-file.c:6449989msgid "use a specific path for --textconv/--filters"9990msgstr "einen bestimmten Pfad für --textconv/--filters verwenden"99919992#: builtin/cat-file.c:6469993msgid "allow -s and -t to work with broken/corrupt objects"9994msgstr "-s und -t mit beschädigten Objekten erlauben"99959996#: builtin/cat-file.c:6479997msgid "buffer --batch output"9998msgstr "Ausgabe von --batch puffern"999910000#: builtin/cat-file.c:64910001msgid "show info and content of objects fed from the standard input"10002msgstr ""10003"Anzeige von Informationen und Inhalt von Objekten, gelesen von der Standard-"10004"Eingabe"1000510006#: builtin/cat-file.c:65310007msgid "show info about objects fed from the standard input"10008msgstr ""10009"Anzeige von Informationen über Objekte, gelesen von der Standard-Eingabe"1001010011#: builtin/cat-file.c:65710012msgid "follow in-tree symlinks (used with --batch or --batch-check)"10013msgstr ""10014"symbolischen Verknüpfungen innerhalb des Repositories folgen (verwendet mit "10015"--batch oder --batch-check)"1001610017#: builtin/cat-file.c:65910018msgid "show all objects with --batch or --batch-check"10019msgstr "alle Objekte mit --batch oder --batch-check anzeigen"1002010021#: builtin/cat-file.c:66110022msgid "do not order --batch-all-objects output"10023msgstr "Ausgabe von --batch-all-objects nicht ordnen"1002410025#: builtin/check-attr.c:1310026msgid "git check-attr [-a | --all | <attr>...] [--] <pathname>..."10027msgstr "git check-attr [-a | --all | <Attribut>...] [--] <Pfadname>..."1002810029#: builtin/check-attr.c:1410030msgid "git check-attr --stdin [-z] [-a | --all | <attr>...]"10031msgstr "git check-attr --stdin [-z] [-a | --all | <Attribut>...]"1003210033#: builtin/check-attr.c:2110034msgid "report all attributes set on file"10035msgstr "alle Attribute einer Datei ausgeben"1003610037#: builtin/check-attr.c:2210038msgid "use .gitattributes only from the index"10039msgstr "nur .gitattributes vom Index verwenden"1004010041#: builtin/check-attr.c:23 builtin/check-ignore.c:25 builtin/hash-object.c:10210042msgid "read file names from stdin"10043msgstr "Dateinamen von der Standard-Eingabe lesen"1004410045#: builtin/check-attr.c:25 builtin/check-ignore.c:2710046msgid "terminate input and output records by a NUL character"10047msgstr "Einträge von Ein- und Ausgabe mit NUL-Zeichen abschließen"1004810049#: builtin/check-ignore.c:21 builtin/checkout.c:1355 builtin/gc.c:53810050#: builtin/worktree.c:49910051msgid "suppress progress reporting"10052msgstr "Fortschrittsanzeige unterdrücken"1005310054#: builtin/check-ignore.c:2910055msgid "show non-matching input paths"10056msgstr "Eingabe-Pfade ohne Übereinstimmungen anzeigen"1005710058#: builtin/check-ignore.c:3110059msgid "ignore index when checking"10060msgstr "Index bei der Prüfung ignorieren"1006110062#: builtin/check-ignore.c:16010063msgid "cannot specify pathnames with --stdin"10064msgstr "Angabe von Pfadnamen kann nicht gemeinsam mit --stdin verwendet werden"1006510066#: builtin/check-ignore.c:16310067msgid "-z only makes sense with --stdin"10068msgstr "Die Option -z kann nur mit --stdin verwendet werden."1006910070#: builtin/check-ignore.c:16510071msgid "no path specified"10072msgstr "kein Pfad angegeben"1007310074#: builtin/check-ignore.c:16910075msgid "--quiet is only valid with a single pathname"10076msgstr "Die Option --quiet ist nur mit einem einzelnen Pfadnamen gültig."1007710078#: builtin/check-ignore.c:17110079msgid "cannot have both --quiet and --verbose"10080msgstr ""10081"Die Optionen --quiet und --verbose können nicht gemeinsam verwendet werden."1008210083#: builtin/check-ignore.c:17410084msgid "--non-matching is only valid with --verbose"10085msgstr "--non-matching ist nur mit --verbose zulässig"1008610087#: builtin/check-mailmap.c:910088msgid "git check-mailmap [<options>] <contact>..."10089msgstr "git check-mailmap [<Optionen>] <Kontakt>..."1009010091#: builtin/check-mailmap.c:1410092msgid "also read contacts from stdin"10093msgstr "ebenfalls Kontakte von der Standard-Eingabe lesen"1009410095#: builtin/check-mailmap.c:2510096#, c-format10097msgid "unable to parse contact: %s"10098msgstr "Konnte Kontakt '%s' nicht parsen."1009910100#: builtin/check-mailmap.c:4810101msgid "no contacts specified"10102msgstr "keine Kontakte angegeben"1010310104#: builtin/checkout-index.c:13110105msgid "git checkout-index [<options>] [--] [<file>...]"10106msgstr "git checkout-index [<Optionen>] [--] [<Datei>...]"1010710108#: builtin/checkout-index.c:14810109msgid "stage should be between 1 and 3 or all"10110msgstr "--stage sollte zwischen 1 und 3 oder 'all' sein"1011110112#: builtin/checkout-index.c:16410113msgid "check out all files in the index"10114msgstr "alle Dateien im Index auschecken"1011510116#: builtin/checkout-index.c:16510117msgid "force overwrite of existing files"10118msgstr "das Überschreiben bereits existierender Dateien erzwingen"1011910120#: builtin/checkout-index.c:16710121msgid "no warning for existing files and files not in index"10122msgstr ""10123"keine Warnung für existierende Dateien, und Dateien, die sich nicht im Index "10124"befinden"1012510126#: builtin/checkout-index.c:16910127msgid "don't checkout new files"10128msgstr "keine neuen Dateien auschecken"1012910130#: builtin/checkout-index.c:17110131msgid "update stat information in the index file"10132msgstr "Dateiinformationen in der Index-Datei aktualisieren"1013310134#: builtin/checkout-index.c:17510135msgid "read list of paths from the standard input"10136msgstr "eine Liste von Pfaden von der Standard-Eingabe lesen"1013710138#: builtin/checkout-index.c:17710139msgid "write the content to temporary files"10140msgstr "den Inhalt in temporäre Dateien schreiben"1014110142#: builtin/checkout-index.c:178 builtin/column.c:3110143#: builtin/submodule--helper.c:1372 builtin/submodule--helper.c:137510144#: builtin/submodule--helper.c:1383 builtin/submodule--helper.c:185610145#: builtin/worktree.c:67210146msgid "string"10147msgstr "Zeichenkette"1014810149#: builtin/checkout-index.c:17910150msgid "when creating files, prepend <string>"10151msgstr ""10152"wenn Dateien erzeugt werden, stelle <Zeichenkette> dem Dateinamen voran"1015310154#: builtin/checkout-index.c:18110155msgid "copy out the files from named stage"10156msgstr "Dateien von dem benannten Stand kopieren"1015710158#: builtin/checkout.c:3210159msgid "git checkout [<options>] <branch>"10160msgstr "git checkout [<Optionen>] <Branch>"1016110162#: builtin/checkout.c:3310163msgid "git checkout [<options>] [<branch>] -- <file>..."10164msgstr "git checkout [<Optionen>] [<Branch>] -- <Datei>..."1016510166#: builtin/checkout.c:151 builtin/checkout.c:19010167#, c-format10168msgid "path '%s' does not have our version"10169msgstr "Pfad '%s' hat nicht unsere Version."1017010171#: builtin/checkout.c:153 builtin/checkout.c:19210172#, c-format10173msgid "path '%s' does not have their version"10174msgstr "Pfad '%s' hat nicht deren Version."1017510176#: builtin/checkout.c:16910177#, c-format10178msgid "path '%s' does not have all necessary versions"10179msgstr "Pfad '%s' hat nicht alle notwendigen Versionen."1018010181#: builtin/checkout.c:21910182#, c-format10183msgid "path '%s' does not have necessary versions"10184msgstr "Pfad '%s' hat nicht die notwendigen Versionen."1018510186#: builtin/checkout.c:23710187#, c-format10188msgid "path '%s': cannot merge"10189msgstr "Pfad '%s': kann nicht zusammenführen"1019010191#: builtin/checkout.c:25310192#, c-format10193msgid "Unable to add merge result for '%s'"10194msgstr "Konnte Merge-Ergebnis von '%s' nicht hinzufügen."1019510196#: builtin/checkout.c:331 builtin/checkout.c:334 builtin/checkout.c:33710197#: builtin/checkout.c:34010198#, c-format10199msgid "'%s' cannot be used with updating paths"10200msgstr "'%s' kann nicht mit der Aktualisierung von Pfaden verwendet werden"1020110202#: builtin/checkout.c:343 builtin/checkout.c:34610203#, c-format10204msgid "'%s' cannot be used with %s"10205msgstr "'%s' kann nicht mit '%s' verwendet werden"1020610207#: builtin/checkout.c:34910208#, c-format10209msgid "Cannot update paths and switch to branch '%s' at the same time."10210msgstr ""10211"Kann nicht gleichzeitig Pfade aktualisieren und zu Branch '%s' wechseln"1021210213#: builtin/checkout.c:396 builtin/checkout.c:40310214#, c-format10215msgid "path '%s' is unmerged"10216msgstr "Pfad '%s' ist nicht zusammengeführt."1021710218#: builtin/checkout.c:44210219#, c-format10220msgid "Recreated %d merge conflict"10221msgid_plural "Recreated %d merge conflicts"10222msgstr[0] "%d Merge-Konflikt wieder erstellt"10223msgstr[1] "%d Merge-Konflikte wieder erstellt"1022410225#: builtin/checkout.c:44710226#, c-format10227msgid "Updated %d path from %s"10228msgid_plural "Updated %d paths from %s"10229msgstr[0] "%d Pfad von %s aktualisiert"10230msgstr[1] "%d Pfade von %s aktualisiert"1023110232#: builtin/checkout.c:45410233#, c-format10234msgid "Updated %d path from the index"10235msgid_plural "Updated %d paths from the index"10236msgstr[0] "%d Pfad vom Index aktualisiert"10237msgstr[1] "%d Pfade vom Index aktualisiert"1023810239#: builtin/checkout.c:69510240msgid "you need to resolve your current index first"10241msgstr "Sie müssen zuerst die Konflikte in Ihrem aktuellen Index auflösen."1024210243#: builtin/checkout.c:74410244#, c-format10245msgid ""10246"cannot continue with staged changes in the following files:\n"10247"%s"10248msgstr ""10249"Kann nicht mit vorgemerkten Änderungen in folgenden Dateien fortsetzen:\n"10250"%s"1025110252#: builtin/checkout.c:75110253#, c-format10254msgid "staged changes in the following files may be lost: %s"10255msgstr ""10256"Zum Commit vorgemerkte Änderungen in den folgenden Dateien gehen eventuell "10257"verloren: %s"1025810259#: builtin/checkout.c:84810260#, c-format10261msgid "Can not do reflog for '%s': %s\n"10262msgstr "Kann \"reflog\" für '%s' nicht durchführen: %s\n"1026310264#: builtin/checkout.c:89010265msgid "HEAD is now at"10266msgstr "HEAD ist jetzt bei"1026710268#: builtin/checkout.c:894 builtin/clone.c:70110269msgid "unable to update HEAD"10270msgstr "Konnte HEAD nicht aktualisieren."1027110272#: builtin/checkout.c:89810273#, c-format10274msgid "Reset branch '%s'\n"10275msgstr "Setze Branch '%s' neu\n"1027610277#: builtin/checkout.c:90110278#, c-format10279msgid "Already on '%s'\n"10280msgstr "Bereits auf '%s'\n"1028110282#: builtin/checkout.c:90510283#, c-format10284msgid "Switched to and reset branch '%s'\n"10285msgstr "Zu umgesetztem Branch '%s' gewechselt\n"1028610287#: builtin/checkout.c:907 builtin/checkout.c:128310288#, c-format10289msgid "Switched to a new branch '%s'\n"10290msgstr "Zu neuem Branch '%s' gewechselt\n"1029110292#: builtin/checkout.c:90910293#, c-format10294msgid "Switched to branch '%s'\n"10295msgstr "Zu Branch '%s' gewechselt\n"1029610297#: builtin/checkout.c:96010298#, c-format10299msgid " ... and %d more.\n"10300msgstr " ... und %d weitere.\n"1030110302#: builtin/checkout.c:96610303#, c-format10304msgid ""10305"Warning: you are leaving %d commit behind, not connected to\n"10306"any of your branches:\n"10307"\n"10308"%s\n"10309msgid_plural ""10310"Warning: you are leaving %d commits behind, not connected to\n"10311"any of your branches:\n"10312"\n"10313"%s\n"10314msgstr[0] ""10315"Warnung: Sie lassen %d Commit zurück. Folgender Commit ist in\n"10316"keinem Ihrer Branches enthalten:\n"10317"\n"10318"%s\n"10319msgstr[1] ""10320"Warnung: Sie lassen %d Commits zurück. Folgende Commits sind in\n"10321"keinem Ihrer Branches enthalten:\n"10322"\n"10323"%s\n"1032410325#: builtin/checkout.c:98510326#, c-format10327msgid ""10328"If you want to keep it by creating a new branch, this may be a good time\n"10329"to do so with:\n"10330"\n"10331" git branch <new-branch-name> %s\n"10332"\n"10333msgid_plural ""10334"If you want to keep them by creating a new branch, this may be a good time\n"10335"to do so with:\n"10336"\n"10337" git branch <new-branch-name> %s\n"10338"\n"10339msgstr[0] ""10340"Wenn Sie diese durch einen neuen Branch behalten möchten, dann könnte jetzt\n"10341"ein guter Zeitpunkt sein, dies zu tun mit:\n"10342"\n"10343" git branch <neuer-Branchname> %s\n"10344"\n"10345msgstr[1] ""10346"Wenn Sie diese durch einen neuen Branch behalten möchten, dann könnte jetzt\n"10347"ein guter Zeitpunkt sein, dies zu tun mit:\n"10348"\n"10349" git branch <neuer-Branchname> %s\n"10350"\n"1035110352#: builtin/checkout.c:101710353msgid "internal error in revision walk"10354msgstr "interner Fehler im Revisionsgang"1035510356#: builtin/checkout.c:102110357msgid "Previous HEAD position was"10358msgstr "Vorherige Position von HEAD war"1035910360#: builtin/checkout.c:1052 builtin/checkout.c:127810361msgid "You are on a branch yet to be born"10362msgstr "Sie sind auf einem Branch, der noch nicht geboren ist"1036310364#: builtin/checkout.c:117310365#, c-format10366msgid "only one reference expected, %d given."10367msgstr "nur eine Referenz erwartet, %d gegeben."1036810369#: builtin/checkout.c:120910370#, c-format10371msgid ""10372"'%s' could be both a local file and a tracking branch.\n"10373"Please use -- (and optionally --no-guess) to disambiguate"10374msgstr ""10375"'%s' könnte eine lokale Datei und ein Tracking-Branch sein.\n"10376"Bitte benutzen Sie -- (und optional --no-guess), um diese\n"10377"eindeutig voneinander zu unterscheiden."1037810379#: builtin/checkout.c:1222 builtin/worktree.c:290 builtin/worktree.c:44810380#, c-format10381msgid "invalid reference: %s"10382msgstr "Ungültige Referenz: %s"1038310384#: builtin/checkout.c:125110385#, c-format10386msgid "reference is not a tree: %s"10387msgstr "Referenz ist kein \"Tree\"-Objekt: %s"1038810389#: builtin/checkout.c:129210390msgid "paths cannot be used with switching branches"10391msgstr "Pfade können nicht beim Wechseln von Branches verwendet werden"1039210393#: builtin/checkout.c:1295 builtin/checkout.c:1299 builtin/checkout.c:130310394#, c-format10395msgid "'%s' cannot be used with switching branches"10396msgstr "'%s' kann nicht beim Wechseln von Branches verwendet werden"1039710398#: builtin/checkout.c:1307 builtin/checkout.c:1310 builtin/checkout.c:131510399#: builtin/checkout.c:131810400#, c-format10401msgid "'%s' cannot be used with '%s'"10402msgstr "'%s' kann nicht mit '%s' verwendet werden"1040310404#: builtin/checkout.c:132310405#, c-format10406msgid "Cannot switch branch to a non-commit '%s'"10407msgstr "Kann Branch nicht zu Nicht-Commit '%s' wechseln"1040810409#: builtin/checkout.c:1356 builtin/checkout.c:1358 builtin/clone.c:11810410#: builtin/remote.c:169 builtin/remote.c:171 builtin/worktree.c:49210411#: builtin/worktree.c:49410412msgid "branch"10413msgstr "Branch"1041410415#: builtin/checkout.c:135710416msgid "create and checkout a new branch"10417msgstr "einen neuen Branch erzeugen und auschecken"1041810419#: builtin/checkout.c:135910420msgid "create/reset and checkout a branch"10421msgstr "einen Branch erstellen/umsetzen und auschecken"1042210423#: builtin/checkout.c:136010424msgid "create reflog for new branch"10425msgstr "das Reflog für den neuen Branch erzeugen"1042610427#: builtin/checkout.c:1361 builtin/worktree.c:49610428msgid "detach HEAD at named commit"10429msgstr "HEAD bei benanntem Commit loslösen"1043010431#: builtin/checkout.c:136210432msgid "set upstream info for new branch"10433msgstr "Informationen zum Upstream-Branch für den neuen Branch setzen"1043410435#: builtin/checkout.c:136410436msgid "new-branch"10437msgstr "neuer Branch"1043810439#: builtin/checkout.c:136410440msgid "new unparented branch"10441msgstr "neuer Branch ohne Eltern-Commit"1044210443#: builtin/checkout.c:136610444msgid "checkout our version for unmerged files"10445msgstr "unsere Variante für nicht zusammengeführte Dateien auschecken"1044610447#: builtin/checkout.c:136910448msgid "checkout their version for unmerged files"10449msgstr "ihre Variante für nicht zusammengeführte Dateien auschecken"1045010451#: builtin/checkout.c:137110452msgid "force checkout (throw away local modifications)"10453msgstr "Auschecken erzwingen (verwirft lokale Änderungen)"1045410455#: builtin/checkout.c:137310456msgid "perform a 3-way merge with the new branch"10457msgstr "einen 3-Wege-Merge mit dem neuen Branch ausführen"1045810459#: builtin/checkout.c:1375 builtin/merge.c:28410460msgid "update ignored files (default)"10461msgstr "ignorierte Dateien aktualisieren (Standard)"1046210463#: builtin/checkout.c:1377 builtin/log.c:1594 parse-options.h:31710464msgid "style"10465msgstr "Stil"1046610467#: builtin/checkout.c:137810468msgid "conflict style (merge or diff3)"10469msgstr "Konfliktstil (merge oder diff3)"1047010471#: builtin/checkout.c:138110472msgid "do not limit pathspecs to sparse entries only"10473msgstr "keine Einschränkung bei Pfadspezifikationen zum partiellen Auschecken"1047410475#: builtin/checkout.c:138310476msgid "do not second guess 'git checkout <no-such-branch>'"10477msgstr "kein zweites Erraten bei 'git checkout <kein-solcher-Branch>'"1047810479#: builtin/checkout.c:138510480msgid "do not check if another worktree is holding the given ref"10481msgstr ""10482"Prüfung, ob die Referenz bereits in einem anderen Arbeitsverzeichnis "10483"ausgecheckt wurde, deaktivieren"1048410485#: builtin/checkout.c:1389 builtin/clone.c:88 builtin/fetch.c:14110486#: builtin/merge.c:281 builtin/pull.c:136 builtin/push.c:57510487#: builtin/send-pack.c:17410488msgid "force progress reporting"10489msgstr "Fortschrittsanzeige erzwingen"1049010491#: builtin/checkout.c:139010492msgid "use overlay mode (default)"10493msgstr "benutze Overlay-Modus (Standard)"1049410495#: builtin/checkout.c:142210496msgid "-b, -B and --orphan are mutually exclusive"10497msgstr "Die Optionen -b, -B und --orphan schließen sich gegenseitig aus."1049810499#: builtin/checkout.c:142510500msgid "-p and --overlay are mutually exclusive"10501msgstr "-p und --overlay schließen sich gegenseitig aus."1050210503#: builtin/checkout.c:144210504msgid "--track needs a branch name"10505msgstr "Bei der Option --track muss ein Branchname angegeben werden."1050610507#: builtin/checkout.c:144710508msgid "missing branch name; try -b"10509msgstr "Kein Branchname; versuchen Sie -b."1051010511#: builtin/checkout.c:148410512msgid "invalid path specification"10513msgstr "ungültige Pfadspezifikation"1051410515#: builtin/checkout.c:149110516#, c-format10517msgid "'%s' is not a commit and a branch '%s' cannot be created from it"10518msgstr ""10519"'%s' ist kein Commit und es kann kein Branch '%s' aus diesem erstellt werden."1052010521#: builtin/checkout.c:149510522#, c-format10523msgid "git checkout: --detach does not take a path argument '%s'"10524msgstr "git checkout: --detach nimmt kein Pfad-Argument '%s'"1052510526#: builtin/checkout.c:149910527msgid ""10528"git checkout: --ours/--theirs, --force and --merge are incompatible when\n"10529"checking out of the index."10530msgstr ""10531"git checkout: --ours/--theirs, --force und --merge sind inkompatibel wenn\n"10532"Sie aus dem Index auschecken."1053310534#: builtin/checkout.c:151910535#, c-format10536msgid ""10537"'%s' matched more than one remote tracking branch.\n"10538"We found %d remotes with a reference that matched. So we fell back\n"10539"on trying to resolve the argument as a path, but failed there too!\n"10540"\n"10541"If you meant to check out a remote tracking branch on, e.g. 'origin',\n"10542"you can do so by fully qualifying the name with the --track option:\n"10543"\n"10544" git checkout --track origin/<name>\n"10545"\n"10546"If you'd like to always have checkouts of an ambiguous <name> prefer\n"10547"one remote, e.g. the 'origin' remote, consider setting\n"10548"checkout.defaultRemote=origin in your config."10549msgstr ""10550"'%s' entspricht mehr als einem Remote-Tracking-Branch.\n"10551"Wir fanden %d Remote-Repositories mit einer entsprechenden Referenz, also\n"10552"haben wir versucht, das Argument als Pfad aufzulösen, was auch schief ging!\n"10553"\n"10554"Falls Sie einen Remote-Tracking-Branch, z.B. von 'origin', auschecken "10555"wollten,\n"10556"können Sie das tun, indem Sie den vollständig qualifizierten Namen mit der\n"10557"--track Option angeben:\n"10558"\n"10559" git checkout --track origin/<Name>\n"10560"\n"10561"Falls Sie beim Auschecken mit mehrdeutigen <Namen> immer ein Remote-"10562"Repository\n"10563"bevorzugen möchten, z.B. 'origin', könnten Sie die Einstellung\n"10564"checkout.defaultRemote=origin in Ihrer Konfiguration setzen."1056510566#: builtin/clean.c:2810567msgid ""10568"git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <paths>..."10569msgstr ""10570"git clean [-d] [-f] [-i] [-n] [-q] [-e <Muster>] [-x | -X] [--] <Pfade>..."1057110572#: builtin/clean.c:3210573#, c-format10574msgid "Removing %s\n"10575msgstr "Lösche %s\n"1057610577#: builtin/clean.c:3310578#, c-format10579msgid "Would remove %s\n"10580msgstr "Würde %s löschen\n"1058110582#: builtin/clean.c:3410583#, c-format10584msgid "Skipping repository %s\n"10585msgstr "Überspringe Repository %s\n"1058610587#: builtin/clean.c:3510588#, c-format10589msgid "Would skip repository %s\n"10590msgstr "Würde Repository %s überspringen\n"1059110592#: builtin/clean.c:3610593#, c-format10594msgid "failed to remove %s"10595msgstr "Fehler beim Löschen von %s"1059610597#: builtin/clean.c:299 git-add--interactive.perl:57910598#, c-format10599msgid ""10600"Prompt help:\n"10601"1 - select a numbered item\n"10602"foo - select item based on unique prefix\n"10603" - (empty) select nothing\n"10604msgstr ""10605"Eingabehilfe:\n"10606"1 - nummeriertes Element auswählen\n"10607"foo - Element anhand eines eindeutigen Präfix auswählen\n"10608" - (leer) nichts auswählen\n"1060910610#: builtin/clean.c:303 git-add--interactive.perl:58810611#, c-format10612msgid ""10613"Prompt help:\n"10614"1 - select a single item\n"10615"3-5 - select a range of items\n"10616"2-3,6-9 - select multiple ranges\n"10617"foo - select item based on unique prefix\n"10618"-... - unselect specified items\n"10619"* - choose all items\n"10620" - (empty) finish selecting\n"10621msgstr ""10622"Eingabehilfe:\n"10623"1 - einzelnes Element auswählen\n"10624"3-5 - Bereich von Elementen auswählen\n"10625"2-3,6-9 - mehrere Bereiche auswählen\n"10626"foo - Element anhand eines eindeutigen Präfix auswählen\n"10627"-... - angegebenes Element abwählen\n"10628"* - alle Elemente auswählen\n"10629" - (leer) Auswahl beenden\n"1063010631#: builtin/clean.c:519 git-add--interactive.perl:55410632#: git-add--interactive.perl:55910633#, c-format, perl-format10634msgid "Huh (%s)?\n"10635msgstr "Wie bitte (%s)?\n"1063610637#: builtin/clean.c:66110638#, c-format10639msgid "Input ignore patterns>> "10640msgstr "Ignorier-Muster eingeben>> "1064110642#: builtin/clean.c:69810643#, c-format10644msgid "WARNING: Cannot find items matched by: %s"10645msgstr "WARNUNG: Kann keine Einträge finden die Muster entsprechen: %s"1064610647#: builtin/clean.c:71910648msgid "Select items to delete"10649msgstr "Wählen Sie Einträge zum Löschen"1065010651#. TRANSLATORS: Make sure to keep [y/N] as is10652#: builtin/clean.c:76010653#, c-format10654msgid "Remove %s [y/N]? "10655msgstr "'%s' löschen [y/N]? "1065610657#: builtin/clean.c:785 git-add--interactive.perl:171710658#, c-format10659msgid "Bye.\n"10660msgstr "Tschüss.\n"1066110662#: builtin/clean.c:79310663msgid ""10664"clean - start cleaning\n"10665"filter by pattern - exclude items from deletion\n"10666"select by numbers - select items to be deleted by numbers\n"10667"ask each - confirm each deletion (like \"rm -i\")\n"10668"quit - stop cleaning\n"10669"help - this screen\n"10670"? - help for prompt selection"10671msgstr ""10672"clean - Clean starten\n"10673"filter by pattern - Einträge von Löschung ausschließen\n"10674"select by numbers - Auswahl von Einträgen über Nummern\n"10675"ask each - jede Löschung bestätigen (wie \"rm -i\")\n"10676"quit - Clean beenden\n"10677"help - diese Meldung anzeigen\n"10678"? - Hilfe zur Auswahl mittels Eingabe anzeigen"1067910680#: builtin/clean.c:820 git-add--interactive.perl:179310681msgid "*** Commands ***"10682msgstr "*** Befehle ***"1068310684#: builtin/clean.c:821 git-add--interactive.perl:179010685msgid "What now"10686msgstr "Was nun"1068710688#: builtin/clean.c:82910689msgid "Would remove the following item:"10690msgid_plural "Would remove the following items:"10691msgstr[0] "Würde das folgende Element entfernen:"10692msgstr[1] "Würde die folgenden Elemente entfernen:"1069310694#: builtin/clean.c:84510695msgid "No more files to clean, exiting."10696msgstr "Keine Dateien mehr zum Löschen, beende."1069710698#: builtin/clean.c:90710699msgid "do not print names of files removed"10700msgstr "keine Namen von gelöschten Dateien ausgeben"1070110702#: builtin/clean.c:90910703msgid "force"10704msgstr "Aktion erzwingen"1070510706#: builtin/clean.c:91010707msgid "interactive cleaning"10708msgstr "interaktives Clean"1070910710#: builtin/clean.c:91210711msgid "remove whole directories"10712msgstr "ganze Verzeichnisse löschen"1071310714#: builtin/clean.c:913 builtin/describe.c:546 builtin/describe.c:54810715#: builtin/grep.c:897 builtin/log.c:171 builtin/log.c:17310716#: builtin/ls-files.c:557 builtin/name-rev.c:417 builtin/name-rev.c:41910717#: builtin/show-ref.c:17910718msgid "pattern"10719msgstr "Muster"1072010721#: builtin/clean.c:91410722msgid "add <pattern> to ignore rules"10723msgstr "<Muster> zu den Regeln für ignorierte Pfade hinzufügen"1072410725#: builtin/clean.c:91510726msgid "remove ignored files, too"10727msgstr "auch ignorierte Dateien löschen"1072810729#: builtin/clean.c:91710730msgid "remove only ignored files"10731msgstr "nur ignorierte Dateien löschen"1073210733#: builtin/clean.c:93510734msgid "-x and -X cannot be used together"10735msgstr "Die Optionen -x und -X können nicht gemeinsam verwendet werden."1073610737#: builtin/clean.c:93910738msgid ""10739"clean.requireForce set to true and neither -i, -n, nor -f given; refusing to "10740"clean"10741msgstr ""10742"clean.requireForce auf \"true\" gesetzt und weder -i, -n noch -f gegeben; "10743"\"clean\" verweigert"1074410745#: builtin/clean.c:94210746msgid ""10747"clean.requireForce defaults to true and neither -i, -n, nor -f given; "10748"refusing to clean"10749msgstr ""10750"clean.requireForce standardmäßig auf \"true\" gesetzt und weder -i, -n noch -"10751"f gegeben; \"clean\" verweigert"1075210753#: builtin/clone.c:4410754msgid "git clone [<options>] [--] <repo> [<dir>]"10755msgstr "git clone [<Optionen>] [--] <Repository> [<Verzeichnis>]"1075610757#: builtin/clone.c:9010758msgid "don't create a checkout"10759msgstr "kein Auschecken"1076010761#: builtin/clone.c:91 builtin/clone.c:93 builtin/init-db.c:48910762msgid "create a bare repository"10763msgstr "ein Bare-Repository erstellen"1076410765#: builtin/clone.c:9510766msgid "create a mirror repository (implies bare)"10767msgstr "ein Spiegelarchiv erstellen (impliziert --bare)"1076810769#: builtin/clone.c:9710770msgid "to clone from a local repository"10771msgstr "von einem lokalen Repository klonen"1077210773#: builtin/clone.c:9910774msgid "don't use local hardlinks, always copy"10775msgstr "lokal keine harten Verweise verwenden, immer Kopien"1077610777#: builtin/clone.c:10110778msgid "setup as shared repository"10779msgstr "als verteiltes Repository einrichten"1078010781#: builtin/clone.c:10410782msgid "pathspec"10783msgstr "Pfadspezifikation"1078410785#: builtin/clone.c:10410786msgid "initialize submodules in the clone"10787msgstr "Submodule im Klon initialisieren"1078810789#: builtin/clone.c:10710790msgid "number of submodules cloned in parallel"10791msgstr "Anzahl der parallel zu klonenden Submodule"1079210793#: builtin/clone.c:108 builtin/init-db.c:48610794msgid "template-directory"10795msgstr "Vorlagenverzeichnis"1079610797#: builtin/clone.c:109 builtin/init-db.c:48710798msgid "directory from which templates will be used"10799msgstr "Verzeichnis, von welchem die Vorlagen verwendet werden"1080010801#: builtin/clone.c:111 builtin/clone.c:113 builtin/submodule--helper.c:137910802#: builtin/submodule--helper.c:185910803msgid "reference repository"10804msgstr "Repository referenzieren"1080510806#: builtin/clone.c:115 builtin/submodule--helper.c:138110807#: builtin/submodule--helper.c:186110808msgid "use --reference only while cloning"10809msgstr "--reference nur während des Klonens benutzen"1081010811#: builtin/clone.c:116 builtin/column.c:27 builtin/merge-file.c:4610812#: builtin/pack-objects.c:3306 builtin/repack.c:32910813msgid "name"10814msgstr "Name"1081510816#: builtin/clone.c:11710817msgid "use <name> instead of 'origin' to track upstream"10818msgstr "<Name> statt 'origin' für Upstream-Repository verwenden"1081910820#: builtin/clone.c:11910821msgid "checkout <branch> instead of the remote's HEAD"10822msgstr "<Branch> auschecken, anstatt HEAD des Remote-Repositories"1082310824#: builtin/clone.c:12110825msgid "path to git-upload-pack on the remote"10826msgstr "Pfad zu \"git-upload-pack\" auf der Gegenseite"1082710828#: builtin/clone.c:122 builtin/fetch.c:142 builtin/grep.c:83610829#: builtin/pull.c:22510830msgid "depth"10831msgstr "Tiefe"1083210833#: builtin/clone.c:12310834msgid "create a shallow clone of that depth"10835msgstr ""10836"einen Klon mit unvollständiger Historie (shallow) in dieser Tiefe erstellen"1083710838#: builtin/clone.c:124 builtin/fetch.c:144 builtin/pack-objects.c:329510839msgid "time"10840msgstr "Zeit"1084110842#: builtin/clone.c:12510843msgid "create a shallow clone since a specific time"10844msgstr ""10845"einen Klon mit unvollständiger Historie (shallow) seit einer bestimmten "10846"Zeit\n"10847"erstellen"1084810849#: builtin/clone.c:126 builtin/fetch.c:146 builtin/fetch.c:16910850#: builtin/rebase.c:138910851msgid "revision"10852msgstr "Commit"1085310854#: builtin/clone.c:127 builtin/fetch.c:14710855msgid "deepen history of shallow clone, excluding rev"10856msgstr ""10857"die Historie eines Klons mit unvollständiger Historie (shallow) mittels\n"10858"Ausschluss eines Commits vertiefen"1085910860#: builtin/clone.c:12910861msgid "clone only one branch, HEAD or --branch"10862msgstr "nur einen Branch klonen, HEAD oder --branch"1086310864#: builtin/clone.c:13110865msgid "don't clone any tags, and make later fetches not to follow them"10866msgstr "keine Tags klonen, und auch bei späteren Abrufen nicht beachten"1086710868#: builtin/clone.c:13310869msgid "any cloned submodules will be shallow"10870msgstr "jedes geklonte Submodul mit unvollständiger Historie (shallow)"1087110872#: builtin/clone.c:134 builtin/init-db.c:49510873msgid "gitdir"10874msgstr ".git-Verzeichnis"1087510876#: builtin/clone.c:135 builtin/init-db.c:49610877msgid "separate git dir from working tree"10878msgstr "Git-Verzeichnis vom Arbeitsverzeichnis separieren"1087910880#: builtin/clone.c:13610881msgid "key=value"10882msgstr "Schlüssel=Wert"1088310884#: builtin/clone.c:13710885msgid "set config inside the new repository"10886msgstr "Konfiguration innerhalb des neuen Repositories setzen"1088710888#: builtin/clone.c:139 builtin/fetch.c:164 builtin/ls-remote.c:7610889#: builtin/push.c:585 builtin/send-pack.c:17210890msgid "server-specific"10891msgstr "serverspezifisch"1089210893#: builtin/clone.c:139 builtin/fetch.c:164 builtin/ls-remote.c:7610894#: builtin/push.c:585 builtin/send-pack.c:17310895msgid "option to transmit"10896msgstr "Option übertragen"1089710898#: builtin/clone.c:140 builtin/fetch.c:165 builtin/pull.c:23810899#: builtin/push.c:58610900msgid "use IPv4 addresses only"10901msgstr "nur IPv4-Adressen benutzen"1090210903#: builtin/clone.c:142 builtin/fetch.c:167 builtin/pull.c:24110904#: builtin/push.c:58810905msgid "use IPv6 addresses only"10906msgstr "nur IPv6-Adressen benutzen"1090710908#: builtin/clone.c:28010909msgid ""10910"No directory name could be guessed.\n"10911"Please specify a directory on the command line"10912msgstr ""10913"Konnte keinen Verzeichnisnamen erraten.\n"10914"Bitte geben Sie ein Verzeichnis auf der Befehlszeile an."1091510916#: builtin/clone.c:33310917#, c-format10918msgid "info: Could not add alternate for '%s': %s\n"10919msgstr "info: Konnte Alternative für '%s' nicht hinzufügen: %s\n"1092010921#: builtin/clone.c:40510922#, c-format10923msgid "failed to open '%s'"10924msgstr "Fehler beim Öffnen von '%s'"1092510926#: builtin/clone.c:41310927#, c-format10928msgid "%s exists and is not a directory"10929msgstr "%s existiert und ist kein Verzeichnis"1093010931#: builtin/clone.c:42710932#, c-format10933msgid "failed to stat %s\n"10934msgstr "Konnte %s nicht lesen\n"1093510936#: builtin/clone.c:44410937#, c-format10938msgid "failed to unlink '%s'"10939msgstr "Konnte '%s' nicht entfernen."1094010941#: builtin/clone.c:44910942#, c-format10943msgid "failed to create link '%s'"10944msgstr "Konnte Verweis '%s' nicht erstellen"1094510946#: builtin/clone.c:45310947#, c-format10948msgid "failed to copy file to '%s'"10949msgstr "Konnte Datei nicht nach '%s' kopieren"1095010951#: builtin/clone.c:47910952#, c-format10953msgid "done.\n"10954msgstr "Fertig.\n"1095510956#: builtin/clone.c:49310957msgid ""10958"Clone succeeded, but checkout failed.\n"10959"You can inspect what was checked out with 'git status'\n"10960"and retry the checkout with 'git checkout -f HEAD'\n"10961msgstr ""10962"Klonen erfolgreich, Auschecken ist aber fehlgeschlagen.\n"10963"Sie können mit 'git status' prüfen, was ausgecheckt worden ist\n"10964"und das Auschecken mit 'git checkout -f HEAD' erneut versuchen.\n"1096510966#: builtin/clone.c:57010967#, c-format10968msgid "Could not find remote branch %s to clone."10969msgstr "Konnte zu klonenden Remote-Branch %s nicht finden."1097010971#: builtin/clone.c:68910972#, c-format10973msgid "unable to update %s"10974msgstr "kann %s nicht aktualisieren"1097510976#: builtin/clone.c:73910977msgid "remote HEAD refers to nonexistent ref, unable to checkout.\n"10978msgstr ""10979"Externer HEAD bezieht sich auf eine nicht existierende Referenz und kann "10980"nicht ausgecheckt werden.\n"1098110982#: builtin/clone.c:77010983msgid "unable to checkout working tree"10984msgstr "Arbeitsverzeichnis konnte nicht ausgecheckt werden"1098510986#: builtin/clone.c:81510987msgid "unable to write parameters to config file"10988msgstr "konnte Parameter nicht in Konfigurationsdatei schreiben"1098910990#: builtin/clone.c:87810991msgid "cannot repack to clean up"10992msgstr "Kann \"repack\" zum Aufräumen nicht aufrufen"1099310994#: builtin/clone.c:88010995msgid "cannot unlink temporary alternates file"10996msgstr "Kann temporäre \"alternates\"-Datei nicht entfernen"1099710998#: builtin/clone.c:920 builtin/receive-pack.c:195210999msgid "Too many arguments."11000msgstr "Zu viele Argumente."1100111002#: builtin/clone.c:92411003msgid "You must specify a repository to clone."11004msgstr "Sie müssen ein Repository zum Klonen angeben."1100511006#: builtin/clone.c:93711007#, c-format11008msgid "--bare and --origin %s options are incompatible."11009msgstr "Die Optionen --bare und --origin %s sind inkompatibel."1101011011#: builtin/clone.c:94011012msgid "--bare and --separate-git-dir are incompatible."11013msgstr "Die Optionen --bare und --separate-git-dir sind inkompatibel."1101411015#: builtin/clone.c:95311016#, c-format11017msgid "repository '%s' does not exist"11018msgstr "Repository '%s' existiert nicht."1101911020#: builtin/clone.c:959 builtin/fetch.c:161011021#, c-format11022msgid "depth %s is not a positive number"11023msgstr "Tiefe %s ist keine positive Zahl"1102411025#: builtin/clone.c:96911026#, c-format11027msgid "destination path '%s' already exists and is not an empty directory."11028msgstr "Zielpfad '%s' existiert bereits und ist kein leeres Verzeichnis."1102911030#: builtin/clone.c:97911031#, c-format11032msgid "working tree '%s' already exists."11033msgstr "Arbeitsverzeichnis '%s' existiert bereits."1103411035#: builtin/clone.c:994 builtin/clone.c:1015 builtin/difftool.c:26411036#: builtin/worktree.c:296 builtin/worktree.c:32811037#, c-format11038msgid "could not create leading directories of '%s'"11039msgstr "Konnte führende Verzeichnisse von '%s' nicht erstellen."1104011041#: builtin/clone.c:99911042#, c-format11043msgid "could not create work tree dir '%s'"11044msgstr "Konnte Arbeitsverzeichnis '%s' nicht erstellen"1104511046#: builtin/clone.c:101911047#, c-format11048msgid "Cloning into bare repository '%s'...\n"11049msgstr "Klone in Bare-Repository '%s' ...\n"1105011051#: builtin/clone.c:102111052#, c-format11053msgid "Cloning into '%s'...\n"11054msgstr "Klone nach '%s' ...\n"1105511056#: builtin/clone.c:104511057msgid ""11058"clone --recursive is not compatible with both --reference and --reference-if-"11059"able"11060msgstr ""11061"'clone --recursive' ist nicht kompatibel mit --reference und --reference-if-"11062"able"1106311064#: builtin/clone.c:110611065msgid "--depth is ignored in local clones; use file:// instead."11066msgstr ""11067"Die Option --depth wird in lokalen Klonen ignoriert; benutzen Sie "11068"stattdessen file://"1106911070#: builtin/clone.c:110811071msgid "--shallow-since is ignored in local clones; use file:// instead."11072msgstr ""11073"--shallow-since wird in lokalen Klonen ignoriert; benutzen Sie stattdessen "11074"file://"1107511076#: builtin/clone.c:111011077msgid "--shallow-exclude is ignored in local clones; use file:// instead."11078msgstr ""11079"--shallow-exclude wird in lokalen Klonen ignoriert; benutzen Sie stattdessen "11080"file://"1108111082#: builtin/clone.c:111211083msgid "--filter is ignored in local clones; use file:// instead."11084msgstr ""11085"--filter wird in lokalen Klonen ignoriert; benutzen Sie stattdessen file://"1108611087#: builtin/clone.c:111511088msgid "source repository is shallow, ignoring --local"11089msgstr ""11090"Quelle ist ein Repository mit unvollständiger Historie (shallow),\n"11091"ignoriere --local"1109211093#: builtin/clone.c:112011094msgid "--local is ignored"11095msgstr "--local wird ignoriert"1109611097#: builtin/clone.c:1197 builtin/clone.c:120511098#, c-format11099msgid "Remote branch %s not found in upstream %s"11100msgstr "Remote-Branch %s nicht im Upstream-Repository %s gefunden"1110111102#: builtin/clone.c:120811103msgid "You appear to have cloned an empty repository."11104msgstr "Sie scheinen ein leeres Repository geklont zu haben."1110511106#: builtin/column.c:1011107msgid "git column [<options>]"11108msgstr "git column [<Optionen>]"1110911110#: builtin/column.c:2711111msgid "lookup config vars"11112msgstr "Konfigurationsvariablen nachschlagen"1111311114#: builtin/column.c:28 builtin/column.c:2911115msgid "layout to use"11116msgstr "zu verwendende Anordnung"1111711118#: builtin/column.c:3011119msgid "Maximum width"11120msgstr "maximale Breite"1112111122#: builtin/column.c:3111123msgid "Padding space on left border"11124msgstr "Abstand zum linken Rand"1112511126#: builtin/column.c:3211127msgid "Padding space on right border"11128msgstr "Abstand zum rechten Rand"1112911130#: builtin/column.c:3311131msgid "Padding space between columns"11132msgstr "Abstand zwischen Spalten"1113311134#: builtin/column.c:5111135msgid "--command must be the first argument"11136msgstr "Die Option --command muss an erster Stelle stehen."1113711138#: builtin/commit-tree.c:1811139msgid ""11140"git commit-tree [(-p <parent>)...] [-S[<keyid>]] [(-m <message>)...] [(-F "11141"<file>)...] <tree>"11142msgstr ""11143"git commit-tree [(-p <Eltern-Commit>)...] [-S[<Key-ID>]] [(-m "11144"<Nachricht>)...] [(-F <Datei>)...] <Tree-Objekt>"1114511146#: builtin/commit-tree.c:3111147#, c-format11148msgid "duplicate parent %s ignored"11149msgstr "doppelter Vorgänger %s ignoriert"1115011151#: builtin/commit-tree.c:56 builtin/commit-tree.c:136 builtin/log.c:52011152#, c-format11153msgid "not a valid object name %s"11154msgstr "Kein gültiger Objektname: %s"1115511156#: builtin/commit-tree.c:9311157#, c-format11158msgid "git commit-tree: failed to open '%s'"11159msgstr "git commit-tree: Fehler beim Öffnen von '%s'"1116011161#: builtin/commit-tree.c:9611162#, c-format11163msgid "git commit-tree: failed to read '%s'"11164msgstr "git commit-tree: Fehler beim Lesen von '%s'"1116511166#: builtin/commit-tree.c:9811167#, c-format11168msgid "git commit-tree: failed to close '%s'"11169msgstr "git commit-tree: Fehler beim Schließen von '%s'"1117011171#: builtin/commit-tree.c:11111172msgid "parent"11173msgstr "Eltern-Commit"1117411175#: builtin/commit-tree.c:11211176msgid "id of a parent commit object"11177msgstr "ID eines Eltern-Commit-Objektes."1117811179#: builtin/commit-tree.c:114 builtin/commit.c:1480 builtin/merge.c:26811180#: builtin/notes.c:409 builtin/notes.c:575 builtin/stash.c:147311181#: builtin/tag.c:40611182msgid "message"11183msgstr "Beschreibung"1118411185#: builtin/commit-tree.c:115 builtin/commit.c:148011186msgid "commit message"11187msgstr "Commit-Beschreibung"1118811189#: builtin/commit-tree.c:11811190msgid "read commit log message from file"11191msgstr "Commit-Beschreibung von Datei lesen"1119211193#: builtin/commit-tree.c:121 builtin/commit.c:1492 builtin/merge.c:28311194#: builtin/pull.c:193 builtin/revert.c:11711195msgid "GPG sign commit"11196msgstr "Commit mit GPG signieren"1119711198#: builtin/commit-tree.c:13311199msgid "must give exactly one tree"11200msgstr "Brauche genau ein Tree-Objekt."1120111202#: builtin/commit-tree.c:14011203msgid "git commit-tree: failed to read"11204msgstr "git commit-tree: Fehler beim Lesen"1120511206#: builtin/commit.c:4111207msgid "git commit [<options>] [--] <pathspec>..."11208msgstr "git commit [<Optionen>] [--] <Pfadspezifikation>..."1120911210#: builtin/commit.c:4611211msgid "git status [<options>] [--] <pathspec>..."11212msgstr "git status [<Optionen>] [--] <Pfadspezifikation>..."1121311214#: builtin/commit.c:5111215msgid ""11216"You asked to amend the most recent commit, but doing so would make\n"11217"it empty. You can repeat your command with --allow-empty, or you can\n"11218"remove the commit entirely with \"git reset HEAD^\".\n"11219msgstr ""11220"Sie fragten den jüngsten Commit nachzubessern, aber das würde diesen leer\n"11221"machen. Sie können Ihren Befehl mit --allow-empty wiederholen, oder diesen\n"11222"Commit mit \"git reset HEAD^\" vollständig entfernen.\n"1122311224#: builtin/commit.c:5611225msgid ""11226"The previous cherry-pick is now empty, possibly due to conflict resolution.\n"11227"If you wish to commit it anyway, use:\n"11228"\n"11229" git commit --allow-empty\n"11230"\n"11231msgstr ""11232"Der letzte \"cherry-pick\" ist jetzt leer, möglicherweise durch eine "11233"Konfliktauflösung.\n"11234"Wenn Sie dies trotzdem committen wollen, benutzen Sie:\n"11235"\n"11236" git commit --allow-empty\n"11237"\n"1123811239#: builtin/commit.c:6311240msgid "Otherwise, please use 'git reset'\n"11241msgstr "Andernfalls benutzen Sie bitte 'git reset'\n"1124211243#: builtin/commit.c:6611244msgid ""11245"If you wish to skip this commit, use:\n"11246"\n"11247" git reset\n"11248"\n"11249"Then \"git cherry-pick --continue\" will resume cherry-picking\n"11250"the remaining commits.\n"11251msgstr ""11252"Wenn Sie diesen Commit auslassen möchten, benutzen Sie:\n"11253"\n"11254" git reset\n"11255"\n"11256"Benutzen Sie anschließend \"git cherry-pick --continue\", um die\n"11257"Cherry-Pick-Operation mit den verbleibenden Commits fortzusetzen.\n"1125811259#: builtin/commit.c:31211260msgid "failed to unpack HEAD tree object"11261msgstr "Fehler beim Entpacken des Tree-Objektes von HEAD."1126211263#: builtin/commit.c:35311264msgid "unable to create temporary index"11265msgstr "Konnte temporären Index nicht erstellen."1126611267#: builtin/commit.c:35911268msgid "interactive add failed"11269msgstr "interaktives Hinzufügen fehlgeschlagen"1127011271#: builtin/commit.c:37311272msgid "unable to update temporary index"11273msgstr "Konnte temporären Index nicht aktualisieren."1127411275#: builtin/commit.c:37511276msgid "Failed to update main cache tree"11277msgstr "Konnte Haupt-Cache-Verzeichnis nicht aktualisieren"1127811279#: builtin/commit.c:400 builtin/commit.c:423 builtin/commit.c:46911280msgid "unable to write new_index file"11281msgstr "Konnte new_index Datei nicht schreiben"1128211283#: builtin/commit.c:45211284msgid "cannot do a partial commit during a merge."11285msgstr "Kann keinen Teil-Commit durchführen, während ein Merge im Gange ist."1128611287#: builtin/commit.c:45411288msgid "cannot do a partial commit during a cherry-pick."11289msgstr ""11290"Kann keinen Teil-Commit durchführen, während \"cherry-pick\" im Gange ist."1129111292#: builtin/commit.c:46211293msgid "cannot read the index"11294msgstr "Kann Index nicht lesen"1129511296#: builtin/commit.c:48111297msgid "unable to write temporary index file"11298msgstr "Konnte temporäre Index-Datei nicht schreiben."1129911300#: builtin/commit.c:57911301#, c-format11302msgid "commit '%s' lacks author header"11303msgstr "Commit '%s' fehlt Autor-Kopfbereich"1130411305#: builtin/commit.c:58111306#, c-format11307msgid "commit '%s' has malformed author line"11308msgstr "Commit '%s' hat fehlerhafte Autor-Zeile"1130911310#: builtin/commit.c:60011311msgid "malformed --author parameter"11312msgstr "Fehlerhafter --author Parameter"1131311314#: builtin/commit.c:65311315msgid ""11316"unable to select a comment character that is not used\n"11317"in the current commit message"11318msgstr ""11319"Konnte kein Kommentar-Zeichen auswählen, das nicht in\n"11320"der aktuellen Commit-Beschreibung verwendet wird."1132111322#: builtin/commit.c:691 builtin/commit.c:724 builtin/commit.c:106911323#, c-format11324msgid "could not lookup commit %s"11325msgstr "Konnte Commit %s nicht nachschlagen"1132611327#: builtin/commit.c:703 builtin/shortlog.c:31911328#, c-format11329msgid "(reading log message from standard input)\n"11330msgstr "(lese Log-Nachricht von Standard-Eingabe)\n"1133111332#: builtin/commit.c:70511333msgid "could not read log from standard input"11334msgstr "Konnte Log nicht von Standard-Eingabe lesen."1133511336#: builtin/commit.c:70911337#, c-format11338msgid "could not read log file '%s'"11339msgstr "Konnte Log-Datei '%s' nicht lesen"1134011341#: builtin/commit.c:740 builtin/commit.c:75611342msgid "could not read SQUASH_MSG"11343msgstr "Konnte SQUASH_MSG nicht lesen"1134411345#: builtin/commit.c:74711346msgid "could not read MERGE_MSG"11347msgstr "Konnte MERGE_MSG nicht lesen"1134811349#: builtin/commit.c:80711350msgid "could not write commit template"11351msgstr "Konnte Commit-Vorlage nicht schreiben"1135211353#: builtin/commit.c:82611354#, c-format11355msgid ""11356"\n"11357"It looks like you may be committing a merge.\n"11358"If this is not correct, please remove the file\n"11359"\t%s\n"11360"and try again.\n"11361msgstr ""11362"\n"11363"Es sieht so aus, als committen Sie einen Merge.\n"11364"Falls das nicht korrekt ist, löschen Sie bitte die Datei\n"11365"\t%s\n"11366"und versuchen Sie es erneut.\n"1136711368#: builtin/commit.c:83111369#, c-format11370msgid ""11371"\n"11372"It looks like you may be committing a cherry-pick.\n"11373"If this is not correct, please remove the file\n"11374"\t%s\n"11375"and try again.\n"11376msgstr ""11377"\n"11378"Es sieht so aus, als committen Sie einen \"cherry-pick\".\n"11379"Falls das nicht korrekt ist, löschen Sie bitte die Datei\n"11380"\t%s\n"11381"und versuchen Sie es erneut.\n"1138211383#: builtin/commit.c:84411384#, c-format11385msgid ""11386"Please enter the commit message for your changes. Lines starting\n"11387"with '%c' will be ignored, and an empty message aborts the commit.\n"11388msgstr ""11389"Bitte geben Sie eine Commit-Beschreibung für Ihre Änderungen ein. Zeilen,\n"11390"die mit '%c' beginnen, werden ignoriert, und eine leere Beschreibung\n"11391"bricht den Commit ab.\n"1139211393#: builtin/commit.c:85211394#, c-format11395msgid ""11396"Please enter the commit message for your changes. Lines starting\n"11397"with '%c' will be kept; you may remove them yourself if you want to.\n"11398"An empty message aborts the commit.\n"11399msgstr ""11400"Bitte geben Sie eine Commit-Beschreibung für Ihre Änderungen ein. Zeilen, "11401"die\n"11402"mit '%c' beginnen, werden beibehalten; wenn Sie möchten, können Sie diese "11403"entfernen.\n"11404"Eine leere Beschreibung bricht den Commit ab.\n"1140511406#: builtin/commit.c:86911407#, c-format11408msgid "%sAuthor: %.*s <%.*s>"11409msgstr "%sAutor: %.*s <%.*s>"1141011411#: builtin/commit.c:87711412#, c-format11413msgid "%sDate: %s"11414msgstr "%sDatum: %s"1141511416#: builtin/commit.c:88411417#, c-format11418msgid "%sCommitter: %.*s <%.*s>"11419msgstr "%sCommit-Ersteller: %.*s <%.*s>"1142011421#: builtin/commit.c:90211422msgid "Cannot read index"11423msgstr "Kann Index nicht lesen"1142411425#: builtin/commit.c:96911426msgid "Error building trees"11427msgstr "Fehler beim Erzeugen der \"Tree\"-Objekte"1142811429#: builtin/commit.c:983 builtin/tag.c:26911430#, c-format11431msgid "Please supply the message using either -m or -F option.\n"11432msgstr ""11433"Bitte liefern Sie eine Beschreibung entweder mit der Option -m oder -F.\n"1143411435#: builtin/commit.c:102711436#, c-format11437msgid "--author '%s' is not 'Name <email>' and matches no existing author"11438msgstr ""11439"--author '%s' ist nicht im Format 'Name <E-Mail>' und stimmt mit keinem "11440"vorhandenen Autor überein"1144111442#: builtin/commit.c:104111443#, c-format11444msgid "Invalid ignored mode '%s'"11445msgstr "Ungültiger ignored-Modus '%s'."1144611447#: builtin/commit.c:1059 builtin/commit.c:128411448#, c-format11449msgid "Invalid untracked files mode '%s'"11450msgstr "Ungültiger Modus '%s' für unversionierte Dateien"1145111452#: builtin/commit.c:109711453msgid "--long and -z are incompatible"11454msgstr "Die Optionen --long und -z sind inkompatibel."1145511456#: builtin/commit.c:113011457msgid "Using both --reset-author and --author does not make sense"11458msgstr ""11459"Die Optionen --reset-author und --author können nicht gemeinsam verwendet "11460"werden."1146111462#: builtin/commit.c:113911463msgid "You have nothing to amend."11464msgstr "Sie haben nichts für \"--amend\"."1146511466#: builtin/commit.c:114211467msgid "You are in the middle of a merge -- cannot amend."11468msgstr "Ein Merge ist im Gange -- kann \"--amend\" nicht ausführen."1146911470#: builtin/commit.c:114411471msgid "You are in the middle of a cherry-pick -- cannot amend."11472msgstr "\"cherry-pick\" ist im Gange -- kann \"--amend\" nicht ausführen."1147311474#: builtin/commit.c:114711475msgid "Options --squash and --fixup cannot be used together"11476msgstr ""11477"Die Optionen --squash und --fixup können nicht gemeinsam verwendet werden."1147811479#: builtin/commit.c:115711480msgid "Only one of -c/-C/-F/--fixup can be used."11481msgstr "Es kann nur eine Option von -c/-C/-F/--fixup verwendet werden."1148211483#: builtin/commit.c:115911484msgid "Option -m cannot be combined with -c/-C/-F."11485msgstr "Die Option -m kann nicht mit -c/-C/-F kombiniert werden."1148611487#: builtin/commit.c:116711488msgid "--reset-author can be used only with -C, -c or --amend."11489msgstr ""11490"Die Option --reset--author kann nur mit -C, -c oder --amend verwendet werden."1149111492#: builtin/commit.c:118411493msgid "Only one of --include/--only/--all/--interactive/--patch can be used."11494msgstr ""11495"Es kann nur eine Option von --include/--only/--all/--interactive/--patch "11496"verwendet werden."1149711498#: builtin/commit.c:118611499msgid "No paths with --include/--only does not make sense."11500msgstr ""11501"Die Optionen --include und --only können nur mit der Angabe von Pfaden "11502"verwendet werden."1150311504#: builtin/commit.c:119211505#, c-format11506msgid "paths '%s ...' with -a does not make sense"11507msgstr "Pfade '%s ...' mit -a sind nicht sinnvoll"1150811509#: builtin/commit.c:1319 builtin/commit.c:150311510msgid "show status concisely"11511msgstr "Status im Kurzformat anzeigen"1151211513#: builtin/commit.c:1321 builtin/commit.c:150511514msgid "show branch information"11515msgstr "Branchinformationen anzeigen"1151611517#: builtin/commit.c:132311518msgid "show stash information"11519msgstr "Stashinformationen anzeigen"1152011521#: builtin/commit.c:1325 builtin/commit.c:150711522msgid "compute full ahead/behind values"11523msgstr "voraus/hinterher-Werte berechnen"1152411525#: builtin/commit.c:132711526msgid "version"11527msgstr "Version"1152811529#: builtin/commit.c:1327 builtin/commit.c:1509 builtin/push.c:56111530#: builtin/worktree.c:64311531msgid "machine-readable output"11532msgstr "maschinenlesbare Ausgabe"1153311534#: builtin/commit.c:1330 builtin/commit.c:151111535msgid "show status in long format (default)"11536msgstr "Status im Langformat anzeigen (Standard)"1153711538#: builtin/commit.c:1333 builtin/commit.c:151411539msgid "terminate entries with NUL"11540msgstr "Einträge mit NUL-Zeichen abschließen"1154111542#: builtin/commit.c:1335 builtin/commit.c:1339 builtin/commit.c:151711543#: builtin/fast-export.c:1085 builtin/fast-export.c:1088 builtin/rebase.c:146511544#: parse-options.h:33111545msgid "mode"11546msgstr "Modus"1154711548#: builtin/commit.c:1336 builtin/commit.c:151711549msgid "show untracked files, optional modes: all, normal, no. (Default: all)"11550msgstr ""11551"unversionierte Dateien anzeigen, optionale Modi: all, normal, no. (Standard: "11552"all)"1155311554#: builtin/commit.c:134011555msgid ""11556"show ignored files, optional modes: traditional, matching, no. (Default: "11557"traditional)"11558msgstr ""11559"ignorierte Dateien anzeigen, optionale Modi: traditional, matching, no. "11560"(Standard: traditional)"1156111562#: builtin/commit.c:1342 parse-options.h:17911563msgid "when"11564msgstr "wann"1156511566#: builtin/commit.c:134311567msgid ""11568"ignore changes to submodules, optional when: all, dirty, untracked. "11569"(Default: all)"11570msgstr ""11571"Änderungen in Submodulen ignorieren, optional wenn: all, dirty, untracked. "11572"(Standard: all)"1157311574#: builtin/commit.c:134511575msgid "list untracked files in columns"11576msgstr "unversionierte Dateien in Spalten auflisten"1157711578#: builtin/commit.c:134611579msgid "do not detect renames"11580msgstr "keine Umbenennungen ermitteln"1158111582#: builtin/commit.c:134811583msgid "detect renames, optionally set similarity index"11584msgstr "Umbenennungen erkennen, optional Index für Gleichheit setzen"1158511586#: builtin/commit.c:136811587msgid "Unsupported combination of ignored and untracked-files arguments"11588msgstr ""11589"Nicht unterstützte Kombination von ignored und untracked-files Argumenten."1159011591#: builtin/commit.c:147311592msgid "suppress summary after successful commit"11593msgstr "Zusammenfassung nach erfolgreichem Commit unterdrücken"1159411595#: builtin/commit.c:147411596msgid "show diff in commit message template"11597msgstr "Unterschiede in Commit-Beschreibungsvorlage anzeigen"1159811599#: builtin/commit.c:147611600msgid "Commit message options"11601msgstr "Optionen für Commit-Beschreibung"1160211603#: builtin/commit.c:1477 builtin/merge.c:272 builtin/tag.c:40811604msgid "read message from file"11605msgstr "Beschreibung von Datei lesen"1160611607#: builtin/commit.c:147811608msgid "author"11609msgstr "Autor"1161011611#: builtin/commit.c:147811612msgid "override author for commit"11613msgstr "Autor eines Commits überschreiben"1161411615#: builtin/commit.c:1479 builtin/gc.c:53911616msgid "date"11617msgstr "Datum"1161811619#: builtin/commit.c:147911620msgid "override date for commit"11621msgstr "Datum eines Commits überschreiben"1162211623#: builtin/commit.c:1481 builtin/commit.c:1482 builtin/commit.c:148311624#: builtin/commit.c:1484 parse-options.h:323 ref-filter.h:9211625msgid "commit"11626msgstr "Commit"1162711628#: builtin/commit.c:148111629msgid "reuse and edit message from specified commit"11630msgstr "Beschreibung des angegebenen Commits wiederverwenden und editieren"1163111632#: builtin/commit.c:148211633msgid "reuse message from specified commit"11634msgstr "Beschreibung des angegebenen Commits wiederverwenden"1163511636#: builtin/commit.c:148311637msgid "use autosquash formatted message to fixup specified commit"11638msgstr ""11639"eine automatisch zusammengesetzte Beschreibung zum Nachbessern des "11640"angegebenen Commits verwenden"1164111642#: builtin/commit.c:148411643msgid "use autosquash formatted message to squash specified commit"11644msgstr ""11645"eine automatisch zusammengesetzte Beschreibung beim \"squash\" des "11646"angegebenen Commits verwenden"1164711648#: builtin/commit.c:148511649msgid "the commit is authored by me now (used with -C/-c/--amend)"11650msgstr "Sie als Autor des Commits setzen (verwendet mit -C/-c/--amend)"1165111652#: builtin/commit.c:1486 builtin/log.c:1541 builtin/merge.c:28511653#: builtin/pull.c:162 builtin/revert.c:10911654msgid "add Signed-off-by:"11655msgstr "'Signed-off-by:'-Zeile hinzufügen"1165611657#: builtin/commit.c:148711658msgid "use specified template file"11659msgstr "angegebene Vorlagendatei verwenden"1166011661#: builtin/commit.c:148811662msgid "force edit of commit"11663msgstr "Bearbeitung des Commits erzwingen"1166411665#: builtin/commit.c:149011666msgid "include status in commit message template"11667msgstr "Status in die Commit-Beschreibungsvorlage einfügen"1166811669#: builtin/commit.c:149511670msgid "Commit contents options"11671msgstr "Optionen für Commit-Inhalt"1167211673#: builtin/commit.c:149611674msgid "commit all changed files"11675msgstr "alle geänderten Dateien committen"1167611677#: builtin/commit.c:149711678msgid "add specified files to index for commit"11679msgstr "die angegebenen Dateien zusätzlich zum Commit vormerken"1168011681#: builtin/commit.c:149811682msgid "interactively add files"11683msgstr "interaktives Hinzufügen von Dateien"1168411685#: builtin/commit.c:149911686msgid "interactively add changes"11687msgstr "interaktives Hinzufügen von Änderungen"1168811689#: builtin/commit.c:150011690msgid "commit only specified files"11691msgstr "nur die angegebenen Dateien committen"1169211693#: builtin/commit.c:150111694msgid "bypass pre-commit and commit-msg hooks"11695msgstr "Hooks pre-commit und commit-msg umgehen"1169611697#: builtin/commit.c:150211698msgid "show what would be committed"11699msgstr "anzeigen, was committet werden würde"1170011701#: builtin/commit.c:151511702msgid "amend previous commit"11703msgstr "vorherigen Commit ändern"1170411705#: builtin/commit.c:151611706msgid "bypass post-rewrite hook"11707msgstr "\"post-rewrite hook\" umgehen"1170811709#: builtin/commit.c:152111710msgid "ok to record an empty change"11711msgstr "Aufzeichnung einer leeren Änderung erlauben"1171211713#: builtin/commit.c:152311714msgid "ok to record a change with an empty message"11715msgstr "Aufzeichnung einer Änderung mit einer leeren Beschreibung erlauben"1171611717#: builtin/commit.c:159611718#, c-format11719msgid "Corrupt MERGE_HEAD file (%s)"11720msgstr "Beschädigte MERGE_HEAD-Datei (%s)"1172111722#: builtin/commit.c:160311723msgid "could not read MERGE_MODE"11724msgstr "Konnte MERGE_MODE nicht lesen"1172511726#: builtin/commit.c:162211727#, c-format11728msgid "could not read commit message: %s"11729msgstr "Konnte Commit-Beschreibung nicht lesen: %s"1173011731#: builtin/commit.c:162911732#, c-format11733msgid "Aborting commit due to empty commit message.\n"11734msgstr "Commit aufgrund leerer Beschreibung abgebrochen.\n"1173511736#: builtin/commit.c:163411737#, c-format11738msgid "Aborting commit; you did not edit the message.\n"11739msgstr "Commit abgebrochen; Sie haben die Beschreibung nicht editiert.\n"1174011741#: builtin/commit.c:166811742msgid ""11743"repository has been updated, but unable to write\n"11744"new_index file. Check that disk is not full and quota is\n"11745"not exceeded, and then \"git reset HEAD\" to recover."11746msgstr ""11747"Das Repository wurde aktualisiert, aber die \"new_index\"-Datei\n"11748"konnte nicht geschrieben werden. Prüfen Sie, dass Ihre Festplatte nicht\n"11749"voll und Ihr Kontingent nicht aufgebraucht ist und führen Sie\n"11750"anschließend \"git reset HEAD\" zu Wiederherstellung aus."1175111752#: builtin/commit-graph.c:1011753msgid "git commit-graph [--object-dir <objdir>]"11754msgstr "git commit-graph [--object-dir <Objektverzeichnis>]"1175511756#: builtin/commit-graph.c:11 builtin/commit-graph.c:2311757msgid "git commit-graph read [--object-dir <objdir>]"11758msgstr "git commit-graph read [--object-dir <Objektverzeichnis>]"1175911760#: builtin/commit-graph.c:12 builtin/commit-graph.c:1811761msgid "git commit-graph verify [--object-dir <objdir>]"11762msgstr "git commit-graph verify [--object-dir <Objektverzeichnis>]"1176311764#: builtin/commit-graph.c:13 builtin/commit-graph.c:2811765msgid ""11766"git commit-graph write [--object-dir <objdir>] [--append] [--reachable|--"11767"stdin-packs|--stdin-commits]"11768msgstr ""11769"git commit-graph write [--object-dir <Objektverzeichnis>] [--append] [--"11770"reachable|--stdin-packs|--stdin-commits]"1177111772#: builtin/commit-graph.c:51 builtin/commit-graph.c:8911773#: builtin/commit-graph.c:147 builtin/commit-graph.c:205 builtin/fetch.c:15311774#: builtin/log.c:156111775msgid "dir"11776msgstr "Verzeichnis"1177711778#: builtin/commit-graph.c:52 builtin/commit-graph.c:9011779#: builtin/commit-graph.c:148 builtin/commit-graph.c:20611780msgid "The object directory to store the graph"11781msgstr "Das Objektverzeichnis zum Speichern des Graphen."1178211783#: builtin/commit-graph.c:68 builtin/commit-graph.c:10511784#, c-format11785msgid "Could not open commit-graph '%s'"11786msgstr "Konnte Commit-Graph '%s' nicht öffnen."1178711788#: builtin/commit-graph.c:15011789msgid "start walk at all refs"11790msgstr "Durchlauf auf allen Referenzen beginnen"1179111792#: builtin/commit-graph.c:15211793msgid "scan pack-indexes listed by stdin for commits"11794msgstr "durch Standard-Eingabe gelistete Pack-Indexe nach Commits scannen"1179511796#: builtin/commit-graph.c:15411797msgid "start walk at commits listed by stdin"11798msgstr "Lauf bei Commits beginnen, die über die Standard-Eingabe gelistet sind"1179911800#: builtin/commit-graph.c:15611801msgid "include all commits already in the commit-graph file"11802msgstr ""11803"alle Commits einschließen, die sich bereits in der Commit-Graph-Datei "11804"befinden"1180511806#: builtin/commit-graph.c:16511807msgid "use at most one of --reachable, --stdin-commits, or --stdin-packs"11808msgstr ""11809"Benutzen Sie mindestens eins von --reachable, --stdin-commits, oder --stdin-"11810"packs."1181111812#: builtin/config.c:1111813msgid "git config [<options>]"11814msgstr "git config [<Optionen>]"1181511816#: builtin/config.c:10311817#, c-format11818msgid "unrecognized --type argument, %s"11819msgstr "nicht erkanntes --type Argument, %s"1182011821#: builtin/config.c:11511822msgid "only one type at a time"11823msgstr "nur ein Typ erlaubt"1182411825#: builtin/config.c:12411826msgid "Config file location"11827msgstr "Ort der Konfigurationsdatei"1182811829#: builtin/config.c:12511830msgid "use global config file"11831msgstr "globale Konfigurationsdatei verwenden"1183211833#: builtin/config.c:12611834msgid "use system config file"11835msgstr "systemweite Konfigurationsdatei verwenden"1183611837#: builtin/config.c:12711838msgid "use repository config file"11839msgstr "Konfigurationsdatei des Repositories verwenden"1184011841#: builtin/config.c:12811842msgid "use per-worktree config file"11843msgstr "Konfigurationsdatei pro Arbeitsverzeichnis verwenden"1184411845#: builtin/config.c:12911846msgid "use given config file"11847msgstr "die angegebene Konfigurationsdatei verwenden"1184811849#: builtin/config.c:13011850msgid "blob-id"11851msgstr "Blob-Id"1185211853#: builtin/config.c:13011854msgid "read config from given blob object"11855msgstr "Konfiguration von angegebenem Blob-Objekt lesen"1185611857#: builtin/config.c:13111858msgid "Action"11859msgstr "Aktion"1186011861#: builtin/config.c:13211862msgid "get value: name [value-regex]"11863msgstr "Wert zurückgeben: Name [Wert-regex]"1186411865#: builtin/config.c:13311866msgid "get all values: key [value-regex]"11867msgstr "alle Werte zurückgeben: Schlüssel [Wert-regex]"1186811869#: builtin/config.c:13411870msgid "get values for regexp: name-regex [value-regex]"11871msgstr "Werte für den regulären Ausdruck zurückgeben: Name-regex [Wert-regex]"1187211873#: builtin/config.c:13511874msgid "get value specific for the URL: section[.var] URL"11875msgstr "Wert spezifisch für eine URL zurückgeben: section[.var] URL"1187611877#: builtin/config.c:13611878msgid "replace all matching variables: name value [value_regex]"11879msgstr "alle passenden Variablen ersetzen: Name Wert [Wert-regex] "1188011881#: builtin/config.c:13711882msgid "add a new variable: name value"11883msgstr "neue Variable hinzufügen: Name Wert"1188411885#: builtin/config.c:13811886msgid "remove a variable: name [value-regex]"11887msgstr "eine Variable entfernen: Name [Wert-regex]"1188811889#: builtin/config.c:13911890msgid "remove all matches: name [value-regex]"11891msgstr "alle Übereinstimmungen entfernen: Name [Wert-regex]"1189211893#: builtin/config.c:14011894msgid "rename section: old-name new-name"11895msgstr "eine Sektion umbenennen: alter-Name neuer-Name"1189611897#: builtin/config.c:14111898msgid "remove a section: name"11899msgstr "eine Sektion entfernen: Name"1190011901#: builtin/config.c:14211902msgid "list all"11903msgstr "alles auflisten"1190411905#: builtin/config.c:14311906msgid "open an editor"11907msgstr "einen Editor öffnen"1190811909#: builtin/config.c:14411910msgid "find the color configured: slot [default]"11911msgstr "die konfigurierte Farbe finden: Slot [Standard]"1191211913#: builtin/config.c:14511914msgid "find the color setting: slot [stdout-is-tty]"11915msgstr "die Farbeinstellung finden: Slot [Standard-Ausgabe-ist-Terminal]"1191611917#: builtin/config.c:14611918msgid "Type"11919msgstr "Typ"1192011921#: builtin/config.c:14711922msgid "value is given this type"11923msgstr "Wert ist mit diesem Typ angegeben"1192411925#: builtin/config.c:14811926msgid "value is \"true\" or \"false\""11927msgstr "Wert ist \"true\" oder \"false\""1192811929#: builtin/config.c:14911930msgid "value is decimal number"11931msgstr "Wert ist eine Dezimalzahl"1193211933#: builtin/config.c:15011934msgid "value is --bool or --int"11935msgstr "Wert ist --bool oder --int"1193611937#: builtin/config.c:15111938msgid "value is a path (file or directory name)"11939msgstr "Wert ist ein Pfad (Datei oder Verzeichnisname)"1194011941#: builtin/config.c:15211942msgid "value is an expiry date"11943msgstr "Wert ist ein Verfallsdatum"1194411945#: builtin/config.c:15311946msgid "Other"11947msgstr "Sonstiges"1194811949#: builtin/config.c:15411950msgid "terminate values with NUL byte"11951msgstr "schließt Werte mit NUL-Byte ab"1195211953#: builtin/config.c:15511954msgid "show variable names only"11955msgstr "nur Variablennamen anzeigen"1195611957#: builtin/config.c:15611958msgid "respect include directives on lookup"11959msgstr "beachtet \"include\"-Direktiven beim Nachschlagen"1196011961#: builtin/config.c:15711962msgid "show origin of config (file, standard input, blob, command line)"11963msgstr ""11964"Ursprung der Konfiguration anzeigen (Datei, Standard-Eingabe, Blob, "11965"Befehlszeile)"1196611967#: builtin/config.c:15811968msgid "value"11969msgstr "Wert"1197011971#: builtin/config.c:15811972msgid "with --get, use default value when missing entry"11973msgstr "mit --get, benutze den Standardwert, wenn der Eintrag fehlt"1197411975#: builtin/config.c:17211976#, c-format11977msgid "wrong number of arguments, should be %d"11978msgstr "Falsche Anzahl von Argumenten - sollte %d sein."1197911980#: builtin/config.c:17411981#, c-format11982msgid "wrong number of arguments, should be from %d to %d"11983msgstr "Falsche Anzahl von Argumenten - sollte zwischen %d und %d sein."1198411985#: builtin/config.c:30811986#, c-format11987msgid "invalid key pattern: %s"11988msgstr "Ungültiges Schlüsselmuster: %s"1198911990#: builtin/config.c:34411991#, c-format11992msgid "failed to format default config value: %s"11993msgstr "Fehler beim Formatieren des Standardkonfigurationswertes: %s"1199411995#: builtin/config.c:40111996#, c-format11997msgid "cannot parse color '%s'"11998msgstr "Kann Farbe '%s' nicht parsen."1199912000#: builtin/config.c:44312001msgid "unable to parse default color value"12002msgstr "konnte Standard-Farbwert nicht parsen"1200312004#: builtin/config.c:496 builtin/config.c:74212005msgid "not in a git directory"12006msgstr "Nicht in einem Git-Repository."1200712008#: builtin/config.c:49912009msgid "writing to stdin is not supported"12010msgstr "Das Schreiben in die Standard-Eingabe wird nicht unterstützt."1201112012#: builtin/config.c:50212013msgid "writing config blobs is not supported"12014msgstr ""12015"Das Schreiben von Blob-Objekten für Konfigurationen wird nicht unterstützt."1201612017#: builtin/config.c:58712018#, c-format12019msgid ""12020"# This is Git's per-user configuration file.\n"12021"[user]\n"12022"# Please adapt and uncomment the following lines:\n"12023"#\tname = %s\n"12024"#\temail = %s\n"12025msgstr ""12026"# Das ist Git's benutzerspezifische Konfigurationsdatei.\n"12027"[user]\n"12028"# Bitte passen Sie die folgenden Zeilen an und kommentieren Sie diese aus:\n"12029"#\tname = %s\n"12030"#\temail = %s\n"1203112032#: builtin/config.c:61112033msgid "only one config file at a time"12034msgstr "Nur eine Konfigurationsdatei zu einer Zeit möglich."1203512036#: builtin/config.c:61612037msgid "--local can only be used inside a git repository"12038msgstr "--local kann nur innerhalb eines Git-Repositories verwendet werden."1203912040#: builtin/config.c:61912041msgid "--blob can only be used inside a git repository"12042msgstr "--blob kann nur innerhalb eines Git-Repositories verwendet werden."1204312044#: builtin/config.c:63812045msgid "$HOME not set"12046msgstr "$HOME nicht gesetzt."1204712048#: builtin/config.c:65812049msgid ""12050"--worktree cannot be used with multiple working trees unless the config\n"12051"extension worktreeConfig is enabled. Please read \"CONFIGURATION FILE\"\n"12052"section in \"git help worktree\" for details"12053msgstr ""12054"--worktree kann nicht mit mehreren Arbeitsverzeichnissen verwendet werden,\n"12055"außer die Konfigurationserweiterung worktreeConfig ist aktiviert. Bitte\n"12056"lesen Sie die Sektion \"CONFIGURATION_FILE\" in \"git help worktree\" für "12057"Details"1205812059#: builtin/config.c:68812060msgid "--get-color and variable type are incoherent"12061msgstr "Angabe von --get-color und Variablentyp sind ungültig."1206212063#: builtin/config.c:69312064msgid "only one action at a time"12065msgstr "Nur eine Aktion erlaubt."1206612067#: builtin/config.c:70612068msgid "--name-only is only applicable to --list or --get-regexp"12069msgstr "--name-only ist nur anwendbar auf --list oder --get-regexp"1207012071#: builtin/config.c:71212072msgid ""12073"--show-origin is only applicable to --get, --get-all, --get-regexp, and --"12074"list"12075msgstr ""12076"--show-origin ist nur anwendbar auf --get, --get-all, --get-regexp und --list"1207712078#: builtin/config.c:71812079msgid "--default is only applicable to --get"12080msgstr "--default ist nur anwendbar auf --get"1208112082#: builtin/config.c:73112083#, c-format12084msgid "unable to read config file '%s'"12085msgstr "Konnte Konfigurationsdatei '%s' nicht lesen."1208612087#: builtin/config.c:73412088msgid "error processing config file(s)"12089msgstr "Fehler beim Verarbeiten der Konfigurationsdatei(en)."1209012091#: builtin/config.c:74412092msgid "editing stdin is not supported"12093msgstr "Das Bearbeiten der Standard-Eingabe wird nicht unterstützt."1209412095#: builtin/config.c:74612096msgid "editing blobs is not supported"12097msgstr "Das Bearbeiten von Blobs wird nicht unterstützt."1209812099#: builtin/config.c:76012100#, c-format12101msgid "cannot create configuration file %s"12102msgstr "Konnte Konfigurationsdatei '%s' nicht erstellen."1210312104#: builtin/config.c:77312105#, c-format12106msgid ""12107"cannot overwrite multiple values with a single value\n"12108" Use a regexp, --add or --replace-all to change %s."12109msgstr ""12110"kann nicht mehrere Werte mit einem einzigen Wert überschreiben\n"12111" Benutzen Sie einen regulären Ausdruck, --add oder --replace, um %s\n"12112" zu ändern."1211312114#: builtin/config.c:847 builtin/config.c:85812115#, c-format12116msgid "no such section: %s"12117msgstr "Keine solche Sektion: %s"1211812119#: builtin/count-objects.c:9012120msgid "git count-objects [-v] [-H | --human-readable]"12121msgstr "git count-objects [-v] [-H | --human-readable]"1212212123#: builtin/count-objects.c:10012124msgid "print sizes in human readable format"12125msgstr "gibt Größenangaben in menschenlesbaren Format aus"1212612127#: builtin/describe.c:2712128msgid "git describe [<options>] [<commit-ish>...]"12129msgstr "git describe [<Optionen>] [<Commit-Angabe>...]"1213012131#: builtin/describe.c:2812132msgid "git describe [<options>] --dirty"12133msgstr "git describe [<Optionen>] --dirty"1213412135#: builtin/describe.c:6312136msgid "head"12137msgstr "Branch"1213812139#: builtin/describe.c:6312140msgid "lightweight"12141msgstr "nicht-annotiert"1214212143#: builtin/describe.c:6312144msgid "annotated"12145msgstr "annotiert"1214612147#: builtin/describe.c:27312148#, c-format12149msgid "annotated tag %s not available"12150msgstr "annotiertes Tag %s ist nicht verfügbar"1215112152#: builtin/describe.c:27712153#, c-format12154msgid "annotated tag %s has no embedded name"12155msgstr "annotiertes Tag %s hat keinen eingebetteten Namen"1215612157#: builtin/describe.c:27912158#, c-format12159msgid "tag '%s' is really '%s' here"12160msgstr "Tag '%s' ist eigentlich '%s' hier"1216112162#: builtin/describe.c:32312163#, c-format12164msgid "no tag exactly matches '%s'"12165msgstr "kein Tag entspricht exakt '%s'"1216612167#: builtin/describe.c:32512168#, c-format12169msgid "No exact match on refs or tags, searching to describe\n"12170msgstr ""12171"Keine exakte Übereinstimmung bei Referenzen oder Tags, Suche zum "12172"Beschreiben\n"1217312174#: builtin/describe.c:37912175#, c-format12176msgid "finished search at %s\n"12177msgstr "beendete Suche bei %s\n"1217812179#: builtin/describe.c:40512180#, c-format12181msgid ""12182"No annotated tags can describe '%s'.\n"12183"However, there were unannotated tags: try --tags."12184msgstr ""12185"Keine annotierten Tags können '%s' beschreiben.\n"12186"Jedoch gab es nicht-annotierte Tags: versuchen Sie --tags."1218712188#: builtin/describe.c:40912189#, c-format12190msgid ""12191"No tags can describe '%s'.\n"12192"Try --always, or create some tags."12193msgstr ""12194"Keine Tags können '%s' beschreiben.\n"12195"Versuchen Sie --always oder erstellen Sie einige Tags."1219612197#: builtin/describe.c:43912198#, c-format12199msgid "traversed %lu commits\n"12200msgstr "%lu Commits durchlaufen\n"1220112202#: builtin/describe.c:44212203#, c-format12204msgid ""12205"more than %i tags found; listed %i most recent\n"12206"gave up search at %s\n"12207msgstr ""12208"mehr als %i Tags gefunden; führe die ersten %i auf\n"12209"Suche bei %s aufgegeben\n"1221012211#: builtin/describe.c:51012212#, c-format12213msgid "describe %s\n"12214msgstr "Beschreibe %s\n"1221512216#: builtin/describe.c:51312217#, c-format12218msgid "Not a valid object name %s"12219msgstr "%s ist kein gültiger Objekt-Name"1222012221#: builtin/describe.c:52112222#, c-format12223msgid "%s is neither a commit nor blob"12224msgstr "%s ist weder ein Commit, noch ein Blob."1222512226#: builtin/describe.c:53512227msgid "find the tag that comes after the commit"12228msgstr "das Tag finden, das nach dem Commit kommt"1222912230#: builtin/describe.c:53612231msgid "debug search strategy on stderr"12232msgstr "die Suchstrategie in der Standard-Fehlerausgabe protokollieren"1223312234#: builtin/describe.c:53712235msgid "use any ref"12236msgstr "alle Referenzen verwenden"1223712238#: builtin/describe.c:53812239msgid "use any tag, even unannotated"12240msgstr "jedes Tag verwenden, auch nicht-annotierte"1224112242#: builtin/describe.c:53912243msgid "always use long format"12244msgstr "immer langes Format verwenden"1224512246#: builtin/describe.c:54012247msgid "only follow first parent"12248msgstr "nur erstem Elternteil folgen"1224912250#: builtin/describe.c:54312251msgid "only output exact matches"12252msgstr "nur exakte Übereinstimmungen ausgeben"1225312254#: builtin/describe.c:54512255msgid "consider <n> most recent tags (default: 10)"12256msgstr "die jüngsten <n> Tags betrachten (Standard: 10)"1225712258#: builtin/describe.c:54712259msgid "only consider tags matching <pattern>"12260msgstr "nur Tags, die <Muster> entsprechen, betrachten"1226112262#: builtin/describe.c:54912263msgid "do not consider tags matching <pattern>"12264msgstr "keine Tags betrachten, die <Muster> entsprechen"1226512266#: builtin/describe.c:551 builtin/name-rev.c:42612267msgid "show abbreviated commit object as fallback"12268msgstr "gekürztes Commit-Objekt anzeigen, wenn sonst nichts zutrifft"1226912270#: builtin/describe.c:552 builtin/describe.c:55512271msgid "mark"12272msgstr "Kennzeichen"1227312274#: builtin/describe.c:55312275msgid "append <mark> on dirty working tree (default: \"-dirty\")"12276msgstr ""12277"<Kennzeichen> bei geändertem Arbeitsverzeichnis anhängen (Standard: \"-dirty"12278"\")"1227912280#: builtin/describe.c:55612281msgid "append <mark> on broken working tree (default: \"-broken\")"12282msgstr ""12283"<Kennzeichen> bei defektem Arbeitsverzeichnis anhängen (Standard: \"-broken"12284"\")"1228512286#: builtin/describe.c:57412287msgid "--long is incompatible with --abbrev=0"12288msgstr "Die Optionen --long und --abbrev=0 sind inkompatibel."1228912290#: builtin/describe.c:60312291msgid "No names found, cannot describe anything."12292msgstr "Keine Namen gefunden, kann nichts beschreiben."1229312294#: builtin/describe.c:65412295msgid "--dirty is incompatible with commit-ishes"12296msgstr "Die Option --dirty kann nicht mit Commits verwendet werden."1229712298#: builtin/describe.c:65612299msgid "--broken is incompatible with commit-ishes"12300msgstr "Die Option --broken kann nicht mit Commits verwendet werden."1230112302#: builtin/diff.c:8412303#, c-format12304msgid "'%s': not a regular file or symlink"12305msgstr "'%s': keine reguläre Datei oder symbolische Verknüpfung"1230612307#: builtin/diff.c:23512308#, c-format12309msgid "invalid option: %s"12310msgstr "Ungültige Option: %s"1231112312#: builtin/diff.c:35012313msgid "Not a git repository"12314msgstr "Kein Git-Repository"1231512316#: builtin/diff.c:39412317#, c-format12318msgid "invalid object '%s' given."12319msgstr "Objekt '%s' ist ungültig."1232012321#: builtin/diff.c:40312322#, c-format12323msgid "more than two blobs given: '%s'"12324msgstr "Mehr als zwei Blobs angegeben: '%s'"1232512326#: builtin/diff.c:40812327#, c-format12328msgid "unhandled object '%s' given."12329msgstr "unbehandeltes Objekt '%s' angegeben"1233012331#: builtin/difftool.c:3012332msgid "git difftool [<options>] [<commit> [<commit>]] [--] [<path>...]"12333msgstr "git difftool [<Optionen>] [<Commit> [<Commit>]] [--] [<Pfad>...]"1233412335#: builtin/difftool.c:25312336#, c-format12337msgid "failed: %d"12338msgstr "fehlgeschlagen: %d"1233912340#: builtin/difftool.c:29512341#, c-format12342msgid "could not read symlink %s"12343msgstr "konnte symbolische Verknüpfung %s nicht lesen"1234412345#: builtin/difftool.c:29712346#, c-format12347msgid "could not read symlink file %s"12348msgstr "Konnte Datei von symbolischer Verknüpfung '%s' nicht lesen."1234912350#: builtin/difftool.c:30512351#, c-format12352msgid "could not read object %s for symlink %s"12353msgstr "Konnte Objekt '%s' für symbolische Verknüpfung '%s' nicht lesen."1235412355#: builtin/difftool.c:40612356msgid ""12357"combined diff formats('-c' and '--cc') are not supported in\n"12358"directory diff mode('-d' and '--dir-diff')."12359msgstr ""12360"Kombinierte Diff-Formate('-c' und '--cc') werden im Verzeichnis-\n"12361"Diff-Modus('-d' und '--dir-diff') nicht unterstützt."1236212363#: builtin/difftool.c:62612364#, c-format12365msgid "both files modified: '%s' and '%s'."12366msgstr "beide Dateien geändert: '%s' und '%s'."1236712368#: builtin/difftool.c:62812369msgid "working tree file has been left."12370msgstr "Datei im Arbeitsverzeichnis belassen."1237112372#: builtin/difftool.c:63912373#, c-format12374msgid "temporary files exist in '%s'."12375msgstr "Es existieren temporäre Dateien in '%s'."1237612377#: builtin/difftool.c:64012378msgid "you may want to cleanup or recover these."12379msgstr "Sie könnten diese aufräumen oder wiederherstellen."1238012381#: builtin/difftool.c:68912382msgid "use `diff.guitool` instead of `diff.tool`"12383msgstr "`diff.guitool` anstatt `diff.tool` benutzen"1238412385#: builtin/difftool.c:69112386msgid "perform a full-directory diff"12387msgstr "Diff über ganzes Verzeichnis ausführen"1238812389#: builtin/difftool.c:69312390msgid "do not prompt before launching a diff tool"12391msgstr "keine Eingabeaufforderung vor Ausführung eines Diff-Tools"1239212393#: builtin/difftool.c:69812394msgid "use symlinks in dir-diff mode"12395msgstr "symbolische Verknüpfungen im dir-diff Modus verwenden"1239612397#: builtin/difftool.c:69912398msgid "tool"12399msgstr "Tool"1240012401#: builtin/difftool.c:70012402msgid "use the specified diff tool"12403msgstr "das angegebene Diff-Tool benutzen"1240412405#: builtin/difftool.c:70212406msgid "print a list of diff tools that may be used with `--tool`"12407msgstr ""12408"eine Liste mit Diff-Tools darstellen, die mit `--tool` benutzt werden können"1240912410#: builtin/difftool.c:70512411msgid ""12412"make 'git-difftool' exit when an invoked diff tool returns a non - zero exit "12413"code"12414msgstr ""12415"'git-difftool' beenden, wenn das aufgerufene Diff-Tool mit einem "12416"Rückkehrwert\n"12417"verschieden 0 ausgeführt wurde"1241812419#: builtin/difftool.c:70812420msgid "specify a custom command for viewing diffs"12421msgstr "eigenen Befehl zur Anzeige von Unterschieden angeben"1242212423#: builtin/difftool.c:70912424msgid "passed to `diff`"12425msgstr "an 'diff' übergeben"1242612427#: builtin/difftool.c:72412428msgid "difftool requires worktree or --no-index"12429msgstr "difftool benötigt Arbeitsverzeichnis oder --no-index"1243012431#: builtin/difftool.c:73112432msgid "--dir-diff is incompatible with --no-index"12433msgstr "--dir-diff kann nicht mit --no-index verwendet werden"1243412435#: builtin/difftool.c:73412436msgid "--gui, --tool and --extcmd are mutually exclusive"12437msgstr "--gui, --tool und --extcmd schließen sich gegenseitig aus"1243812439#: builtin/difftool.c:74212440msgid "no <tool> given for --tool=<tool>"12441msgstr "kein <Tool> für --tool=<Tool> angegeben"1244212443#: builtin/difftool.c:74912444msgid "no <cmd> given for --extcmd=<cmd>"12445msgstr "kein <Programm> für --extcmd=<Programm> angegeben"1244612447#: builtin/fast-export.c:2912448msgid "git fast-export [rev-list-opts]"12449msgstr "git fast-export [rev-list-opts]"1245012451#: builtin/fast-export.c:108412452msgid "show progress after <n> objects"12453msgstr "Fortschritt nach <n> Objekten anzeigen"1245412455#: builtin/fast-export.c:108612456msgid "select handling of signed tags"12457msgstr "Behandlung von signierten Tags wählen"1245812459#: builtin/fast-export.c:108912460msgid "select handling of tags that tag filtered objects"12461msgstr "Behandlung von Tags wählen, die gefilterte Objekte markieren"1246212463#: builtin/fast-export.c:109212464msgid "Dump marks to this file"12465msgstr "Kennzeichen in diese Datei schreiben"1246612467#: builtin/fast-export.c:109412468msgid "Import marks from this file"12469msgstr "Kennzeichen von dieser Datei importieren"1247012471#: builtin/fast-export.c:109612472msgid "Fake a tagger when tags lack one"12473msgstr "künstlich einen Tag-Ersteller erzeugen, wenn das Tag keinen hat"1247412475#: builtin/fast-export.c:109812476msgid "Output full tree for each commit"12477msgstr "für jeden Commit das gesamte Verzeichnis ausgeben"1247812479#: builtin/fast-export.c:110012480msgid "Use the done feature to terminate the stream"12481msgstr "die \"done\"-Funktion benutzen, um den Datenstrom abzuschließen"1248212483#: builtin/fast-export.c:110112484msgid "Skip output of blob data"12485msgstr "Ausgabe von Blob-Daten überspringen"1248612487#: builtin/fast-export.c:1102 builtin/log.c:160912488msgid "refspec"12489msgstr "Refspec"1249012491#: builtin/fast-export.c:110312492msgid "Apply refspec to exported refs"12493msgstr "Refspec auf exportierte Referenzen anwenden"1249412495#: builtin/fast-export.c:110412496msgid "anonymize output"12497msgstr "Ausgabe anonymisieren"1249812499#: builtin/fast-export.c:110612500msgid "Reference parents which are not in fast-export stream by object id"12501msgstr ""12502"Eltern, die nicht im Fast-Export-Stream sind, anhand ihrer Objekt-ID "12503"referenzieren"1250412505#: builtin/fast-export.c:110812506msgid "Show original object ids of blobs/commits"12507msgstr "originale Objekt-IDs von Blobs/Commits anzeigen"1250812509#: builtin/fetch.c:2812510msgid "git fetch [<options>] [<repository> [<refspec>...]]"12511msgstr "git fetch [<Optionen>] [<Repository> [<Refspec>...]]"1251212513#: builtin/fetch.c:2912514msgid "git fetch [<options>] <group>"12515msgstr "git fetch [<Optionen>] <Gruppe>"1251612517#: builtin/fetch.c:3012518msgid "git fetch --multiple [<options>] [(<repository> | <group>)...]"12519msgstr "git fetch --multiple [<Optionen>] [(<Repository> | <Gruppe>)...]"1252012521#: builtin/fetch.c:3112522msgid "git fetch --all [<options>]"12523msgstr "git fetch --all [<Optionen>]"1252412525#: builtin/fetch.c:115 builtin/pull.c:20212526msgid "fetch from all remotes"12527msgstr "fordert von allen Remote-Repositories an"1252812529#: builtin/fetch.c:117 builtin/pull.c:20512530msgid "append to .git/FETCH_HEAD instead of overwriting"12531msgstr "an .git/FETCH_HEAD anhängen, anstatt zu überschreiben"1253212533#: builtin/fetch.c:119 builtin/pull.c:20812534msgid "path to upload pack on remote end"12535msgstr "Pfad des Programms zum Hochladen von Paketen auf der Gegenseite"1253612537#: builtin/fetch.c:12012538msgid "force overwrite of local reference"12539msgstr "das Überschreiben einer lokalen Referenz erzwingen"1254012541#: builtin/fetch.c:12212542msgid "fetch from multiple remotes"12543msgstr "von mehreren Remote-Repositories anfordern"1254412545#: builtin/fetch.c:124 builtin/pull.c:21212546msgid "fetch all tags and associated objects"12547msgstr "alle Tags und verbundene Objekte anfordern"1254812549#: builtin/fetch.c:12612550msgid "do not fetch all tags (--no-tags)"12551msgstr "nicht alle Tags anfordern (--no-tags)"1255212553#: builtin/fetch.c:12812554msgid "number of submodules fetched in parallel"12555msgstr "Anzahl der parallel anzufordernden Submodule"1255612557#: builtin/fetch.c:130 builtin/pull.c:21512558msgid "prune remote-tracking branches no longer on remote"12559msgstr ""12560"Remote-Tracking-Branches entfernen, die sich nicht mehr im Remote-Repository "12561"befinden"1256212563#: builtin/fetch.c:13212564msgid "prune local tags no longer on remote and clobber changed tags"12565msgstr ""12566"lokale Tags entfernen, die sich nicht mehr im Remote-Repository befinden, "12567"und geänderte Tags aktualisieren"1256812569#: builtin/fetch.c:133 builtin/fetch.c:156 builtin/pull.c:13912570msgid "on-demand"12571msgstr "bei-Bedarf"1257212573#: builtin/fetch.c:13412574msgid "control recursive fetching of submodules"12575msgstr "rekursive Anforderungen von Submodulen kontrollieren"1257612577#: builtin/fetch.c:138 builtin/pull.c:22312578msgid "keep downloaded pack"12579msgstr "heruntergeladenes Paket behalten"1258012581#: builtin/fetch.c:14012582msgid "allow updating of HEAD ref"12583msgstr "Aktualisierung der \"HEAD\"-Referenz erlauben"1258412585#: builtin/fetch.c:143 builtin/fetch.c:149 builtin/pull.c:22612586msgid "deepen history of shallow clone"12587msgstr ""12588"die Historie eines Klons mit unvollständiger Historie (shallow) vertiefen"1258912590#: builtin/fetch.c:14512591msgid "deepen history of shallow repository based on time"12592msgstr ""12593"die Historie eines Klons mit unvollständiger Historie (shallow) auf "12594"Zeitbasis\n"12595"vertiefen"1259612597#: builtin/fetch.c:151 builtin/pull.c:22912598msgid "convert to a complete repository"12599msgstr "zu einem vollständigen Repository konvertieren"1260012601#: builtin/fetch.c:15412602msgid "prepend this to submodule path output"12603msgstr "dies an die Ausgabe der Submodul-Pfade voranstellen"1260412605#: builtin/fetch.c:15712606msgid ""12607"default for recursive fetching of submodules (lower priority than config "12608"files)"12609msgstr ""12610"Standard für die rekursive Anforderung von Submodulen (geringere Priorität\n"12611"als Konfigurationsdateien)"1261212613#: builtin/fetch.c:161 builtin/pull.c:23212614msgid "accept refs that update .git/shallow"12615msgstr "Referenzen, die .git/shallow aktualisieren, akzeptieren"1261612617#: builtin/fetch.c:162 builtin/pull.c:23412618msgid "refmap"12619msgstr "Refmap"1262012621#: builtin/fetch.c:163 builtin/pull.c:23512622msgid "specify fetch refmap"12623msgstr "Refmap für 'fetch' angeben"1262412625#: builtin/fetch.c:17012626msgid "report that we have only objects reachable from this object"12627msgstr ""12628"ausgeben, dass wir nur Objekte haben, die von diesem Objekt aus erreichbar "12629"sind"1263012631#: builtin/fetch.c:46912632msgid "Couldn't find remote ref HEAD"12633msgstr "Konnte Remote-Referenz von HEAD nicht finden."1263412635#: builtin/fetch.c:60812636#, c-format12637msgid "configuration fetch.output contains invalid value %s"12638msgstr "Konfiguration fetch.output enthält ungültigen Wert %s"1263912640#: builtin/fetch.c:70512641#, c-format12642msgid "object %s not found"12643msgstr "Objekt %s nicht gefunden"1264412645#: builtin/fetch.c:70912646msgid "[up to date]"12647msgstr "[aktuell]"1264812649#: builtin/fetch.c:722 builtin/fetch.c:738 builtin/fetch.c:80112650msgid "[rejected]"12651msgstr "[zurückgewiesen]"1265212653#: builtin/fetch.c:72312654msgid "can't fetch in current branch"12655msgstr "kann \"fetch\" im aktuellen Branch nicht ausführen"1265612657#: builtin/fetch.c:73312658msgid "[tag update]"12659msgstr "[Tag Aktualisierung]"1266012661#: builtin/fetch.c:734 builtin/fetch.c:771 builtin/fetch.c:78412662#: builtin/fetch.c:79612663msgid "unable to update local ref"12664msgstr "kann lokale Referenz nicht aktualisieren"1266512666#: builtin/fetch.c:73812667msgid "would clobber existing tag"12668msgstr "würde bestehende Tags verändern"1266912670#: builtin/fetch.c:76012671msgid "[new tag]"12672msgstr "[neues Tag]"1267312674#: builtin/fetch.c:76312675msgid "[new branch]"12676msgstr "[neuer Branch]"1267712678#: builtin/fetch.c:76612679msgid "[new ref]"12680msgstr "[neue Referenz]"1268112682#: builtin/fetch.c:79612683msgid "forced update"12684msgstr "Aktualisierung erzwungen"1268512686#: builtin/fetch.c:80112687msgid "non-fast-forward"12688msgstr "kein Vorspulen"1268912690#: builtin/fetch.c:84712691#, c-format12692msgid "%s did not send all necessary objects\n"12693msgstr "%s hat nicht alle erforderlichen Objekte gesendet\n"1269412695#: builtin/fetch.c:86812696#, c-format12697msgid "reject %s because shallow roots are not allowed to be updated"12698msgstr ""12699"%s wurde zurückgewiesen, da Root-Commits von Repositories mit "12700"unvollständiger\n"12701"Historie (shallow) nicht aktualisiert werden dürfen."1270212703#: builtin/fetch.c:959 builtin/fetch.c:108112704#, c-format12705msgid "From %.*s\n"12706msgstr "Von %.*s\n"1270712708#: builtin/fetch.c:97012709#, c-format12710msgid ""12711"some local refs could not be updated; try running\n"12712" 'git remote prune %s' to remove any old, conflicting branches"12713msgstr ""12714"Einige lokale Referenzen konnten nicht aktualisiert werden; versuchen Sie\n"12715"'git remote prune %s', um jeden älteren, widersprüchlichen Branch zu löschen."1271612717#: builtin/fetch.c:105112718#, c-format12719msgid " (%s will become dangling)"12720msgstr " (%s wird unreferenziert)"1272112722#: builtin/fetch.c:105212723#, c-format12724msgid " (%s has become dangling)"12725msgstr " (%s wurde unreferenziert)"1272612727#: builtin/fetch.c:108412728msgid "[deleted]"12729msgstr "[gelöscht]"1273012731#: builtin/fetch.c:1085 builtin/remote.c:103612732msgid "(none)"12733msgstr "(nichts)"1273412735#: builtin/fetch.c:110812736#, c-format12737msgid "Refusing to fetch into current branch %s of non-bare repository"12738msgstr ""12739"Der \"fetch\" in den aktuellen Branch %s von einem Nicht-Bare-Repository "12740"wurde verweigert."1274112742#: builtin/fetch.c:112712743#, c-format12744msgid "Option \"%s\" value \"%s\" is not valid for %s"12745msgstr "Option \"%s\" Wert \"%s\" ist nicht gültig für %s"1274612747#: builtin/fetch.c:113012748#, c-format12749msgid "Option \"%s\" is ignored for %s\n"12750msgstr "Option \"%s\" wird ignoriert für %s\n"1275112752#: builtin/fetch.c:143412753#, c-format12754msgid "Fetching %s\n"12755msgstr "Fordere an von %s\n"1275612757#: builtin/fetch.c:1436 builtin/remote.c:10012758#, c-format12759msgid "Could not fetch %s"12760msgstr "Konnte nicht von %s anfordern"1276112762#: builtin/fetch.c:148212763msgid ""12764"--filter can only be used with the remote configured in extensions."12765"partialClone"12766msgstr ""12767"--filter kann nur mit den Remote-Repositories verwendet werden,\n"12768"die in core.partialClone konfiguriert sind."1276912770#: builtin/fetch.c:150612771msgid ""12772"No remote repository specified. Please, specify either a URL or a\n"12773"remote name from which new revisions should be fetched."12774msgstr ""12775"Kein Remote-Repository angegeben. Bitte geben Sie entweder eine URL\n"12776"oder den Namen des Remote-Repositories an, von welchem neue\n"12777"Commits angefordert werden sollen."1277812779#: builtin/fetch.c:154312780msgid "You need to specify a tag name."12781msgstr "Sie müssen den Namen des Tags angeben."1278212783#: builtin/fetch.c:159412784msgid "Negative depth in --deepen is not supported"12785msgstr "Negative Tiefe wird von --deepen nicht unterstützt."1278612787#: builtin/fetch.c:159612788msgid "--deepen and --depth are mutually exclusive"12789msgstr "--deepen und --depth schließen sich gegenseitig aus"1279012791#: builtin/fetch.c:160112792msgid "--depth and --unshallow cannot be used together"12793msgstr ""12794"Die Optionen --depth und --unshallow können nicht gemeinsam verwendet werden."1279512796#: builtin/fetch.c:160312797msgid "--unshallow on a complete repository does not make sense"12798msgstr ""12799"Die Option --unshallow kann nicht in einem Repository mit unvollständiger "12800"Historie verwendet werden."1280112802#: builtin/fetch.c:161912803msgid "fetch --all does not take a repository argument"12804msgstr "fetch --all akzeptiert kein Repository als Argument"1280512806#: builtin/fetch.c:162112807msgid "fetch --all does not make sense with refspecs"12808msgstr "fetch --all kann nicht mit Refspecs verwendet werden."1280912810#: builtin/fetch.c:163012811#, c-format12812msgid "No such remote or remote group: %s"12813msgstr "Kein Remote-Repository (einzeln oder Gruppe): %s"1281412815#: builtin/fetch.c:163712816msgid "Fetching a group and specifying refspecs does not make sense"12817msgstr ""12818"Das Abholen einer Gruppe von Remote-Repositories kann nicht mit der Angabe\n"12819"von Refspecs verwendet werden."1282012821#: builtin/fetch.c:165312822msgid ""12823"--filter can only be used with the remote configured in extensions."12824"partialclone"12825msgstr ""12826"--filter kann nur mit den Remote-Repositories verwendet werden,\n"12827"die in core.partialClone konfiguriert sind."1282812829#: builtin/fmt-merge-msg.c:1812830msgid ""12831"git fmt-merge-msg [-m <message>] [--log[=<n>] | --no-log] [--file <file>]"12832msgstr ""12833"git fmt-merge-msg [-m <Beschreibung>] [--log[=<n>] | --no-log] [--file "12834"<Datei>]"1283512836#: builtin/fmt-merge-msg.c:67212837msgid "populate log with at most <n> entries from shortlog"12838msgstr "Historie mit höchstens <n> Einträgen von \"shortlog\" hinzufügen"1283912840#: builtin/fmt-merge-msg.c:67512841msgid "alias for --log (deprecated)"12842msgstr "Alias für --log (veraltet)"1284312844#: builtin/fmt-merge-msg.c:67812845msgid "text"12846msgstr "Text"1284712848#: builtin/fmt-merge-msg.c:67912849msgid "use <text> as start of message"12850msgstr "<Text> als Beschreibungsanfang verwenden"1285112852#: builtin/fmt-merge-msg.c:68012853msgid "file to read from"12854msgstr "Datei zum Einlesen"1285512856#: builtin/for-each-ref.c:1012857msgid "git for-each-ref [<options>] [<pattern>]"12858msgstr "git for-each-ref [<Optionen>] [<Muster>]"1285912860#: builtin/for-each-ref.c:1112861msgid "git for-each-ref [--points-at <object>]"12862msgstr "git for-each-ref [--points-at <Objekt>]"1286312864#: builtin/for-each-ref.c:1212865msgid "git for-each-ref [(--merged | --no-merged) [<commit>]]"12866msgstr "git for-each-ref [(--merged | --no-merged) [<Commit>]]"1286712868#: builtin/for-each-ref.c:1312869msgid "git for-each-ref [--contains [<commit>]] [--no-contains [<commit>]]"12870msgstr "git for-each-ref [--contains [<Objekt>]] [--no-contains [<Commit>]]"1287112872#: builtin/for-each-ref.c:2812873msgid "quote placeholders suitably for shells"12874msgstr "Platzhalter als Shell-String formatieren"1287512876#: builtin/for-each-ref.c:3012877msgid "quote placeholders suitably for perl"12878msgstr "Platzhalter als Perl-String formatieren"1287912880#: builtin/for-each-ref.c:3212881msgid "quote placeholders suitably for python"12882msgstr "Platzhalter als Python-String formatieren"1288312884#: builtin/for-each-ref.c:3412885msgid "quote placeholders suitably for Tcl"12886msgstr "Platzhalter als Tcl-String formatieren"1288712888#: builtin/for-each-ref.c:3712889msgid "show only <n> matched refs"12890msgstr "nur <n> passende Referenzen anzeigen"1289112892#: builtin/for-each-ref.c:39 builtin/tag.c:43312893msgid "respect format colors"12894msgstr "Formatfarben beachten"1289512896#: builtin/for-each-ref.c:4212897msgid "print only refs which points at the given object"12898msgstr "nur auf dieses Objekt zeigende Referenzen ausgeben"1289912900#: builtin/for-each-ref.c:4412901msgid "print only refs that are merged"12902msgstr "nur zusammengeführte Referenzen ausgeben"1290312904#: builtin/for-each-ref.c:4512905msgid "print only refs that are not merged"12906msgstr "nur nicht zusammengeführte Referenzen ausgeben"1290712908#: builtin/for-each-ref.c:4612909msgid "print only refs which contain the commit"12910msgstr "nur Referenzen ausgeben, die diesen Commit enthalten"1291112912#: builtin/for-each-ref.c:4712913msgid "print only refs which don't contain the commit"12914msgstr "nur Referenzen ausgeben, die diesen Commit nicht enthalten"1291512916#: builtin/fsck.c:88 builtin/fsck.c:160 builtin/fsck.c:16112917msgid "unknown"12918msgstr "unbekannt"1291912920#. TRANSLATORS: e.g. error in tree 01bfda: <more explanation>12921#: builtin/fsck.c:120 builtin/fsck.c:13612922#, c-format12923msgid "error in %s %s: %s"12924msgstr "Fehler in %s %s: %s"1292512926#. TRANSLATORS: e.g. warning in tree 01bfda: <more explanation>12927#: builtin/fsck.c:13112928#, c-format12929msgid "warning in %s %s: %s"12930msgstr "Warnung in %s %s: %s"1293112932#: builtin/fsck.c:157 builtin/fsck.c:15912933#, c-format12934msgid "broken link from %7s %s"12935msgstr "Fehlerhafte Verknüpfung von %7s %s"1293612937#: builtin/fsck.c:16812938msgid "wrong object type in link"12939msgstr "Falscher Objekttyp in Verknüpfung."1294012941#: builtin/fsck.c:18412942#, c-format12943msgid ""12944"broken link from %7s %s\n"12945" to %7s %s"12946msgstr ""12947"Fehlerhafte Verknüpfung von %7s %s\n"12948" nach %7s %s"1294912950#: builtin/fsck.c:29512951#, c-format12952msgid "missing %s %s"12953msgstr "%s %s fehlt"1295412955#: builtin/fsck.c:32112956#, c-format12957msgid "unreachable %s %s"12958msgstr "%s %s nicht erreichbar"1295912960#: builtin/fsck.c:34012961#, c-format12962msgid "dangling %s %s"12963msgstr "%s %s unreferenziert"1296412965#: builtin/fsck.c:34912966msgid "could not create lost-found"12967msgstr "Konnte lost-found nicht erstellen."1296812969#: builtin/fsck.c:36012970#, c-format12971msgid "could not finish '%s'"12972msgstr "Konnte '%s' nicht abschließen."1297312974#: builtin/fsck.c:37712975#, c-format12976msgid "Checking %s"12977msgstr "Prüfe %s"1297812979#: builtin/fsck.c:41512980#, c-format12981msgid "Checking connectivity (%d objects)"12982msgstr "Prüfe Konnektivität (%d Objekte)"1298312984#: builtin/fsck.c:43412985#, c-format12986msgid "Checking %s %s"12987msgstr "Prüfe %s %s"1298812989#: builtin/fsck.c:43812990msgid "broken links"12991msgstr "Fehlerhafte Verknüpfungen"1299212993#: builtin/fsck.c:44712994#, c-format12995msgid "root %s"12996msgstr "Wurzel %s"1299712998#: builtin/fsck.c:45512999#, c-format13000msgid "tagged %s %s (%s) in %s"13001msgstr "%s %s (%s) in %s getaggt"1300213003#: builtin/fsck.c:48413004#, c-format13005msgid "%s: object corrupt or missing"13006msgstr "%s: Objekt fehlerhaft oder nicht vorhanden"1300713008#: builtin/fsck.c:50913009#, c-format13010msgid "%s: invalid reflog entry %s"13011msgstr "%s: Ungültiger Reflog-Eintrag %s"1301213013#: builtin/fsck.c:52313014#, c-format13015msgid "Checking reflog %s->%s"13016msgstr "Prüfe Reflog %s->%s"1301713018#: builtin/fsck.c:55713019#, c-format13020msgid "%s: invalid sha1 pointer %s"13021msgstr "%s: Ungültiger SHA1-Zeiger %s"1302213023#: builtin/fsck.c:56413024#, c-format13025msgid "%s: not a commit"13026msgstr "%s: kein Commit"1302713028#: builtin/fsck.c:61913029msgid "notice: No default references"13030msgstr "Notiz: Keine Standardreferenzen"1303113032#: builtin/fsck.c:63413033#, c-format13034msgid "%s: object corrupt or missing: %s"13035msgstr "%s: Objekt fehlerhaft oder nicht vorhanden: %s"1303613037#: builtin/fsck.c:64713038#, c-format13039msgid "%s: object could not be parsed: %s"13040msgstr "%s: Objekt konnte nicht geparst werden: %s"1304113042#: builtin/fsck.c:66713043#, c-format13044msgid "bad sha1 file: %s"13045msgstr "Ungültige SHA1-Datei: %s"1304613047#: builtin/fsck.c:68213048msgid "Checking object directory"13049msgstr "Prüfe Objekt-Verzeichnis"1305013051#: builtin/fsck.c:68513052msgid "Checking object directories"13053msgstr "Prüfe Objekt-Verzeichnisse"1305413055#: builtin/fsck.c:70013056#, c-format13057msgid "Checking %s link"13058msgstr "Prüfe %s Verknüpfung"1305913060#: builtin/fsck.c:705 builtin/index-pack.c:84113061#, c-format13062msgid "invalid %s"13063msgstr "Ungültiger Objekt-Typ %s"1306413065#: builtin/fsck.c:71213066#, c-format13067msgid "%s points to something strange (%s)"13068msgstr "%s zeigt auf etwas seltsames (%s)"1306913070#: builtin/fsck.c:71813071#, c-format13072msgid "%s: detached HEAD points at nothing"13073msgstr "%s: losgelöster HEAD zeigt auf nichts"1307413075#: builtin/fsck.c:72213076#, c-format13077msgid "notice: %s points to an unborn branch (%s)"13078msgstr "Notiz: %s zeigt auf einen ungeborenen Branch (%s)"1307913080#: builtin/fsck.c:73413081msgid "Checking cache tree"13082msgstr "Prüfe Cache-Verzeichnis"1308313084#: builtin/fsck.c:73913085#, c-format13086msgid "%s: invalid sha1 pointer in cache-tree"13087msgstr "%s: Ungültiger SHA1-Zeiger in Cache-Verzeichnis"1308813089#: builtin/fsck.c:75013090msgid "non-tree in cache-tree"13091msgstr "non-tree in Cache-Verzeichnis"1309213093#: builtin/fsck.c:78113094msgid "git fsck [<options>] [<object>...]"13095msgstr "git fsck [<Optionen>] [<Objekt>...]"1309613097#: builtin/fsck.c:78713098msgid "show unreachable objects"13099msgstr "unerreichbare Objekte anzeigen"1310013101#: builtin/fsck.c:78813102msgid "show dangling objects"13103msgstr "unreferenzierte Objekte anzeigen"1310413105#: builtin/fsck.c:78913106msgid "report tags"13107msgstr "Tags melden"1310813109#: builtin/fsck.c:79013110msgid "report root nodes"13111msgstr "Hauptwurzeln melden"1311213113#: builtin/fsck.c:79113114msgid "make index objects head nodes"13115msgstr "Index-Objekte in Erreichbarkeitsprüfung einbeziehen"1311613117#: builtin/fsck.c:79213118msgid "make reflogs head nodes (default)"13119msgstr "Reflogs in Erreichbarkeitsprüfung einbeziehen (Standard)"1312013121#: builtin/fsck.c:79313122msgid "also consider packs and alternate objects"13123msgstr "ebenso Pakete und alternative Objekte betrachten"1312413125#: builtin/fsck.c:79413126msgid "check only connectivity"13127msgstr "nur Konnektivität prüfen"1312813129#: builtin/fsck.c:79513130msgid "enable more strict checking"13131msgstr "genauere Prüfung aktivieren"1313213133#: builtin/fsck.c:79713134msgid "write dangling objects in .git/lost-found"13135msgstr "unreferenzierte Objekte nach .git/lost-found schreiben"1313613137#: builtin/fsck.c:798 builtin/prune.c:13213138msgid "show progress"13139msgstr "Fortschrittsanzeige anzeigen"1314013141#: builtin/fsck.c:79913142msgid "show verbose names for reachable objects"13143msgstr "ausführliche Namen für erreichbare Objekte anzeigen"1314413145#: builtin/fsck.c:859 builtin/index-pack.c:22413146msgid "Checking objects"13147msgstr "Prüfe Objekte"1314813149#: builtin/fsck.c:88713150#, c-format13151msgid "%s: object missing"13152msgstr "%s: Objekt nicht vorhanden"1315313154#: builtin/fsck.c:89913155#, c-format13156msgid "invalid parameter: expected sha1, got '%s'"13157msgstr "Ungültiger Parameter: SHA-1 erwartet, '%s' bekommen"1315813159#: builtin/gc.c:3413160msgid "git gc [<options>]"13161msgstr "git gc [<Optionen>]"1316213163#: builtin/gc.c:9013164#, c-format13165msgid "Failed to fstat %s: %s"13166msgstr "Konnte '%s' nicht lesen: %s"1316713168#: builtin/gc.c:12613169#, c-format13170msgid "failed to parse '%s' value '%s'"13171msgstr "Fehler beim Parsen von '%s' mit dem Wert '%s'"1317213173#: builtin/gc.c:476 builtin/init-db.c:5513174#, c-format13175msgid "cannot stat '%s'"13176msgstr "Kann '%s' nicht lesen"1317713178#: builtin/gc.c:485 builtin/notes.c:240 builtin/tag.c:51913179#, c-format13180msgid "cannot read '%s'"13181msgstr "kann '%s' nicht lesen"1318213183#: builtin/gc.c:49213184#, c-format13185msgid ""13186"The last gc run reported the following. Please correct the root cause\n"13187"and remove %s.\n"13188"Automatic cleanup will not be performed until the file is removed.\n"13189"\n"13190"%s"13191msgstr ""13192"Die letzte Ausführung von \"gc run\" enthielt die folgenden Meldungen.\n"13193"Bitte beheben Sie das Hauptproblem und löschen Sie %s.\n"13194"Ein automatischer Cleanup wird nicht ausgeführt, bis diese Datei entfernt\n"13195"wurde.\n"13196"\n"13197"%s"1319813199#: builtin/gc.c:54013200msgid "prune unreferenced objects"13201msgstr "unreferenzierte Objekte entfernen"1320213203#: builtin/gc.c:54213204msgid "be more thorough (increased runtime)"13205msgstr "mehr Gründlichkeit (erhöht Laufzeit)"1320613207#: builtin/gc.c:54313208msgid "enable auto-gc mode"13209msgstr "\"auto-gc\" Modus aktivieren"1321013211#: builtin/gc.c:54613212msgid "force running gc even if there may be another gc running"13213msgstr ""13214"Ausführung von \"git gc\" erzwingen, selbst wenn ein anderes\n"13215"\"git gc\" bereits ausgeführt wird"1321613217#: builtin/gc.c:54913218msgid "repack all other packs except the largest pack"13219msgstr "alle anderen Pakete, außer das größte Paket, neu packen"1322013221#: builtin/gc.c:56613222#, c-format13223msgid "failed to parse gc.logexpiry value %s"13224msgstr "Fehler beim Parsen des Wertes '%s' von gc.logexpiry."1322513226#: builtin/gc.c:57713227#, c-format13228msgid "failed to parse prune expiry value %s"13229msgstr "Fehler beim Parsen des \"prune expiry\" Wertes %s"1323013231#: builtin/gc.c:59713232#, c-format13233msgid "Auto packing the repository in background for optimum performance.\n"13234msgstr ""13235"Die Datenbank des Repositories wird für eine optimale Performance im\n"13236"Hintergrund komprimiert.\n"1323713238#: builtin/gc.c:59913239#, c-format13240msgid "Auto packing the repository for optimum performance.\n"13241msgstr ""13242"Die Datenbank des Projektarchivs wird für eine optimale Performance "13243"komprimiert.\n"1324413245#: builtin/gc.c:60013246#, c-format13247msgid "See \"git help gc\" for manual housekeeping.\n"13248msgstr "Siehe \"git help gc\" für manuelles Aufräumen.\n"1324913250#: builtin/gc.c:64013251#, c-format13252msgid ""13253"gc is already running on machine '%s' pid %<PRIuMAX> (use --force if not)"13254msgstr ""13255"\"git gc\" wird bereits auf Maschine '%s' pid %<PRIuMAX> ausgeführt\n"13256"(benutzen Sie --force falls nicht)"1325713258#: builtin/gc.c:69313259msgid ""13260"There are too many unreachable loose objects; run 'git prune' to remove them."13261msgstr ""13262"Es gibt zu viele unerreichbare lose Objekte; führen Sie 'git prune' aus, um "13263"diese zu löschen."1326413265#: builtin/grep.c:2913266msgid "git grep [<options>] [-e] <pattern> [<rev>...] [[--] <path>...]"13267msgstr "git grep [<Optionen>] [-e] <Muster> [<Commit>...] [[--] <Pfad>...]"1326813269#: builtin/grep.c:22513270#, c-format13271msgid "grep: failed to create thread: %s"13272msgstr "grep: Fehler beim Erzeugen eines Thread: %s"1327313274#: builtin/grep.c:27913275#, c-format13276msgid "invalid number of threads specified (%d) for %s"13277msgstr "ungültige Anzahl von Threads (%d) für %s angegeben"1327813279#. TRANSLATORS: %s is the configuration13280#. variable for tweaking threads, currently13281#. grep.threads13282#.13283#: builtin/grep.c:287 builtin/index-pack.c:1514 builtin/index-pack.c:170513284#: builtin/pack-objects.c:272013285#, c-format13286msgid "no threads support, ignoring %s"13287msgstr "keine Unterstützung von Threads, '%s' wird ignoriert"1328813289#: builtin/grep.c:466 builtin/grep.c:590 builtin/grep.c:63113290#, c-format13291msgid "unable to read tree (%s)"13292msgstr "konnte \"Tree\"-Objekt (%s) nicht lesen"1329313294#: builtin/grep.c:64613295#, c-format13296msgid "unable to grep from object of type %s"13297msgstr "kann \"grep\" nicht mit Objekten des Typs %s durchführen"1329813299#: builtin/grep.c:71213300#, c-format13301msgid "switch `%c' expects a numerical value"13302msgstr "Schalter '%c' erwartet einen numerischen Wert"1330313304#: builtin/grep.c:81113305msgid "search in index instead of in the work tree"13306msgstr "im Index anstatt im Arbeitsverzeichnis suchen"1330713308#: builtin/grep.c:81313309msgid "find in contents not managed by git"13310msgstr "auch in Inhalten finden, die nicht von Git verwaltet werden"1331113312#: builtin/grep.c:81513313msgid "search in both tracked and untracked files"13314msgstr "in versionierten und unversionierten Dateien suchen"1331513316#: builtin/grep.c:81713317msgid "ignore files specified via '.gitignore'"13318msgstr "Dateien, die über '.gitignore' angegeben sind, ignorieren"1331913320#: builtin/grep.c:81913321msgid "recursively search in each submodule"13322msgstr "rekursive Suche in jedem Submodul"1332313324#: builtin/grep.c:82213325msgid "show non-matching lines"13326msgstr "Zeilen ohne Übereinstimmungen anzeigen"1332713328#: builtin/grep.c:82413329msgid "case insensitive matching"13330msgstr "Übereinstimmungen unabhängig von Groß- und Kleinschreibung finden"1333113332#: builtin/grep.c:82613333msgid "match patterns only at word boundaries"13334msgstr "nur ganze Wörter suchen"1333513336#: builtin/grep.c:82813337msgid "process binary files as text"13338msgstr "binäre Dateien als Text verarbeiten"1333913340#: builtin/grep.c:83013341msgid "don't match patterns in binary files"13342msgstr "keine Muster in Binärdateien finden"1334313344#: builtin/grep.c:83313345msgid "process binary files with textconv filters"13346msgstr "binäre Dateien mit \"textconv\"-Filtern verarbeiten"1334713348#: builtin/grep.c:83513349msgid "search in subdirectories (default)"13350msgstr "in Unterverzeichnissen suchen (Standard)"1335113352#: builtin/grep.c:83713353msgid "descend at most <depth> levels"13354msgstr "höchstens <Tiefe> Ebenen durchlaufen"1335513356#: builtin/grep.c:84113357msgid "use extended POSIX regular expressions"13358msgstr "erweiterte reguläre Ausdrücke aus POSIX verwenden"1335913360#: builtin/grep.c:84413361msgid "use basic POSIX regular expressions (default)"13362msgstr "grundlegende reguläre Ausdrücke aus POSIX verwenden (Standard)"1336313364#: builtin/grep.c:84713365msgid "interpret patterns as fixed strings"13366msgstr "Muster als feste Zeichenketten interpretieren"1336713368#: builtin/grep.c:85013369msgid "use Perl-compatible regular expressions"13370msgstr "Perl-kompatible reguläre Ausdrücke verwenden"1337113372#: builtin/grep.c:85313373msgid "show line numbers"13374msgstr "Zeilennummern anzeigen"1337513376#: builtin/grep.c:85413377msgid "show column number of first match"13378msgstr "Nummer der Spalte des ersten Treffers anzeigen"1337913380#: builtin/grep.c:85513381msgid "don't show filenames"13382msgstr "keine Dateinamen anzeigen"1338313384#: builtin/grep.c:85613385msgid "show filenames"13386msgstr "Dateinamen anzeigen"1338713388#: builtin/grep.c:85813389msgid "show filenames relative to top directory"13390msgstr "Dateinamen relativ zum Projektverzeichnis anzeigen"1339113392#: builtin/grep.c:86013393msgid "show only filenames instead of matching lines"13394msgstr "nur Dateinamen anzeigen anstatt übereinstimmende Zeilen"1339513396#: builtin/grep.c:86213397msgid "synonym for --files-with-matches"13398msgstr "Synonym für --files-with-matches"1339913400#: builtin/grep.c:86513401msgid "show only the names of files without match"13402msgstr "nur die Dateinamen ohne Übereinstimmungen anzeigen"1340313404#: builtin/grep.c:86713405msgid "print NUL after filenames"13406msgstr "NUL-Zeichen nach Dateinamen ausgeben"1340713408#: builtin/grep.c:87013409msgid "show only matching parts of a line"13410msgstr "nur übereinstimmende Teile der Zeile anzeigen"1341113412#: builtin/grep.c:87213413msgid "show the number of matches instead of matching lines"13414msgstr "anstatt der Zeilen, die Anzahl der übereinstimmenden Zeilen anzeigen"1341513416#: builtin/grep.c:87313417msgid "highlight matches"13418msgstr "Übereinstimmungen hervorheben"1341913420#: builtin/grep.c:87513421msgid "print empty line between matches from different files"13422msgstr ""13423"eine Leerzeile zwischen Übereinstimmungen in verschiedenen Dateien ausgeben"1342413425#: builtin/grep.c:87713426msgid "show filename only once above matches from same file"13427msgstr ""13428"den Dateinamen nur einmal oberhalb der Übereinstimmungen aus dieser Datei "13429"anzeigen"1343013431#: builtin/grep.c:88013432msgid "show <n> context lines before and after matches"13433msgstr "<n> Zeilen vor und nach den Übereinstimmungen anzeigen"1343413435#: builtin/grep.c:88313436msgid "show <n> context lines before matches"13437msgstr "<n> Zeilen vor den Übereinstimmungen anzeigen"1343813439#: builtin/grep.c:88513440msgid "show <n> context lines after matches"13441msgstr "<n> Zeilen nach den Übereinstimmungen anzeigen"1344213443#: builtin/grep.c:88713444msgid "use <n> worker threads"13445msgstr "<n> Threads benutzen"1344613447#: builtin/grep.c:88813448msgid "shortcut for -C NUM"13449msgstr "Kurzform für -C NUM"1345013451#: builtin/grep.c:89113452msgid "show a line with the function name before matches"13453msgstr "eine Zeile mit dem Funktionsnamen vor Übereinstimmungen anzeigen"1345413455#: builtin/grep.c:89313456msgid "show the surrounding function"13457msgstr "die umgebende Funktion anzeigen"1345813459#: builtin/grep.c:89613460msgid "read patterns from file"13461msgstr "Muster von einer Datei lesen"1346213463#: builtin/grep.c:89813464msgid "match <pattern>"13465msgstr "<Muster> finden"1346613467#: builtin/grep.c:90013468msgid "combine patterns specified with -e"13469msgstr "Muster kombinieren, die mit -e angegeben wurden"1347013471#: builtin/grep.c:91213472msgid "indicate hit with exit status without output"13473msgstr "Übereinstimmungen nur durch Beendigungsstatus anzeigen"1347413475#: builtin/grep.c:91413476msgid "show only matches from files that match all patterns"13477msgstr ""13478"nur Übereinstimmungen von Dateien anzeigen, die allen Mustern entsprechen"1347913480#: builtin/grep.c:91613481msgid "show parse tree for grep expression"13482msgstr "geparstes Verzeichnis für \"grep\"-Ausdruck anzeigen"1348313484#: builtin/grep.c:92013485msgid "pager"13486msgstr "Anzeigeprogramm"1348713488#: builtin/grep.c:92013489msgid "show matching files in the pager"13490msgstr "Dateien mit Übereinstimmungen im Anzeigeprogramm anzeigen"1349113492#: builtin/grep.c:92413493msgid "allow calling of grep(1) (ignored by this build)"13494msgstr "den Aufruf von grep(1) erlauben (von dieser Programmversion ignoriert)"1349513496#: builtin/grep.c:98813497msgid "no pattern given"13498msgstr "Kein Muster angegeben."1349913500#: builtin/grep.c:102413501msgid "--no-index or --untracked cannot be used with revs"13502msgstr "--no-index oder --untracked können nicht mit Commits verwendet werden"1350313504#: builtin/grep.c:103213505#, c-format13506msgid "unable to resolve revision: %s"13507msgstr "Konnte Commit nicht auflösen: %s"1350813509#: builtin/grep.c:106313510msgid "invalid option combination, ignoring --threads"13511msgstr "Ungültige Kombination von Optionen, --threads wird ignoriert."1351213513#: builtin/grep.c:1066 builtin/pack-objects.c:340313514msgid "no threads support, ignoring --threads"13515msgstr "Keine Unterstützung für Threads, --threads wird ignoriert."1351613517#: builtin/grep.c:1069 builtin/index-pack.c:1511 builtin/pack-objects.c:271713518#, c-format13519msgid "invalid number of threads specified (%d)"13520msgstr "ungültige Anzahl von Threads angegeben (%d)"1352113522#: builtin/grep.c:109213523msgid "--open-files-in-pager only works on the worktree"13524msgstr ""13525"Die Option --open-files-in-pager kann nur innerhalb des "13526"Arbeitsverzeichnisses verwendet werden."1352713528#: builtin/grep.c:111513529msgid "option not supported with --recurse-submodules"13530msgstr "Die Option wird mit --recurse-submodules nicht unterstützt."1353113532#: builtin/grep.c:112113533msgid "--cached or --untracked cannot be used with --no-index"13534msgstr "--cached und --untracked können nicht mit --no-index verwendet werden."1353513536#: builtin/grep.c:112713537msgid "--[no-]exclude-standard cannot be used for tracked contents"13538msgstr ""13539"--[no-]exclude-standard kann nicht mit versionierten Inhalten verwendet "13540"werden."1354113542#: builtin/grep.c:113513543msgid "both --cached and trees are given"13544msgstr "--cached und \"Tree\"-Objekte angegeben"1354513546#: builtin/hash-object.c:8513547msgid ""13548"git hash-object [-t <type>] [-w] [--path=<file> | --no-filters] [--stdin] "13549"[--] <file>..."13550msgstr ""13551"git hash-object [-t <Art>] [-w] [--path=<Datei> | --no-filters] [--stdin] "13552"[--] <Datei>..."1355313554#: builtin/hash-object.c:8613555msgid "git hash-object --stdin-paths"13556msgstr "git hash-object --stdin-paths"1355713558#: builtin/hash-object.c:9813559msgid "type"13560msgstr "Art"1356113562#: builtin/hash-object.c:9813563msgid "object type"13564msgstr "Art des Objektes"1356513566#: builtin/hash-object.c:9913567msgid "write the object into the object database"13568msgstr "das Objekt in die Objektdatenbank schreiben"1356913570#: builtin/hash-object.c:10113571msgid "read the object from stdin"13572msgstr "das Objekt von der Standard-Eingabe lesen"1357313574#: builtin/hash-object.c:10313575msgid "store file as is without filters"13576msgstr "Datei wie sie ist speichern, ohne Filter"1357713578#: builtin/hash-object.c:10413579msgid ""13580"just hash any random garbage to create corrupt objects for debugging Git"13581msgstr ""13582"Hash über zufällige Daten, zur Erzeugung von beschädigten Objekten zur\n"13583"Fehlersuche in Git, erzeugen"1358413585#: builtin/hash-object.c:10513586msgid "process file as it were from this path"13587msgstr "Datei verarbeiten, als ob sie von diesem Pfad wäre"1358813589#: builtin/help.c:4613590msgid "print all available commands"13591msgstr "alle vorhandenen Befehle anzeigen"1359213593#: builtin/help.c:4713594msgid "exclude guides"13595msgstr "Anleitungen ausschließen"1359613597#: builtin/help.c:4813598msgid "print list of useful guides"13599msgstr "Liste von allgemein verwendeten Anleitungen anzeigen"1360013601#: builtin/help.c:4913602msgid "print all configuration variable names"13603msgstr "alle Namen der Konfigurationsvariablen ausgeben"1360413605#: builtin/help.c:5113606msgid "show man page"13607msgstr "Handbuch anzeigen"1360813609#: builtin/help.c:5213610msgid "show manual in web browser"13611msgstr "Handbuch in einem Webbrowser anzeigen"1361213613#: builtin/help.c:5413614msgid "show info page"13615msgstr "Info-Seite anzeigen"1361613617#: builtin/help.c:5613618msgid "print command description"13619msgstr "Beschreibung des Befehls ausgeben"1362013621#: builtin/help.c:6113622msgid "git help [--all] [--guides] [--man | --web | --info] [<command>]"13623msgstr "git help [--all] [--guides] [--man | --web | --info] [<Befehl>]"1362413625#: builtin/help.c:7713626#, c-format13627msgid "unrecognized help format '%s'"13628msgstr "nicht erkanntes Hilfeformat: %s"1362913630#: builtin/help.c:10413631msgid "Failed to start emacsclient."13632msgstr "Konnte emacsclient nicht starten."1363313634#: builtin/help.c:11713635msgid "Failed to parse emacsclient version."13636msgstr "Konnte Version des emacsclient nicht parsen."1363713638#: builtin/help.c:12513639#, c-format13640msgid "emacsclient version '%d' too old (< 22)."13641msgstr "Version des emacsclient '%d' ist zu alt (< 22)."1364213643#: builtin/help.c:143 builtin/help.c:165 builtin/help.c:175 builtin/help.c:18313644#, c-format13645msgid "failed to exec '%s'"13646msgstr "Fehler beim Ausführen von '%s'"1364713648#: builtin/help.c:22113649#, c-format13650msgid ""13651"'%s': path for unsupported man viewer.\n"13652"Please consider using 'man.<tool>.cmd' instead."13653msgstr ""13654"'%s': Pfad für nicht unterstützten Handbuchbetrachter.\n"13655"Sie könnten stattdessen 'man.<Werkzeug>.cmd' benutzen."1365613657#: builtin/help.c:23313658#, c-format13659msgid ""13660"'%s': cmd for supported man viewer.\n"13661"Please consider using 'man.<tool>.path' instead."13662msgstr ""13663"'%s': Programm für unterstützten Handbuchbetrachter.\n"13664"Sie könnten stattdessen 'man.<Werkzeug>.path' benutzen."1366513666#: builtin/help.c:35013667#, c-format13668msgid "'%s': unknown man viewer."13669msgstr "'%s': unbekannter Handbuch-Betrachter."1367013671#: builtin/help.c:36713672msgid "no man viewer handled the request"13673msgstr "kein Handbuch-Betrachter konnte mit dieser Anfrage umgehen"1367413675#: builtin/help.c:37513676msgid "no info viewer handled the request"13677msgstr "kein Informations-Betrachter konnte mit dieser Anfrage umgehen"1367813679#: builtin/help.c:434 builtin/help.c:445 git.c:33513680#, c-format13681msgid "'%s' is aliased to '%s'"13682msgstr "Für '%s' wurde der Alias '%s' angelegt."1368313684#: builtin/help.c:448 git.c:36413685#, c-format13686msgid "bad alias.%s string: %s"13687msgstr "Ungültiger alias.%s String: %s"1368813689#: builtin/help.c:477 builtin/help.c:50713690#, c-format13691msgid "usage: %s%s"13692msgstr "Verwendung: %s%s"1369313694#: builtin/help.c:49113695msgid "'git help config' for more information"13696msgstr "'git help config' für weitere Informationen"1369713698#: builtin/index-pack.c:18413699#, c-format13700msgid "object type mismatch at %s"13701msgstr "Objekt-Typen passen bei %s nicht zusammen"1370213703#: builtin/index-pack.c:20413704#, c-format13705msgid "did not receive expected object %s"13706msgstr "konnte erwartetes Objekt %s nicht empfangen"1370713708#: builtin/index-pack.c:20713709#, c-format13710msgid "object %s: expected type %s, found %s"13711msgstr "Objekt %s: erwarteter Typ %s, %s gefunden"1371213713#: builtin/index-pack.c:25713714#, c-format13715msgid "cannot fill %d byte"13716msgid_plural "cannot fill %d bytes"13717msgstr[0] "kann %d Byte nicht lesen"13718msgstr[1] "kann %d Bytes nicht lesen"1371913720#: builtin/index-pack.c:26713721msgid "early EOF"13722msgstr "zu frühes Dateiende"1372313724#: builtin/index-pack.c:26813725msgid "read error on input"13726msgstr "Fehler beim Lesen der Eingabe"1372713728#: builtin/index-pack.c:28013729msgid "used more bytes than were available"13730msgstr "verwendete mehr Bytes als verfügbar waren"1373113732#: builtin/index-pack.c:287 builtin/pack-objects.c:60013733msgid "pack too large for current definition of off_t"13734msgstr "Paket ist zu groß für die aktuelle Definition von off_t"1373513736#: builtin/index-pack.c:290 builtin/unpack-objects.c:9413737msgid "pack exceeds maximum allowed size"13738msgstr "Paket überschreitet die maximal erlaubte Größe"1373913740#: builtin/index-pack.c:305 builtin/repack.c:25013741#, c-format13742msgid "unable to create '%s'"13743msgstr "konnte '%s' nicht erstellen"1374413745#: builtin/index-pack.c:31113746#, c-format13747msgid "cannot open packfile '%s'"13748msgstr "Kann Paketdatei '%s' nicht öffnen"1374913750#: builtin/index-pack.c:32513751msgid "pack signature mismatch"13752msgstr "Paketsignatur stimmt nicht überein"1375313754#: builtin/index-pack.c:32713755#, c-format13756msgid "pack version %<PRIu32> unsupported"13757msgstr "Paketversion %<PRIu32> nicht unterstützt"1375813759#: builtin/index-pack.c:34513760#, c-format13761msgid "pack has bad object at offset %<PRIuMAX>: %s"13762msgstr "Paket hat ein ungültiges Objekt bei Versatz %<PRIuMAX>: %s"1376313764#: builtin/index-pack.c:46513765#, c-format13766msgid "inflate returned %d"13767msgstr "Dekomprimierung gab %d zurück"1376813769#: builtin/index-pack.c:51413770msgid "offset value overflow for delta base object"13771msgstr "Wert für Versatz bei Differenzobjekt übergelaufen"1377213773#: builtin/index-pack.c:52213774msgid "delta base offset is out of bound"13775msgstr ""13776"Wert für Versatz bei Differenzobjekt liegt außerhalb des gültigen Bereichs"1377713778#: builtin/index-pack.c:53013779#, c-format13780msgid "unknown object type %d"13781msgstr "Unbekannter Objekt-Typ %d"1378213783#: builtin/index-pack.c:56113784msgid "cannot pread pack file"13785msgstr "Kann Paketdatei %s nicht lesen"1378613787#: builtin/index-pack.c:56313788#, c-format13789msgid "premature end of pack file, %<PRIuMAX> byte missing"13790msgid_plural "premature end of pack file, %<PRIuMAX> bytes missing"13791msgstr[0] "frühzeitiges Ende der Paketdatei, vermisse %<PRIuMAX> Byte"13792msgstr[1] "frühzeitiges Ende der Paketdatei, vermisse %<PRIuMAX> Bytes"1379313794#: builtin/index-pack.c:58913795msgid "serious inflate inconsistency"13796msgstr "ernsthafte Inkonsistenz nach Dekomprimierung"1379713798#: builtin/index-pack.c:734 builtin/index-pack.c:740 builtin/index-pack.c:76313799#: builtin/index-pack.c:802 builtin/index-pack.c:81113800#, c-format13801msgid "SHA1 COLLISION FOUND WITH %s !"13802msgstr "SHA1 KOLLISION MIT %s GEFUNDEN !"1380313804#: builtin/index-pack.c:737 builtin/pack-objects.c:15313805#: builtin/pack-objects.c:213 builtin/pack-objects.c:30713806#, c-format13807msgid "unable to read %s"13808msgstr "kann %s nicht lesen"1380913810#: builtin/index-pack.c:80013811#, c-format13812msgid "cannot read existing object info %s"13813msgstr "Kann existierende Informationen zu Objekt %s nicht lesen."1381413815#: builtin/index-pack.c:80813816#, c-format13817msgid "cannot read existing object %s"13818msgstr "Kann existierendes Objekt %s nicht lesen."1381913820#: builtin/index-pack.c:82213821#, c-format13822msgid "invalid blob object %s"13823msgstr "ungültiges Blob-Objekt %s"1382413825#: builtin/index-pack.c:825 builtin/index-pack.c:84413826msgid "fsck error in packed object"13827msgstr "fsck Fehler in gepacktem Objekt"1382813829#: builtin/index-pack.c:84613830#, c-format13831msgid "Not all child objects of %s are reachable"13832msgstr "Nicht alle Kind-Objekte von %s sind erreichbar"1383313834#: builtin/index-pack.c:918 builtin/index-pack.c:94913835msgid "failed to apply delta"13836msgstr "Konnte Dateiunterschied nicht anwenden"1383713838#: builtin/index-pack.c:111713839msgid "Receiving objects"13840msgstr "Empfange Objekte"1384113842#: builtin/index-pack.c:111713843msgid "Indexing objects"13844msgstr "Indiziere Objekte"1384513846#: builtin/index-pack.c:115113847msgid "pack is corrupted (SHA1 mismatch)"13848msgstr "Paket ist beschädigt (SHA1 unterschiedlich)"1384913850#: builtin/index-pack.c:115613851msgid "cannot fstat packfile"13852msgstr "kann Paketdatei nicht lesen"1385313854#: builtin/index-pack.c:115913855msgid "pack has junk at the end"13856msgstr "Paketende enthält nicht verwendbaren Inhalt"1385713858#: builtin/index-pack.c:117113859msgid "confusion beyond insanity in parse_pack_objects()"13860msgstr "Fehler beim Ausführen von \"parse_pack_objects()\""1386113862#: builtin/index-pack.c:119413863msgid "Resolving deltas"13864msgstr "Löse Unterschiede auf"1386513866#: builtin/index-pack.c:1204 builtin/pack-objects.c:248913867#, c-format13868msgid "unable to create thread: %s"13869msgstr "kann Thread nicht erzeugen: %s"1387013871#: builtin/index-pack.c:124513872msgid "confusion beyond insanity"13873msgstr "Fehler beim Auflösen der Unterschiede"1387413875#: builtin/index-pack.c:125113876#, c-format13877msgid "completed with %d local object"13878msgid_plural "completed with %d local objects"13879msgstr[0] "abgeschlossen mit %d lokalem Objekt"13880msgstr[1] "abgeschlossen mit %d lokalen Objekten"1388113882#: builtin/index-pack.c:126313883#, c-format13884msgid "Unexpected tail checksum for %s (disk corruption?)"13885msgstr "Unerwartete Prüfsumme für %s (Festplattenfehler?)"1388613887#: builtin/index-pack.c:126713888#, c-format13889msgid "pack has %d unresolved delta"13890msgid_plural "pack has %d unresolved deltas"13891msgstr[0] "Paket hat %d unaufgelösten Unterschied"13892msgstr[1] "Paket hat %d unaufgelöste Unterschiede"1389313894#: builtin/index-pack.c:129113895#, c-format13896msgid "unable to deflate appended object (%d)"13897msgstr "Konnte angehängtes Objekt (%d) nicht komprimieren"1389813899#: builtin/index-pack.c:136813900#, c-format13901msgid "local object %s is corrupt"13902msgstr "lokales Objekt %s ist beschädigt"1390313904#: builtin/index-pack.c:138213905#, c-format13906msgid "packfile name '%s' does not end with '.pack'"13907msgstr "Name der Paketdatei '%s' endet nicht mit '.pack'"1390813909#: builtin/index-pack.c:140713910#, c-format13911msgid "cannot write %s file '%s'"13912msgstr "Kann %s Datei '%s' nicht schreiben."1391313914#: builtin/index-pack.c:141513915#, c-format13916msgid "cannot close written %s file '%s'"13917msgstr "Kann eben geschriebene %s Datei '%s' nicht schließen."1391813919#: builtin/index-pack.c:143913920msgid "error while closing pack file"13921msgstr "Fehler beim Schließen der Paketdatei"1392213923#: builtin/index-pack.c:145313924msgid "cannot store pack file"13925msgstr "Kann Paketdatei nicht speichern"1392613927#: builtin/index-pack.c:146113928msgid "cannot store index file"13929msgstr "Kann Indexdatei nicht speichern"1393013931#: builtin/index-pack.c:1505 builtin/pack-objects.c:272813932#, c-format13933msgid "bad pack.indexversion=%<PRIu32>"13934msgstr "\"pack.indexversion=%<PRIu32>\" ist ungültig"1393513936#: builtin/index-pack.c:157313937#, c-format13938msgid "Cannot open existing pack file '%s'"13939msgstr "Kann existierende Paketdatei '%s' nicht öffnen"1394013941#: builtin/index-pack.c:157513942#, c-format13943msgid "Cannot open existing pack idx file for '%s'"13944msgstr "Kann existierende Indexdatei für Paket '%s' nicht öffnen"1394513946#: builtin/index-pack.c:162313947#, c-format13948msgid "non delta: %d object"13949msgid_plural "non delta: %d objects"13950msgstr[0] "kein Unterschied: %d Objekt"13951msgstr[1] "kein Unterschied: %d Objekte"1395213953#: builtin/index-pack.c:163013954#, c-format13955msgid "chain length = %d: %lu object"13956msgid_plural "chain length = %d: %lu objects"13957msgstr[0] "Länge der Objekt-Liste = %d: %lu Objekt"13958msgstr[1] "Länge der Objekt-Liste = %d: %lu Objekte"1395913960#: builtin/index-pack.c:166713961msgid "Cannot come back to cwd"13962msgstr "Kann nicht zurück zum Arbeitsverzeichnis wechseln"1396313964#: builtin/index-pack.c:1716 builtin/index-pack.c:171913965#: builtin/index-pack.c:1735 builtin/index-pack.c:173913966#, c-format13967msgid "bad %s"13968msgstr "%s ist ungültig"1396913970#: builtin/index-pack.c:175513971msgid "--fix-thin cannot be used without --stdin"13972msgstr "Die Option --fix-thin kann nicht ohne --stdin verwendet werden."1397313974#: builtin/index-pack.c:175713975msgid "--stdin requires a git repository"13976msgstr "--stdin erfordert ein Git-Repository"1397713978#: builtin/index-pack.c:176313979msgid "--verify with no packfile name given"13980msgstr "Die Option --verify wurde ohne Namen der Paketdatei angegeben."1398113982#: builtin/index-pack.c:1811 builtin/unpack-objects.c:58013983msgid "fsck error in pack objects"13984msgstr "fsck Fehler beim Packen von Objekten"1398513986#: builtin/init-db.c:6113987#, c-format13988msgid "cannot stat template '%s'"13989msgstr "kann Vorlage '%s' nicht lesen"1399013991#: builtin/init-db.c:6613992#, c-format13993msgid "cannot opendir '%s'"13994msgstr "kann Verzeichnis '%s' nicht öffnen"1399513996#: builtin/init-db.c:7813997#, c-format13998msgid "cannot readlink '%s'"13999msgstr "kann Verweis '%s' nicht lesen"1400014001#: builtin/init-db.c:8014002#, c-format14003msgid "cannot symlink '%s' '%s'"14004msgstr "kann symbolische Verknüpfung '%s' auf '%s' nicht erstellen"1400514006#: builtin/init-db.c:8614007#, c-format14008msgid "cannot copy '%s' to '%s'"14009msgstr "kann '%s' nicht nach '%s' kopieren"1401014011#: builtin/init-db.c:9014012#, c-format14013msgid "ignoring template %s"14014msgstr "ignoriere Vorlage %s"1401514016#: builtin/init-db.c:12114017#, c-format14018msgid "templates not found in %s"14019msgstr "Keine Vorlagen in %s gefunden."1402014021#: builtin/init-db.c:13614022#, c-format14023msgid "not copying templates from '%s': %s"14024msgstr "kopiere keine Vorlagen von '%s': %s"1402514026#: builtin/init-db.c:33414027#, c-format14028msgid "unable to handle file type %d"14029msgstr "kann nicht mit Dateityp %d umgehen"1403014031#: builtin/init-db.c:33714032#, c-format14033msgid "unable to move %s to %s"14034msgstr "Konnte %s nicht nach %s verschieben"1403514036#: builtin/init-db.c:354 builtin/init-db.c:35714037#, c-format14038msgid "%s already exists"14039msgstr "%s existiert bereits"1404014041#: builtin/init-db.c:41314042#, c-format14043msgid "Reinitialized existing shared Git repository in %s%s\n"14044msgstr "Bestehendes verteiltes Git-Repository in %s%s neuinitialisiert\n"1404514046#: builtin/init-db.c:41414047#, c-format14048msgid "Reinitialized existing Git repository in %s%s\n"14049msgstr "Bestehendes Git-Repository in %s%s neuinitialisiert\n"1405014051#: builtin/init-db.c:41814052#, c-format14053msgid "Initialized empty shared Git repository in %s%s\n"14054msgstr "Leeres verteiltes Git-Repository in %s%s initialisiert\n"1405514056#: builtin/init-db.c:41914057#, c-format14058msgid "Initialized empty Git repository in %s%s\n"14059msgstr "Leeres Git-Repository in %s%s initialisiert\n"1406014061#: builtin/init-db.c:46814062msgid ""14063"git init [-q | --quiet] [--bare] [--template=<template-directory>] [--"14064"shared[=<permissions>]] [<directory>]"14065msgstr ""14066"git init [-q | --quiet] [--bare] [--template=<Vorlagenverzeichnis>] [--"14067"shared[=<Berechtigungen>]] [<Verzeichnis>]"1406814069#: builtin/init-db.c:49114070msgid "permissions"14071msgstr "Berechtigungen"1407214073#: builtin/init-db.c:49214074msgid "specify that the git repository is to be shared amongst several users"14075msgstr "angeben, dass das Git-Repository mit mehreren Benutzern geteilt wird"1407614077#: builtin/init-db.c:526 builtin/init-db.c:53114078#, c-format14079msgid "cannot mkdir %s"14080msgstr "kann Verzeichnis %s nicht erstellen"1408114082#: builtin/init-db.c:53514083#, c-format14084msgid "cannot chdir to %s"14085msgstr "kann nicht in Verzeichnis %s wechseln"1408614087#: builtin/init-db.c:55614088#, c-format14089msgid ""14090"%s (or --work-tree=<directory>) not allowed without specifying %s (or --git-"14091"dir=<directory>)"14092msgstr ""14093"%s (oder --work-tree=<Verzeichnis>) nicht erlaubt ohne Spezifizierung von %s "14094"(oder --git-dir=<Verzeichnis>)"1409514096#: builtin/init-db.c:58414097#, c-format14098msgid "Cannot access work tree '%s'"14099msgstr "Kann nicht auf Arbeitsverzeichnis '%s' zugreifen."1410014101#: builtin/interpret-trailers.c:1514102msgid ""14103"git interpret-trailers [--in-place] [--trim-empty] [(--trailer "14104"<token>[(=|:)<value>])...] [<file>...]"14105msgstr ""14106"git interpret-trailers [--in-place] [--trim-empty] [(--trailer "14107"<Token>[(=|:)<Wert>])...] [<Datei>...]"1410814109#: builtin/interpret-trailers.c:9414110msgid "edit files in place"14111msgstr "vorhandene Dateien direkt bearbeiten"1411214113#: builtin/interpret-trailers.c:9514114msgid "trim empty trailers"14115msgstr "kürzt leere Anhänge"1411614117#: builtin/interpret-trailers.c:9814118msgid "where to place the new trailer"14119msgstr "wo der neue Anhang platziert wird"1412014121#: builtin/interpret-trailers.c:10014122msgid "action if trailer already exists"14123msgstr "Aktion, wenn Anhang bereits existiert"1412414125#: builtin/interpret-trailers.c:10214126msgid "action if trailer is missing"14127msgstr "Aktion, wenn Anhang fehlt"1412814129#: builtin/interpret-trailers.c:10414130msgid "output only the trailers"14131msgstr "nur Anhänge ausgeben"1413214133#: builtin/interpret-trailers.c:10514134msgid "do not apply config rules"14135msgstr "Regeln aus Konfiguration nicht anwenden"1413614137#: builtin/interpret-trailers.c:10614138msgid "join whitespace-continued values"14139msgstr "durch Leerzeichen fortgesetzte Werte verbinden"1414014141#: builtin/interpret-trailers.c:10714142msgid "set parsing options"14143msgstr "Optionen für das Parsen setzen"1414414145#: builtin/interpret-trailers.c:10914146msgid "do not treat --- specially"14147msgstr "--- nicht speziell behandeln"1414814149#: builtin/interpret-trailers.c:11014150msgid "trailer"14151msgstr "Anhang"1415214153#: builtin/interpret-trailers.c:11114154msgid "trailer(s) to add"14155msgstr "Anhang/Anhänge hinzufügen"1415614157#: builtin/interpret-trailers.c:12014158msgid "--trailer with --only-input does not make sense"14159msgstr ""14160"Die Optionen --trailer und --only-input können nicht gemeinsam verwendet "14161"werden."1416214163#: builtin/interpret-trailers.c:13014164msgid "no input file given for in-place editing"14165msgstr "keine Datei zur direkten Bearbeitung angegeben"1416614167#: builtin/log.c:5514168msgid "git log [<options>] [<revision-range>] [[--] <path>...]"14169msgstr "git log [<Optionen>] [<Commitbereich>] [[--] <Pfad>...]"1417014171#: builtin/log.c:5614172msgid "git show [<options>] <object>..."14173msgstr "git show [<Optionen>] <Objekt>..."1417414175#: builtin/log.c:10414176#, c-format14177msgid "invalid --decorate option: %s"14178msgstr "Ungültige Option für --decorate: %s"1417914180#: builtin/log.c:16814181msgid "show source"14182msgstr "Quelle anzeigen"1418314184#: builtin/log.c:16914185msgid "Use mail map file"14186msgstr "\"mailmap\"-Datei verwenden"1418714188#: builtin/log.c:17114189msgid "only decorate refs that match <pattern>"14190msgstr "\"decorate\" nur bei Referenzen anwenden, die <Muster> entsprechen"1419114192#: builtin/log.c:17314193msgid "do not decorate refs that match <pattern>"14194msgstr "\"decorate\" nicht bei Referenzen anwenden, die <Muster> entsprechen"1419514196#: builtin/log.c:17414197msgid "decorate options"14198msgstr "decorate-Optionen"1419914200#: builtin/log.c:17714201msgid "Process line range n,m in file, counting from 1"14202msgstr "Verarbeitet nur Zeilen im Bereich n,m in der Datei, gezählt von 1"1420314204#: builtin/log.c:27514205#, c-format14206msgid "Final output: %d %s\n"14207msgstr "letzte Ausgabe: %d %s\n"1420814209#: builtin/log.c:52914210#, c-format14211msgid "git show %s: bad file"14212msgstr "git show %s: ungültige Datei"1421314214#: builtin/log.c:544 builtin/log.c:63814215#, c-format14216msgid "could not read object %s"14217msgstr "Konnte Objekt %s nicht lesen."1421814219#: builtin/log.c:66314220#, c-format14221msgid "unknown type: %d"14222msgstr "Unbekannter Typ: %d"1422314224#: builtin/log.c:78414225msgid "format.headers without value"14226msgstr "format.headers ohne Wert"1422714228#: builtin/log.c:88514229msgid "name of output directory is too long"14230msgstr "Name des Ausgabeverzeichnisses ist zu lang."1423114232#: builtin/log.c:90114233#, c-format14234msgid "cannot open patch file %s"14235msgstr "Kann Patch-Datei %s nicht öffnen"1423614237#: builtin/log.c:91814238msgid "need exactly one range"14239msgstr "Brauche genau einen Commit-Bereich."1424014241#: builtin/log.c:92814242msgid "not a range"14243msgstr "Kein Commit-Bereich."1424414245#: builtin/log.c:105114246msgid "cover letter needs email format"14247msgstr "Anschreiben benötigt E-Mail-Format"1424814249#: builtin/log.c:105714250msgid "failed to create cover-letter file"14251msgstr "Fehler beim Erstellen der Datei für das Anschreiben."1425214253#: builtin/log.c:113614254#, c-format14255msgid "insane in-reply-to: %s"14256msgstr "ungültiges in-reply-to: %s"1425714258#: builtin/log.c:116314259msgid "git format-patch [<options>] [<since> | <revision-range>]"14260msgstr "git format-patch [<Optionen>] [<seit> | <Commitbereich>]"1426114262#: builtin/log.c:122114263msgid "two output directories?"14264msgstr "Zwei Ausgabeverzeichnisse?"1426514266#: builtin/log.c:1332 builtin/log.c:2076 builtin/log.c:2078 builtin/log.c:209014267#, c-format14268msgid "unknown commit %s"14269msgstr "Unbekannter Commit %s"1427014271#: builtin/log.c:1342 builtin/replace.c:58 builtin/replace.c:20714272#: builtin/replace.c:21014273#, c-format14274msgid "failed to resolve '%s' as a valid ref"14275msgstr "Konnte '%s' nicht als gültige Referenz auflösen."1427614277#: builtin/log.c:134714278msgid "could not find exact merge base"14279msgstr "Konnte keine exakte Merge-Basis finden."1428014281#: builtin/log.c:135114282msgid ""14283"failed to get upstream, if you want to record base commit automatically,\n"14284"please use git branch --set-upstream-to to track a remote branch.\n"14285"Or you could specify base commit by --base=<base-commit-id> manually"14286msgstr ""14287"Fehler beim Bestimmen des Upstream-Branches. Wenn Sie den Basis-Commit\n"14288"automatisch speichern lassen möchten, benutzen Sie bitte\n"14289"'git branch --set-upstream-to', um einem Remote-Branch zu folgen.\n"14290"Oder geben Sie den Basis-Commit mit '--base=<Basis-Commit-Id>' manuell an."1429114292#: builtin/log.c:137114293msgid "failed to find exact merge base"14294msgstr "Fehler beim Finden einer exakten Merge-Basis."1429514296#: builtin/log.c:138214297msgid "base commit should be the ancestor of revision list"14298msgstr "Basis-Commit sollte der Vorgänger der Revisionsliste sein."1429914300#: builtin/log.c:138614301msgid "base commit shouldn't be in revision list"14302msgstr "Basis-Commit sollte nicht in der Revisionsliste enthalten sein."1430314304#: builtin/log.c:143914305msgid "cannot get patch id"14306msgstr "kann Patch-Id nicht lesen"1430714308#: builtin/log.c:149114309msgid "failed to infer range-diff ranges"14310msgstr "Fehler beim Ableiten des range-diff-Bereichs."1431114312#: builtin/log.c:153614313msgid "use [PATCH n/m] even with a single patch"14314msgstr "[PATCH n/m] auch mit einzelnem Patch verwenden"1431514316#: builtin/log.c:153914317msgid "use [PATCH] even with multiple patches"14318msgstr "[PATCH] auch mit mehreren Patches verwenden"1431914320#: builtin/log.c:154314321msgid "print patches to standard out"14322msgstr "Ausgabe der Patches in Standard-Ausgabe"1432314324#: builtin/log.c:154514325msgid "generate a cover letter"14326msgstr "ein Deckblatt erzeugen"1432714328#: builtin/log.c:154714329msgid "use simple number sequence for output file names"14330msgstr "einfache Nummernfolge für die Namen der Ausgabedateien verwenden"1433114332#: builtin/log.c:154814333msgid "sfx"14334msgstr "Dateiendung"1433514336#: builtin/log.c:154914337msgid "use <sfx> instead of '.patch'"14338msgstr "<Dateiendung> anstatt '.patch' verwenden"1433914340#: builtin/log.c:155114341msgid "start numbering patches at <n> instead of 1"14342msgstr "die Nummerierung der Patches bei <n> anstatt bei 1 beginnen"1434314344#: builtin/log.c:155314345msgid "mark the series as Nth re-roll"14346msgstr "die Serie als n-te Fassung kennzeichnen"1434714348#: builtin/log.c:155514349msgid "Use [RFC PATCH] instead of [PATCH]"14350msgstr "[RFC PATCH] anstatt [PATCH] verwenden"1435114352#: builtin/log.c:155814353msgid "Use [<prefix>] instead of [PATCH]"14354msgstr "[<Präfix>] anstatt [PATCH] verwenden"1435514356#: builtin/log.c:156114357msgid "store resulting files in <dir>"14358msgstr "erzeugte Dateien in <Verzeichnis> speichern"1435914360#: builtin/log.c:156414361msgid "don't strip/add [PATCH]"14362msgstr "[PATCH] nicht entfernen/hinzufügen"1436314364#: builtin/log.c:156714365msgid "don't output binary diffs"14366msgstr "keine binären Unterschiede ausgeben"1436714368#: builtin/log.c:156914369msgid "output all-zero hash in From header"14370msgstr "Hash mit Nullen in \"From\"-Header ausgeben"1437114372#: builtin/log.c:157114373msgid "don't include a patch matching a commit upstream"14374msgstr ""14375"keine Patches einschließen, die einem Commit im Upstream-Branch entsprechen"1437614377#: builtin/log.c:157314378msgid "show patch format instead of default (patch + stat)"14379msgstr "Patchformat anstatt des Standards anzeigen (Patch + Zusammenfassung)"1438014381#: builtin/log.c:157514382msgid "Messaging"14383msgstr "E-Mail-Einstellungen"1438414385#: builtin/log.c:157614386msgid "header"14387msgstr "Header"1438814389#: builtin/log.c:157714390msgid "add email header"14391msgstr "E-Mail-Header hinzufügen"1439214393#: builtin/log.c:1578 builtin/log.c:158014394msgid "email"14395msgstr "E-Mail"1439614397#: builtin/log.c:157814398msgid "add To: header"14399msgstr "\"To:\"-Header hinzufügen"1440014401#: builtin/log.c:158014402msgid "add Cc: header"14403msgstr "\"Cc:\"-Header hinzufügen"1440414405#: builtin/log.c:158214406msgid "ident"14407msgstr "Ident"1440814409#: builtin/log.c:158314410msgid "set From address to <ident> (or committer ident if absent)"14411msgstr ""14412"\"From\"-Adresse auf <Ident> setzen (oder Ident des Commit-Erstellers, wenn "14413"fehlend)"1441414415#: builtin/log.c:158514416msgid "message-id"14417msgstr "message-id"1441814419#: builtin/log.c:158614420msgid "make first mail a reply to <message-id>"14421msgstr "aus erster E-Mail eine Antwort zu <message-id> machen"1442214423#: builtin/log.c:1587 builtin/log.c:159014424msgid "boundary"14425msgstr "Grenze"1442614427#: builtin/log.c:158814428msgid "attach the patch"14429msgstr "den Patch anhängen"1443014431#: builtin/log.c:159114432msgid "inline the patch"14433msgstr "den Patch direkt in die Nachricht einfügen"1443414435#: builtin/log.c:159514436msgid "enable message threading, styles: shallow, deep"14437msgstr "Nachrichtenverkettung aktivieren, Stile: shallow, deep"1443814439#: builtin/log.c:159714440msgid "signature"14441msgstr "Signatur"1444214443#: builtin/log.c:159814444msgid "add a signature"14445msgstr "eine Signatur hinzufügen"1444614447#: builtin/log.c:159914448msgid "base-commit"14449msgstr "Basis-Commit"1445014451#: builtin/log.c:160014452msgid "add prerequisite tree info to the patch series"14453msgstr "erforderliche Revisions-Informationen der Patch-Serie hinzufügen"1445414455#: builtin/log.c:160214456msgid "add a signature from a file"14457msgstr "eine Signatur aus einer Datei hinzufügen"1445814459#: builtin/log.c:160314460msgid "don't print the patch filenames"14461msgstr "keine Dateinamen der Patches anzeigen"1446214463#: builtin/log.c:160514464msgid "show progress while generating patches"14465msgstr "Forschrittsanzeige während der Erzeugung der Patches"1446614467#: builtin/log.c:160614468msgid "rev"14469msgstr "Commit"1447014471#: builtin/log.c:160714472msgid "show changes against <rev> in cover letter or single patch"14473msgstr ""14474"Änderungen gegenüber <Commit> im Deckblatt oder einzelnem Patch anzeigen"1447514476#: builtin/log.c:161014477msgid "show changes against <refspec> in cover letter or single patch"14478msgstr ""14479"Änderungen gegenüber <Refspec> im Deckblatt oder einzelnem Patch anzeigen"1448014481#: builtin/log.c:161214482msgid "percentage by which creation is weighted"14483msgstr "Prozentsatz mit welchem Erzeugung gewichtet wird"1448414485#: builtin/log.c:168714486#, c-format14487msgid "invalid ident line: %s"14488msgstr "Ungültige Identifikationszeile: %s"1448914490#: builtin/log.c:170214491msgid "-n and -k are mutually exclusive"14492msgstr "-n und -k schließen sich gegenseitig aus."1449314494#: builtin/log.c:170414495msgid "--subject-prefix/--rfc and -k are mutually exclusive"14496msgstr "--subject-prefix/--rfc und -k schließen sich gegenseitig aus."1449714498#: builtin/log.c:171214499msgid "--name-only does not make sense"14500msgstr "Die Option --name-only kann nicht verwendet werden."1450114502#: builtin/log.c:171414503msgid "--name-status does not make sense"14504msgstr "Die Option --name-status kann nicht verwendet werden."1450514506#: builtin/log.c:171614507msgid "--check does not make sense"14508msgstr "Die Option --check kann nicht verwendet werden."1450914510#: builtin/log.c:174814511msgid "standard output, or directory, which one?"14512msgstr "Standard-Ausgabe oder Verzeichnis, welches von beidem?"1451314514#: builtin/log.c:183714515msgid "--interdiff requires --cover-letter or single patch"14516msgstr "--interdiff erfordert --cover-letter oder einzelnen Patch."1451714518#: builtin/log.c:184114519msgid "Interdiff:"14520msgstr "Interdiff:"1452114522#: builtin/log.c:184214523#, c-format14524msgid "Interdiff against v%d:"14525msgstr "Interdiff gegen v%d:"1452614527#: builtin/log.c:184814528msgid "--creation-factor requires --range-diff"14529msgstr "--creation-factor erfordert --range-diff"1453014531#: builtin/log.c:185214532msgid "--range-diff requires --cover-letter or single patch"14533msgstr "--range-diff erfordert --cover-letter oder einzelnen Patch."1453414535#: builtin/log.c:186014536msgid "Range-diff:"14537msgstr "Range-Diff:"1453814539#: builtin/log.c:186114540#, c-format14541msgid "Range-diff against v%d:"14542msgstr "Range-Diff gegen v%d:"1454314544#: builtin/log.c:187214545#, c-format14546msgid "unable to read signature file '%s'"14547msgstr "Konnte Signatur-Datei '%s' nicht lesen"1454814549#: builtin/log.c:190814550msgid "Generating patches"14551msgstr "Erzeuge Patches"1455214553#: builtin/log.c:195214554msgid "failed to create output files"14555msgstr "Fehler beim Erstellen der Ausgabedateien."1455614557#: builtin/log.c:201114558msgid "git cherry [-v] [<upstream> [<head> [<limit>]]]"14559msgstr "git cherry [-v] [<Upstream> [<Branch> [<Limit>]]]"1456014561#: builtin/log.c:206514562#, c-format14563msgid ""14564"Could not find a tracked remote branch, please specify <upstream> manually.\n"14565msgstr ""14566"Konnte gefolgten Remote-Branch nicht finden, bitte geben Sie <Upstream> "14567"manuell an.\n"1456814569#: builtin/ls-files.c:47014570msgid "git ls-files [<options>] [<file>...]"14571msgstr "git ls-files [<Optionen>] [<Datei>...]"1457214573#: builtin/ls-files.c:52614574msgid "identify the file status with tags"14575msgstr "den Dateistatus mit Tags anzeigen"1457614577#: builtin/ls-files.c:52814578msgid "use lowercase letters for 'assume unchanged' files"14579msgstr ""14580"Kleinbuchstaben für Dateien mit 'assume unchanged' Markierung verwenden"1458114582#: builtin/ls-files.c:53014583msgid "use lowercase letters for 'fsmonitor clean' files"14584msgstr "Kleinbuchstaben für 'fsmonitor clean' Dateien verwenden"1458514586#: builtin/ls-files.c:53214587msgid "show cached files in the output (default)"14588msgstr "zwischengespeicherte Dateien in der Ausgabe anzeigen (Standard)"1458914590#: builtin/ls-files.c:53414591msgid "show deleted files in the output"14592msgstr "entfernte Dateien in der Ausgabe anzeigen"1459314594#: builtin/ls-files.c:53614595msgid "show modified files in the output"14596msgstr "geänderte Dateien in der Ausgabe anzeigen"1459714598#: builtin/ls-files.c:53814599msgid "show other files in the output"14600msgstr "sonstige Dateien in der Ausgabe anzeigen"1460114602#: builtin/ls-files.c:54014603msgid "show ignored files in the output"14604msgstr "ignorierte Dateien in der Ausgabe anzeigen"1460514606#: builtin/ls-files.c:54314607msgid "show staged contents' object name in the output"14608msgstr ""14609"Objektnamen von Inhalten, die zum Commit vorgemerkt sind, in der Ausgabe "14610"anzeigen"1461114612#: builtin/ls-files.c:54514613msgid "show files on the filesystem that need to be removed"14614msgstr "Dateien im Dateisystem, die gelöscht werden müssen, anzeigen"1461514616#: builtin/ls-files.c:54714617msgid "show 'other' directories' names only"14618msgstr "nur Namen von 'sonstigen' Verzeichnissen anzeigen"1461914620#: builtin/ls-files.c:54914621msgid "show line endings of files"14622msgstr "Zeilenenden von Dateien anzeigen"1462314624#: builtin/ls-files.c:55114625msgid "don't show empty directories"14626msgstr "keine leeren Verzeichnisse anzeigen"1462714628#: builtin/ls-files.c:55414629msgid "show unmerged files in the output"14630msgstr "nicht zusammengeführte Dateien in der Ausgabe anzeigen"1463114632#: builtin/ls-files.c:55614633msgid "show resolve-undo information"14634msgstr "'resolve-undo' Informationen anzeigen"1463514636#: builtin/ls-files.c:55814637msgid "skip files matching pattern"14638msgstr "Dateien auslassen, die einem Muster entsprechen"1463914640#: builtin/ls-files.c:56114641msgid "exclude patterns are read from <file>"14642msgstr "Muster, gelesen von <Datei>, ausschließen"1464314644#: builtin/ls-files.c:56414645msgid "read additional per-directory exclude patterns in <file>"14646msgstr "zusätzliche pro-Verzeichnis Auschlussmuster aus <Datei> auslesen"1464714648#: builtin/ls-files.c:56614649msgid "add the standard git exclusions"14650msgstr "die standardmäßigen Git-Ausschlüsse hinzufügen"1465114652#: builtin/ls-files.c:57014653msgid "make the output relative to the project top directory"14654msgstr "Ausgabe relativ zum Projektverzeichnis"1465514656#: builtin/ls-files.c:57314657msgid "recurse through submodules"14658msgstr "Rekursion in Submodulen durchführen"1465914660#: builtin/ls-files.c:57514661msgid "if any <file> is not in the index, treat this as an error"14662msgstr "als Fehler behandeln, wenn sich eine <Datei> nicht im Index befindet"1466314664#: builtin/ls-files.c:57614665msgid "tree-ish"14666msgstr "Commit-Referenz"1466714668#: builtin/ls-files.c:57714669msgid "pretend that paths removed since <tree-ish> are still present"14670msgstr ""14671"vorgeben, dass Pfade, die seit <Commit-Referenz> gelöscht wurden, immer noch "14672"vorhanden sind"1467314674#: builtin/ls-files.c:57914675msgid "show debugging data"14676msgstr "Ausgaben zur Fehlersuche anzeigen"1467714678#: builtin/ls-remote.c:914679msgid ""14680"git ls-remote [--heads] [--tags] [--refs] [--upload-pack=<exec>]\n"14681" [-q | --quiet] [--exit-code] [--get-url]\n"14682" [--symref] [<repository> [<refs>...]]"14683msgstr ""14684"git ls-remote [--heads] [--tags] [--refs] [--upload-pack=<Programm>]\n"14685" [-q | --quiet] [--exit-code] [--get-url]\n"14686" [--symref] [<Repository> [<Referenzen>...]]"1468714688#: builtin/ls-remote.c:5914689msgid "do not print remote URL"14690msgstr "URL des Remote-Repositories nicht ausgeben"1469114692#: builtin/ls-remote.c:60 builtin/ls-remote.c:62 builtin/rebase.c:145814693msgid "exec"14694msgstr "Programm"1469514696#: builtin/ls-remote.c:61 builtin/ls-remote.c:6314697msgid "path of git-upload-pack on the remote host"14698msgstr "Pfad zu \"git-upload-pack\" auf der Gegenseite"1469914700#: builtin/ls-remote.c:6514701msgid "limit to tags"14702msgstr "auf Tags einschränken"1470314704#: builtin/ls-remote.c:6614705msgid "limit to heads"14706msgstr "auf Branches einschränken"1470714708#: builtin/ls-remote.c:6714709msgid "do not show peeled tags"14710msgstr "keine Tags anzeigen, die andere Tags enthalten"1471114712#: builtin/ls-remote.c:6914713msgid "take url.<base>.insteadOf into account"14714msgstr "url.<Basis>.insteadOf berücksichtigen"1471514716#: builtin/ls-remote.c:7214717msgid "exit with exit code 2 if no matching refs are found"14718msgstr ""14719"mit Rückkehrwert 2 beenden, wenn keine übereinstimmenden Referenzen\n"14720"gefunden wurden"1472114722#: builtin/ls-remote.c:7514723msgid "show underlying ref in addition to the object pointed by it"14724msgstr "zusätzlich zum Objekt die darauf verweisenden Referenzen anzeigen"1472514726#: builtin/ls-tree.c:3014727msgid "git ls-tree [<options>] <tree-ish> [<path>...]"14728msgstr "git ls-tree [<Optionen>] <Commit-Referenz> [<Pfad>...]"1472914730#: builtin/ls-tree.c:12814731msgid "only show trees"14732msgstr "nur Verzeichnisse anzeigen"1473314734#: builtin/ls-tree.c:13014735msgid "recurse into subtrees"14736msgstr "Rekursion in Unterverzeichnissen durchführen"1473714738#: builtin/ls-tree.c:13214739msgid "show trees when recursing"14740msgstr "Verzeichnisse bei Rekursion anzeigen"1474114742#: builtin/ls-tree.c:13514743msgid "terminate entries with NUL byte"14744msgstr "Einträge mit NUL-Byte abschließen"1474514746#: builtin/ls-tree.c:13614747msgid "include object size"14748msgstr "Objektgröße einschließen"1474914750#: builtin/ls-tree.c:138 builtin/ls-tree.c:14014751msgid "list only filenames"14752msgstr "nur Dateinamen auflisten"1475314754#: builtin/ls-tree.c:14314755msgid "use full path names"14756msgstr "vollständige Pfadnamen verwenden"1475714758#: builtin/ls-tree.c:14514759msgid "list entire tree; not just current directory (implies --full-name)"14760msgstr ""14761"das gesamte Verzeichnis auflisten; nicht nur das aktuelle Verzeichnis "14762"(impliziert --full-name)"1476314764#: builtin/mailsplit.c:24114765#, c-format14766msgid "empty mbox: '%s'"14767msgstr "Leere mbox: '%s'"1476814769#: builtin/merge.c:5414770msgid "git merge [<options>] [<commit>...]"14771msgstr "git merge [<Optionen>] [<Commit>...]"1477214773#: builtin/merge.c:5514774msgid "git merge --abort"14775msgstr "git merge --abort"1477614777#: builtin/merge.c:5614778msgid "git merge --continue"14779msgstr "git merge --continue"1478014781#: builtin/merge.c:11614782msgid "switch `m' requires a value"14783msgstr "Schalter 'm' erfordert einen Wert."1478414785#: builtin/merge.c:13914786#, c-format14787msgid "option `%s' requires a value"14788msgstr "Option `%s' erfordert einen Wert."1478914790#: builtin/merge.c:18514791#, c-format14792msgid "Could not find merge strategy '%s'.\n"14793msgstr "Konnte Merge-Strategie '%s' nicht finden.\n"1479414795#: builtin/merge.c:18614796#, c-format14797msgid "Available strategies are:"14798msgstr "Verfügbare Strategien sind:"1479914800#: builtin/merge.c:19114801#, c-format14802msgid "Available custom strategies are:"14803msgstr "Verfügbare benutzerdefinierte Strategien sind:"1480414805#: builtin/merge.c:242 builtin/pull.c:15014806msgid "do not show a diffstat at the end of the merge"14807msgstr "keine Zusammenfassung der Unterschiede am Schluss des Merges anzeigen"1480814809#: builtin/merge.c:245 builtin/pull.c:15314810msgid "show a diffstat at the end of the merge"14811msgstr "eine Zusammenfassung der Unterschiede am Schluss des Merges anzeigen"1481214813#: builtin/merge.c:246 builtin/pull.c:15614814msgid "(synonym to --stat)"14815msgstr "(Synonym für --stat)"1481614817#: builtin/merge.c:248 builtin/pull.c:15914818msgid "add (at most <n>) entries from shortlog to merge commit message"14819msgstr ""14820"(höchstens <n>) Einträge von \"shortlog\" zur Beschreibung des Merge-Commits "14821"hinzufügen"1482214823#: builtin/merge.c:251 builtin/pull.c:16514824msgid "create a single commit instead of doing a merge"14825msgstr "einen einzelnen Commit anstatt eines Merges erzeugen"1482614827#: builtin/merge.c:253 builtin/pull.c:16814828msgid "perform a commit if the merge succeeds (default)"14829msgstr "einen Commit durchführen, wenn der Merge erfolgreich war (Standard)"1483014831#: builtin/merge.c:255 builtin/pull.c:17114832msgid "edit message before committing"14833msgstr "Bearbeitung der Beschreibung vor dem Commit"1483414835#: builtin/merge.c:25714836msgid "allow fast-forward (default)"14837msgstr "Vorspulen erlauben (Standard)"1483814839#: builtin/merge.c:259 builtin/pull.c:17814840msgid "abort if fast-forward is not possible"14841msgstr "abbrechen, wenn kein Vorspulen möglich ist"1484214843#: builtin/merge.c:263 builtin/pull.c:18114844msgid "verify that the named commit has a valid GPG signature"14845msgstr "den genannten Commit auf eine gültige GPG-Signatur überprüfen"1484614847#: builtin/merge.c:264 builtin/notes.c:787 builtin/pull.c:18514848#: builtin/rebase.c:492 builtin/rebase.c:1471 builtin/revert.c:11314849msgid "strategy"14850msgstr "Strategie"1485114852#: builtin/merge.c:265 builtin/pull.c:18614853msgid "merge strategy to use"14854msgstr "zu verwendende Merge-Strategie"1485514856#: builtin/merge.c:266 builtin/pull.c:18914857msgid "option=value"14858msgstr "Option=Wert"1485914860#: builtin/merge.c:267 builtin/pull.c:19014861msgid "option for selected merge strategy"14862msgstr "Option für ausgewählte Merge-Strategie"1486314864#: builtin/merge.c:26914865msgid "merge commit message (for a non-fast-forward merge)"14866msgstr ""14867"Commit-Beschreibung zusammenführen (für einen Merge, der kein Vorspulen war)"1486814869#: builtin/merge.c:27614870msgid "abort the current in-progress merge"14871msgstr "den sich im Gange befindlichen Merge abbrechen"1487214873#: builtin/merge.c:27814874msgid "continue the current in-progress merge"14875msgstr "den sich im Gange befindlichen Merge fortsetzen"1487614877#: builtin/merge.c:280 builtin/pull.c:19714878msgid "allow merging unrelated histories"14879msgstr "erlaube das Zusammenführen von nicht zusammenhängenden Historien"1488014881#: builtin/merge.c:28614882msgid "verify commit-msg hook"14883msgstr "commit-msg Hook überprüfen"1488414885#: builtin/merge.c:31114886msgid "could not run stash."14887msgstr "Konnte \"stash\" nicht ausführen."1488814889#: builtin/merge.c:31614890msgid "stash failed"14891msgstr "\"stash\" fehlgeschlagen"1489214893#: builtin/merge.c:32114894#, c-format14895msgid "not a valid object: %s"14896msgstr "kein gültiges Objekt: %s"1489714898#: builtin/merge.c:343 builtin/merge.c:36014899msgid "read-tree failed"14900msgstr "read-tree fehlgeschlagen"1490114902#: builtin/merge.c:39014903msgid " (nothing to squash)"14904msgstr " (nichts zu quetschen)"1490514906#: builtin/merge.c:40114907#, c-format14908msgid "Squash commit -- not updating HEAD\n"14909msgstr "Quetsche Commit -- HEAD wird nicht aktualisiert\n"1491014911#: builtin/merge.c:45114912#, c-format14913msgid "No merge message -- not updating HEAD\n"14914msgstr "Keine Merge-Commit-Beschreibung -- HEAD wird nicht aktualisiert\n"1491514916#: builtin/merge.c:50214917#, c-format14918msgid "'%s' does not point to a commit"14919msgstr "'%s' zeigt auf keinen Commit"1492014921#: builtin/merge.c:58914922#, c-format14923msgid "Bad branch.%s.mergeoptions string: %s"14924msgstr "Ungültiger branch.%s.mergeoptions String: %s"1492514926#: builtin/merge.c:71214927msgid "Not handling anything other than two heads merge."14928msgstr "Es wird nur der Merge von zwei Branches behandelt."1492914930#: builtin/merge.c:72614931#, c-format14932msgid "Unknown option for merge-recursive: -X%s"14933msgstr "Unbekannte Option für merge-recursive: -X%s"1493414935#: builtin/merge.c:74114936#, c-format14937msgid "unable to write %s"14938msgstr "konnte %s nicht schreiben"1493914940#: builtin/merge.c:79314941#, c-format14942msgid "Could not read from '%s'"14943msgstr "konnte nicht von '%s' lesen"1494414945#: builtin/merge.c:80214946#, c-format14947msgid "Not committing merge; use 'git commit' to complete the merge.\n"14948msgstr ""14949"Merge wurde nicht committet; benutzen Sie 'git commit', um den Merge "14950"abzuschließen.\n"1495114952#: builtin/merge.c:80814953msgid ""14954"Please enter a commit message to explain why this merge is necessary,\n"14955"especially if it merges an updated upstream into a topic branch.\n"14956"\n"14957msgstr ""14958"Bitte geben Sie eine Commit-Beschreibung ein, um zu erklären, warum dieser\n"14959"Merge erforderlich ist, insbesondere wenn es einen aktualisierten\n"14960"Upstream-Branch mit einem Thema-Branch zusammenführt.\n"14961"\n"1496214963#: builtin/merge.c:81314964msgid "An empty message aborts the commit.\n"14965msgstr "Eine leere Commit-Beschreibung bricht den Commit ab.\n"1496614967#: builtin/merge.c:81614968#, c-format14969msgid ""14970"Lines starting with '%c' will be ignored, and an empty message aborts\n"14971"the commit.\n"14972msgstr ""14973"Zeilen, die mit '%c' beginnen, werden ignoriert,\n"14974"und eine leere Beschreibung bricht den Commit ab.\n"1497514976#: builtin/merge.c:85714977msgid "Empty commit message."14978msgstr "Leere Commit-Beschreibung"1497914980#: builtin/merge.c:87614981#, c-format14982msgid "Wonderful.\n"14983msgstr "Wunderbar.\n"1498414985#: builtin/merge.c:93614986#, c-format14987msgid "Automatic merge failed; fix conflicts and then commit the result.\n"14988msgstr ""14989"Automatischer Merge fehlgeschlagen; beheben Sie die Konflikte und committen "14990"Sie dann das Ergebnis.\n"1499114992#: builtin/merge.c:97514993msgid "No current branch."14994msgstr "Sie befinden sich auf keinem Branch."1499514996#: builtin/merge.c:97714997msgid "No remote for the current branch."14998msgstr "Kein Remote-Repository für den aktuellen Branch."1499915000#: builtin/merge.c:97915001msgid "No default upstream defined for the current branch."15002msgstr ""15003"Es ist kein Standard-Upstream-Branch für den aktuellen Branch definiert."1500415005#: builtin/merge.c:98415006#, c-format15007msgid "No remote-tracking branch for %s from %s"15008msgstr "Kein Remote-Tracking-Branch für %s von %s"1500915010#: builtin/merge.c:104115011#, c-format15012msgid "Bad value '%s' in environment '%s'"15013msgstr "Fehlerhafter Wert '%s' in Umgebungsvariable '%s'"1501415015#: builtin/merge.c:114415016#, c-format15017msgid "not something we can merge in %s: %s"15018msgstr "nichts was wir in %s zusammenführen können: %s"1501915020#: builtin/merge.c:117815021msgid "not something we can merge"15022msgstr "nichts was wir zusammenführen können"1502315024#: builtin/merge.c:128115025msgid "--abort expects no arguments"15026msgstr "--abort akzeptiert keine Argumente"1502715028#: builtin/merge.c:128515029msgid "There is no merge to abort (MERGE_HEAD missing)."15030msgstr "Es gibt keinen Merge abzubrechen (MERGE_HEAD fehlt)"1503115032#: builtin/merge.c:129715033msgid "--continue expects no arguments"15034msgstr "--continue erwartet keine Argumente"1503515036#: builtin/merge.c:130115037msgid "There is no merge in progress (MERGE_HEAD missing)."15038msgstr "Es ist kein Merge im Gange (MERGE_HEAD fehlt)."1503915040#: builtin/merge.c:131715041msgid ""15042"You have not concluded your merge (MERGE_HEAD exists).\n"15043"Please, commit your changes before you merge."15044msgstr ""15045"Sie haben Ihren Merge nicht abgeschlossen (MERGE_HEAD existiert).\n"15046"Bitte committen Sie Ihre Änderungen, bevor Sie den Merge ausführen."1504715048#: builtin/merge.c:132415049msgid ""15050"You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"15051"Please, commit your changes before you merge."15052msgstr ""15053"Sie haben \"cherry-pick\" nicht abgeschlossen (CHERRY_PICK_HEAD existiert).\n"15054"Bitte committen Sie Ihre Änderungen, bevor Sie den Merge ausführen."1505515056#: builtin/merge.c:132715057msgid "You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."15058msgstr ""15059"Sie haben \"cherry-pick\" nicht abgeschlossen (CHERRY_PICK_HEAD existiert)."1506015061#: builtin/merge.c:134115062msgid "You cannot combine --squash with --no-ff."15063msgstr "Sie können --squash nicht mit --no-ff kombinieren."1506415065#: builtin/merge.c:134915066msgid "No commit specified and merge.defaultToUpstream not set."15067msgstr "Kein Commit angegeben und merge.defaultToUpstream ist nicht gesetzt."1506815069#: builtin/merge.c:136615070msgid "Squash commit into empty head not supported yet"15071msgstr ""15072"Bin auf einem Commit, der noch geboren wird; kann \"squash\" nicht ausführen."1507315074#: builtin/merge.c:136815075msgid "Non-fast-forward commit does not make sense into an empty head"15076msgstr ""15077"Nicht vorzuspulender Commit kann nicht in einem leeren Branch verwendet "15078"werden."1507915080#: builtin/merge.c:137315081#, c-format15082msgid "%s - not something we can merge"15083msgstr "%s - nichts was wir zusammenführen können"1508415085#: builtin/merge.c:137515086msgid "Can merge only exactly one commit into empty head"15087msgstr "Kann nur exakt einen Commit in einem leeren Branch zusammenführen."1508815089#: builtin/merge.c:145415090msgid "refusing to merge unrelated histories"15091msgstr "Verweigere den Merge von nicht zusammenhängenden Historien."1509215093#: builtin/merge.c:146315094msgid "Already up to date."15095msgstr "Bereits aktuell."1509615097#: builtin/merge.c:147315098#, c-format15099msgid "Updating %s..%s\n"15100msgstr "Aktualisiere %s..%s\n"1510115102#: builtin/merge.c:151515103#, c-format15104msgid "Trying really trivial in-index merge...\n"15105msgstr "Probiere wirklich trivialen \"in-index\"-Merge ...\n"1510615107#: builtin/merge.c:152215108#, c-format15109msgid "Nope.\n"15110msgstr "Nein.\n"1511115112#: builtin/merge.c:154715113msgid "Already up to date. Yeeah!"15114msgstr "Bereits aktuell."1511515116#: builtin/merge.c:155315117msgid "Not possible to fast-forward, aborting."15118msgstr "Vorspulen nicht möglich, breche ab."1511915120#: builtin/merge.c:1576 builtin/merge.c:165515121#, c-format15122msgid "Rewinding the tree to pristine...\n"15123msgstr "Rücklauf des Verzeichnisses bis zum Ursprung ...\n"1512415125#: builtin/merge.c:158015126#, c-format15127msgid "Trying merge strategy %s...\n"15128msgstr "Probiere Merge-Strategie %s ...\n"1512915130#: builtin/merge.c:164615131#, c-format15132msgid "No merge strategy handled the merge.\n"15133msgstr "Keine Merge-Strategie behandelt diesen Merge.\n"1513415135#: builtin/merge.c:164815136#, c-format15137msgid "Merge with strategy %s failed.\n"15138msgstr "Merge mit Strategie %s fehlgeschlagen.\n"1513915140#: builtin/merge.c:165715141#, c-format15142msgid "Using the %s to prepare resolving by hand.\n"15143msgstr "Benutzen Sie \"%s\", um die Auflösung per Hand vorzubereiten.\n"1514415145#: builtin/merge.c:166915146#, c-format15147msgid "Automatic merge went well; stopped before committing as requested\n"15148msgstr ""15149"Automatischer Merge abgeschlossen; halte, wie gewünscht, vor dem Commit an\n"1515015151#: builtin/merge-base.c:3215152msgid "git merge-base [-a | --all] <commit> <commit>..."15153msgstr "git merge-base [-a | --all] <Commit> <Commit>..."1515415155#: builtin/merge-base.c:3315156msgid "git merge-base [-a | --all] --octopus <commit>..."15157msgstr "git merge-base [-a | --all] --octopus <Commit>..."1515815159#: builtin/merge-base.c:3415160msgid "git merge-base --independent <commit>..."15161msgstr "git merge-base --independent <Commit>..."1516215163#: builtin/merge-base.c:3515164msgid "git merge-base --is-ancestor <commit> <commit>"15165msgstr "git merge-base --is-ancestor <Commit> <Commit>"1516615167#: builtin/merge-base.c:3615168msgid "git merge-base --fork-point <ref> [<commit>]"15169msgstr "git merge-base --fork-point <Referenz> [<Commit>]"1517015171#: builtin/merge-base.c:15315172msgid "output all common ancestors"15173msgstr "Ausgabe aller gemeinsamen Vorgänger-Commits"1517415175#: builtin/merge-base.c:15515176msgid "find ancestors for a single n-way merge"15177msgstr "Vorgänger-Commits für einen einzelnen n-Wege-Merge finden"1517815179#: builtin/merge-base.c:15715180msgid "list revs not reachable from others"15181msgstr "Commits auflisten, die nicht durch Andere erreichbar sind"1518215183#: builtin/merge-base.c:15915184msgid "is the first one ancestor of the other?"15185msgstr "ist der Erste ein Vorgänger-Commit des Anderen?"1518615187#: builtin/merge-base.c:16115188msgid "find where <commit> forked from reflog of <ref>"15189msgstr "<Commit> finden, von wo Reflog von <Referenz> abgespalten wurde"1519015191#: builtin/merge-file.c:915192msgid ""15193"git merge-file [<options>] [-L <name1> [-L <orig> [-L <name2>]]] <file1> "15194"<orig-file> <file2>"15195msgstr ""15196"git merge-file [<Optionen>] [-L <Name1> [-L <orig> [-L <Name2>]]] <Datei1> "15197"<orig-Datei> <Datei2>"1519815199#: builtin/merge-file.c:3515200msgid "send results to standard output"15201msgstr "Ergebnisse zur Standard-Ausgabe senden"1520215203#: builtin/merge-file.c:3615204msgid "use a diff3 based merge"15205msgstr "einen diff3 basierten Merge verwenden"1520615207#: builtin/merge-file.c:3715208msgid "for conflicts, use our version"15209msgstr "bei Konflikten unsere Variante verwenden"1521015211#: builtin/merge-file.c:3915212msgid "for conflicts, use their version"15213msgstr "bei Konflikten ihre Variante verwenden"1521415215#: builtin/merge-file.c:4115216msgid "for conflicts, use a union version"15217msgstr "bei Konflikten eine gemeinsame Variante verwenden"1521815219#: builtin/merge-file.c:4415220msgid "for conflicts, use this marker size"15221msgstr "bei Konflikten diese Kennzeichnungslänge verwenden"1522215223#: builtin/merge-file.c:4515224msgid "do not warn about conflicts"15225msgstr "keine Warnung bei Konflikten"1522615227#: builtin/merge-file.c:4715228msgid "set labels for file1/orig-file/file2"15229msgstr "Beschriftung für Datei1/orig-Datei/Datei2 setzen"1523015231#: builtin/merge-recursive.c:4615232#, c-format15233msgid "unknown option %s"15234msgstr "unbekannte Option: %s"1523515236#: builtin/merge-recursive.c:5215237#, c-format15238msgid "could not parse object '%s'"15239msgstr "Konnte Objekt '%s' nicht parsen."1524015241#: builtin/merge-recursive.c:5615242#, c-format15243msgid "cannot handle more than %d base. Ignoring %s."15244msgid_plural "cannot handle more than %d bases. Ignoring %s."15245msgstr[0] "kann nicht mit mehr als %d Merge-Basis umgehen. Ignoriere %s."15246msgstr[1] "kann nicht mit mehr als %d Merge-Basen umgehen. Ignoriere %s."1524715248#: builtin/merge-recursive.c:6415249msgid "not handling anything other than two heads merge."15250msgstr "Es wird nur der Merge von zwei Branches behandelt."1525115252#: builtin/merge-recursive.c:70 builtin/merge-recursive.c:7215253#, c-format15254msgid "could not resolve ref '%s'"15255msgstr "Konnte Referenz '%s' nicht auflösen"1525615257#: builtin/merge-recursive.c:7815258#, c-format15259msgid "Merging %s with %s\n"15260msgstr "Führe %s mit %s zusammen\n"1526115262#: builtin/mktree.c:6615263msgid "git mktree [-z] [--missing] [--batch]"15264msgstr "git mktree [-z] [--missing] [--batch]"1526515266#: builtin/mktree.c:15415267msgid "input is NUL terminated"15268msgstr "Eingabe ist durch NUL-Zeichen abgeschlossen"1526915270#: builtin/mktree.c:155 builtin/write-tree.c:2615271msgid "allow missing objects"15272msgstr "fehlende Objekte erlauben"1527315274#: builtin/mktree.c:15615275msgid "allow creation of more than one tree"15276msgstr "die Erstellung von mehr als einem \"Tree\"-Objekt erlauben"1527715278#: builtin/multi-pack-index.c:915279msgid "git multi-pack-index [--object-dir=<dir>] (write|verify)"15280msgstr "git multi-pack-index [--object-dir=<Verzeichnis>] (write|verify)"1528115282#: builtin/multi-pack-index.c:2215283msgid "object directory containing set of packfile and pack-index pairs"15284msgstr ""15285"Objekt-Verzeichnis, welches Paare von Packdateien und pack-index enthält"1528615287#: builtin/multi-pack-index.c:40 builtin/prune-packed.c:6715288msgid "too many arguments"15289msgstr "Zu viele Argumente."1529015291#: builtin/multi-pack-index.c:5115292#, c-format15293msgid "unrecognized verb: %s"15294msgstr "Nicht erkanntes Verb: %s"1529515296#: builtin/mv.c:1815297msgid "git mv [<options>] <source>... <destination>"15298msgstr "git mv [<Optionen>] <Quelle>... <Ziel>"1529915300#: builtin/mv.c:8315301#, c-format15302msgid "Directory %s is in index and no submodule?"15303msgstr "Verzeichnis %s ist zum Commit vorgemerkt und kein Submodul?"1530415305#: builtin/mv.c:8515306msgid "Please stage your changes to .gitmodules or stash them to proceed"15307msgstr ""15308"Bitte merken Sie Ihre Änderungen in .gitmodules zum Commit vor oder "15309"benutzen\n"15310"Sie \"stash\", um fortzufahren."1531115312#: builtin/mv.c:10315313#, c-format15314msgid "%.*s is in index"15315msgstr "%.*s ist zum Commit vorgemerkt"1531615317#: builtin/mv.c:12515318msgid "force move/rename even if target exists"15319msgstr "Verschieben/Umbenennen erzwingen, auch wenn das Ziel existiert"1532015321#: builtin/mv.c:12715322msgid "skip move/rename errors"15323msgstr "Fehler beim Verschieben oder Umbenennen überspringen"1532415325#: builtin/mv.c:16915326#, c-format15327msgid "destination '%s' is not a directory"15328msgstr "Ziel '%s' ist kein Verzeichnis"1532915330#: builtin/mv.c:18015331#, c-format15332msgid "Checking rename of '%s' to '%s'\n"15333msgstr "Prüfe Umbenennung von '%s' nach '%s'\n"1533415335#: builtin/mv.c:18415336msgid "bad source"15337msgstr "ungültige Quelle"1533815339#: builtin/mv.c:18715340msgid "can not move directory into itself"15341msgstr "kann Verzeichnis nicht in sich selbst verschieben"1534215343#: builtin/mv.c:19015344msgid "cannot move directory over file"15345msgstr "kann Verzeichnis nicht über Datei verschieben"1534615347#: builtin/mv.c:19915348msgid "source directory is empty"15349msgstr "Quellverzeichnis ist leer"1535015351#: builtin/mv.c:22415352msgid "not under version control"15353msgstr "nicht unter Versionskontrolle"1535415355#: builtin/mv.c:22715356msgid "destination exists"15357msgstr "Ziel existiert bereits"1535815359#: builtin/mv.c:23515360#, c-format15361msgid "overwriting '%s'"15362msgstr "überschreibe '%s'"1536315364#: builtin/mv.c:23815365msgid "Cannot overwrite"15366msgstr "Kann nicht überschreiben"1536715368#: builtin/mv.c:24115369msgid "multiple sources for the same target"15370msgstr "mehrere Quellen für dasselbe Ziel"1537115372#: builtin/mv.c:24315373msgid "destination directory does not exist"15374msgstr "Zielverzeichnis existiert nicht"1537515376#: builtin/mv.c:25015377#, c-format15378msgid "%s, source=%s, destination=%s"15379msgstr "%s, Quelle=%s, Ziel=%s"1538015381#: builtin/mv.c:27115382#, c-format15383msgid "Renaming %s to %s\n"15384msgstr "Benenne %s nach %s um\n"1538515386#: builtin/mv.c:277 builtin/remote.c:717 builtin/repack.c:51615387#, c-format15388msgid "renaming '%s' failed"15389msgstr "Umbenennung von '%s' fehlgeschlagen"1539015391#: builtin/name-rev.c:35515392msgid "git name-rev [<options>] <commit>..."15393msgstr "git name-rev [<Optionen>] <Commit>..."1539415395#: builtin/name-rev.c:35615396msgid "git name-rev [<options>] --all"15397msgstr "git name-rev [<Optionen>] --all"1539815399#: builtin/name-rev.c:35715400msgid "git name-rev [<options>] --stdin"15401msgstr "git name-rev [<Optionen>] --stdin"1540215403#: builtin/name-rev.c:41515404msgid "print only names (no SHA-1)"15405msgstr "nur Namen anzeigen (keine SHA-1)"1540615407#: builtin/name-rev.c:41615408msgid "only use tags to name the commits"15409msgstr "nur Tags verwenden, um die Commits zu benennen"1541015411#: builtin/name-rev.c:41815412msgid "only use refs matching <pattern>"15413msgstr "nur Referenzen verwenden, die <Muster> entsprechen"1541415415#: builtin/name-rev.c:42015416msgid "ignore refs matching <pattern>"15417msgstr "ignoriere Referenzen die <Muster> entsprechen"1541815419#: builtin/name-rev.c:42215420msgid "list all commits reachable from all refs"15421msgstr "alle Commits auflisten, die von allen Referenzen erreichbar sind"1542215423#: builtin/name-rev.c:42315424msgid "read from stdin"15425msgstr "von der Standard-Eingabe lesen"1542615427#: builtin/name-rev.c:42415428msgid "allow to print `undefined` names (default)"15429msgstr "Ausgabe von `undefinierten` Namen erlauben (Standard)"1543015431#: builtin/name-rev.c:43015432msgid "dereference tags in the input (internal use)"15433msgstr "Tags in der Eingabe dereferenzieren (interne Verwendung)"1543415435#: builtin/notes.c:2815436msgid "git notes [--ref <notes-ref>] [list [<object>]]"15437msgstr "git notes [--ref <Notiz-Referenz>] [list [<Objekt>]]"1543815439#: builtin/notes.c:2915440msgid ""15441"git notes [--ref <notes-ref>] add [-f] [--allow-empty] [-m <msg> | -F <file> "15442"| (-c | -C) <object>] [<object>]"15443msgstr ""15444"git notes [--ref <Notiz-Referenz>] add [-f] [--allow-empty] [-m "15445"<Beschreibung> | -F <Datei> | (-c | -C) <Objekt>] [<Objekt>]"1544615447#: builtin/notes.c:3015448msgid "git notes [--ref <notes-ref>] copy [-f] <from-object> <to-object>"15449msgstr ""15450"git notes [--ref <Notiz-Referenz>] copy [-f] <von-Objekt> <nach-Objekt>"1545115452#: builtin/notes.c:3115453msgid ""15454"git notes [--ref <notes-ref>] append [--allow-empty] [-m <msg> | -F <file> | "15455"(-c | -C) <object>] [<object>]"15456msgstr ""15457"git notes [--ref <Notiz-Referenz>] append [--allow-empty] [-m <Beschreibung> "15458"| -F <Datei> | (-c | -C) <Objekt>] [<Objekt>]"1545915460#: builtin/notes.c:3215461msgid "git notes [--ref <notes-ref>] edit [--allow-empty] [<object>]"15462msgstr "git notes [--ref <Notiz-Referenz>] edit [--allow-empty] [<Objekt>]"1546315464#: builtin/notes.c:3315465msgid "git notes [--ref <notes-ref>] show [<object>]"15466msgstr "git notes [--ref <Notiz-Referenz>] show [<Objekt>]"1546715468#: builtin/notes.c:3415469msgid ""15470"git notes [--ref <notes-ref>] merge [-v | -q] [-s <strategy>] <notes-ref>"15471msgstr ""15472"git notes [--ref <Notiz-Referenz>] merge [-v | -q] [-s <Strategie>] <Notiz-"15473"Referenz>"1547415475#: builtin/notes.c:3515476msgid "git notes merge --commit [-v | -q]"15477msgstr "git notes merge --commit [-v | -q]"1547815479#: builtin/notes.c:3615480msgid "git notes merge --abort [-v | -q]"15481msgstr "git notes merge --abort [-v | -q]"1548215483#: builtin/notes.c:3715484msgid "git notes [--ref <notes-ref>] remove [<object>...]"15485msgstr "git notes [--ref <Notiz-Referenz>] remove [<Objekt>...]"1548615487#: builtin/notes.c:3815488msgid "git notes [--ref <notes-ref>] prune [-n] [-v]"15489msgstr "git notes [--ref <Notiz-Referenz>] prune [-n] [-v]"1549015491#: builtin/notes.c:3915492msgid "git notes [--ref <notes-ref>] get-ref"15493msgstr "git notes [--ref <Notiz-Referenz>] get-ref"1549415495#: builtin/notes.c:4415496msgid "git notes [list [<object>]]"15497msgstr "git notes [list [<Objekt>]]"1549815499#: builtin/notes.c:4915500msgid "git notes add [<options>] [<object>]"15501msgstr "git notes add [<Optionen>] [<Objekt>]"1550215503#: builtin/notes.c:5415504msgid "git notes copy [<options>] <from-object> <to-object>"15505msgstr "git notes copy [<Optionen>] <von-Objekt> <nach-Objekt>"1550615507#: builtin/notes.c:5515508msgid "git notes copy --stdin [<from-object> <to-object>]..."15509msgstr "git notes copy --stdin [<von-Objekt> <nach-Objekt>]..."1551015511#: builtin/notes.c:6015512msgid "git notes append [<options>] [<object>]"15513msgstr "git notes append [<Optionen>] [<Objekt>]"1551415515#: builtin/notes.c:6515516msgid "git notes edit [<object>]"15517msgstr "git notes edit [<Objekt>]"1551815519#: builtin/notes.c:7015520msgid "git notes show [<object>]"15521msgstr "git notes show [<Objekt>]"1552215523#: builtin/notes.c:7515524msgid "git notes merge [<options>] <notes-ref>"15525msgstr "git notes merge [<Optionen>] <Notiz-Referenz>"1552615527#: builtin/notes.c:7615528msgid "git notes merge --commit [<options>]"15529msgstr "git notes merge --commit [<Optionen>]"1553015531#: builtin/notes.c:7715532msgid "git notes merge --abort [<options>]"15533msgstr "git notes merge --abort [<Optionen>]"1553415535#: builtin/notes.c:8215536msgid "git notes remove [<object>]"15537msgstr "git notes remove [<Objekt>]"1553815539#: builtin/notes.c:8715540msgid "git notes prune [<options>]"15541msgstr "git notes prune [<Optionen>]"1554215543#: builtin/notes.c:9215544msgid "git notes get-ref"15545msgstr "git notes get-ref"1554615547#: builtin/notes.c:9715548msgid "Write/edit the notes for the following object:"15549msgstr "Schreiben/Bearbeiten der Notizen für das folgende Objekt:"1555015551#: builtin/notes.c:15015552#, c-format15553msgid "unable to start 'show' for object '%s'"15554msgstr "konnte 'show' für Objekt '%s' nicht starten"1555515556#: builtin/notes.c:15415557msgid "could not read 'show' output"15558msgstr "Konnte Ausgabe von 'show' nicht lesen."1555915560#: builtin/notes.c:16215561#, c-format15562msgid "failed to finish 'show' for object '%s'"15563msgstr "konnte 'show' für Objekt '%s' nicht abschließen"1556415565#: builtin/notes.c:19715566msgid "please supply the note contents using either -m or -F option"15567msgstr ""15568"Bitte liefern Sie die Notiz-Inhalte unter Verwendung der Option -m oder -F."1556915570#: builtin/notes.c:20615571msgid "unable to write note object"15572msgstr "Konnte Notiz-Objekt nicht schreiben"1557315574#: builtin/notes.c:20815575#, c-format15576msgid "the note contents have been left in %s"15577msgstr "Die Notiz-Inhalte wurden in %s belassen."1557815579#: builtin/notes.c:242 builtin/tag.c:52215580#, c-format15581msgid "could not open or read '%s'"15582msgstr "konnte '%s' nicht öffnen oder lesen"1558315584#: builtin/notes.c:263 builtin/notes.c:313 builtin/notes.c:31515585#: builtin/notes.c:383 builtin/notes.c:438 builtin/notes.c:52615586#: builtin/notes.c:531 builtin/notes.c:610 builtin/notes.c:67215587#, c-format15588msgid "failed to resolve '%s' as a valid ref."15589msgstr "Konnte '%s' nicht als gültige Referenz auflösen."1559015591#: builtin/notes.c:26515592#, c-format15593msgid "failed to read object '%s'."15594msgstr "Fehler beim Lesen des Objektes '%s'."1559515596#: builtin/notes.c:26815597#, c-format15598msgid "cannot read note data from non-blob object '%s'."15599msgstr "Kann Notiz-Daten nicht von Nicht-Blob Objekt '%s' lesen."1560015601#: builtin/notes.c:30915602#, c-format15603msgid "malformed input line: '%s'."15604msgstr "Fehlerhafte Eingabezeile: '%s'."1560515606#: builtin/notes.c:32415607#, c-format15608msgid "failed to copy notes from '%s' to '%s'"15609msgstr "Fehler beim Kopieren der Notizen von '%s' nach '%s'"1561015611#. TRANSLATORS: the first %s will be replaced by a git15612#. notes command: 'add', 'merge', 'remove', etc.15613#.15614#: builtin/notes.c:35615615#, c-format15616msgid "refusing to %s notes in %s (outside of refs/notes/)"15617msgstr ""15618"Ausführung von %s auf Notizen in %s (außerhalb von refs/notes/) "15619"zurückgewiesen"1562015621#: builtin/notes.c:376 builtin/notes.c:431 builtin/notes.c:50915622#: builtin/notes.c:521 builtin/notes.c:598 builtin/notes.c:66515623#: builtin/notes.c:815 builtin/notes.c:963 builtin/notes.c:98515624msgid "too many parameters"15625msgstr "zu viele Parameter"1562615627#: builtin/notes.c:389 builtin/notes.c:67815628#, c-format15629msgid "no note found for object %s."15630msgstr "Keine Notiz für Objekt %s gefunden."1563115632#: builtin/notes.c:410 builtin/notes.c:57615633msgid "note contents as a string"15634msgstr "Notizinhalte als Zeichenkette"1563515636#: builtin/notes.c:413 builtin/notes.c:57915637msgid "note contents in a file"15638msgstr "Notizinhalte in einer Datei"1563915640#: builtin/notes.c:416 builtin/notes.c:58215641msgid "reuse and edit specified note object"15642msgstr "Wiederverwendung und Bearbeitung des angegebenen Notiz-Objektes"1564315644#: builtin/notes.c:419 builtin/notes.c:58515645msgid "reuse specified note object"15646msgstr "Wiederverwendung des angegebenen Notiz-Objektes"1564715648#: builtin/notes.c:422 builtin/notes.c:58815649msgid "allow storing empty note"15650msgstr "Speichern leerer Notiz erlauben"1565115652#: builtin/notes.c:423 builtin/notes.c:49615653msgid "replace existing notes"15654msgstr "existierende Notizen ersetzen"1565515656#: builtin/notes.c:44815657#, c-format15658msgid ""15659"Cannot add notes. Found existing notes for object %s. Use '-f' to overwrite "15660"existing notes"15661msgstr ""15662"Konnte Notizen nicht hinzufügen. Existierende Notizen für Objekt %s "15663"gefunden. Verwenden Sie '-f', um die existierenden Notizen zu überschreiben."1566415665#: builtin/notes.c:463 builtin/notes.c:54415666#, c-format15667msgid "Overwriting existing notes for object %s\n"15668msgstr "Überschreibe existierende Notizen für Objekt %s\n"1566915670#: builtin/notes.c:475 builtin/notes.c:637 builtin/notes.c:90215671#, c-format15672msgid "Removing note for object %s\n"15673msgstr "Entferne Notiz für Objekt %s\n"1567415675#: builtin/notes.c:49715676msgid "read objects from stdin"15677msgstr "Objekte von der Standard-Eingabe lesen"1567815679#: builtin/notes.c:49915680msgid "load rewriting config for <command> (implies --stdin)"15681msgstr ""15682"Konfiguration für <Befehl> zum Umschreiben von Commits laden (impliziert --"15683"stdin)"1568415685#: builtin/notes.c:51715686msgid "too few parameters"15687msgstr "zu wenig Parameter"1568815689#: builtin/notes.c:53815690#, c-format15691msgid ""15692"Cannot copy notes. Found existing notes for object %s. Use '-f' to overwrite "15693"existing notes"15694msgstr ""15695"Kann Notizen nicht kopieren. Existierende Notizen für Objekt %s gefunden. "15696"Verwenden Sie '-f', um die existierenden Notizen zu überschreiben."1569715698#: builtin/notes.c:55015699#, c-format15700msgid "missing notes on source object %s. Cannot copy."15701msgstr "Keine Notizen für Quell-Objekt %s. Kopie nicht möglich."1570215703#: builtin/notes.c:60315704#, c-format15705msgid ""15706"The -m/-F/-c/-C options have been deprecated for the 'edit' subcommand.\n"15707"Please use 'git notes add -f -m/-F/-c/-C' instead.\n"15708msgstr ""15709"Die Optionen -m/-F/-c/-C sind für den Unterbefehl 'edit' veraltet.\n"15710"Bitte benutzen Sie stattdessen 'git notes add -f -m/-F/-c/-C'.\n"1571115712#: builtin/notes.c:69815713msgid "failed to delete ref NOTES_MERGE_PARTIAL"15714msgstr "Fehler beim Löschen der Referenz NOTES_MERGE_PARTIAL"1571515716#: builtin/notes.c:70015717msgid "failed to delete ref NOTES_MERGE_REF"15718msgstr "Fehler beim Löschen der Referenz NOTES_MERGE_REF"1571915720#: builtin/notes.c:70215721msgid "failed to remove 'git notes merge' worktree"15722msgstr "Fehler beim Löschen des Arbeitsverzeichnisses von 'git notes merge'."1572315724#: builtin/notes.c:72215725msgid "failed to read ref NOTES_MERGE_PARTIAL"15726msgstr "Fehler beim Lesen der Referenz NOTES_MERGE_PARTIAL"1572715728#: builtin/notes.c:72415729msgid "could not find commit from NOTES_MERGE_PARTIAL."15730msgstr "Konnte Commit von NOTES_MERGE_PARTIAL nicht finden."1573115732#: builtin/notes.c:72615733msgid "could not parse commit from NOTES_MERGE_PARTIAL."15734msgstr "Konnte Commit von NOTES_MERGE_PARTIAL nicht parsen."1573515736#: builtin/notes.c:73915737msgid "failed to resolve NOTES_MERGE_REF"15738msgstr "Fehler beim Auflösen von NOTES_MERGE_REF"1573915740#: builtin/notes.c:74215741msgid "failed to finalize notes merge"15742msgstr "Fehler beim Abschließen der Zusammenführung der Notizen."1574315744#: builtin/notes.c:76815745#, c-format15746msgid "unknown notes merge strategy %s"15747msgstr "unbekannte Merge-Strategie '%s' für Notizen"1574815749#: builtin/notes.c:78415750msgid "General options"15751msgstr "Allgemeine Optionen"1575215753#: builtin/notes.c:78615754msgid "Merge options"15755msgstr "Merge-Optionen"1575615757#: builtin/notes.c:78815758msgid ""15759"resolve notes conflicts using the given strategy (manual/ours/theirs/union/"15760"cat_sort_uniq)"15761msgstr ""15762"löst Konflikte bei Notizen mit der angegebenen Strategie auf (manual/ours/"15763"theirs/union/cat_sort_uniq)"1576415765#: builtin/notes.c:79015766msgid "Committing unmerged notes"15767msgstr "nicht zusammengeführte Notizen eintragen"1576815769#: builtin/notes.c:79215770msgid "finalize notes merge by committing unmerged notes"15771msgstr ""15772"Merge von Notizen abschließen, in dem nicht zusammengeführte Notizen "15773"committet werden"1577415775#: builtin/notes.c:79415776msgid "Aborting notes merge resolution"15777msgstr "Konfliktauflösung beim Merge von Notizen abbrechen"1577815779#: builtin/notes.c:79615780msgid "abort notes merge"15781msgstr "Merge von Notizen abbrechen"1578215783#: builtin/notes.c:80715784msgid "cannot mix --commit, --abort or -s/--strategy"15785msgstr "Kann --commit, --abort oder -s/--strategy nicht kombinieren."1578615787#: builtin/notes.c:81215788msgid "must specify a notes ref to merge"15789msgstr "Sie müssen eine Notiz-Referenz zum Mergen angeben."1579015791#: builtin/notes.c:83615792#, c-format15793msgid "unknown -s/--strategy: %s"15794msgstr "Unbekannter Wert für -s/--strategy: %s"1579515796#: builtin/notes.c:87315797#, c-format15798msgid "a notes merge into %s is already in-progress at %s"15799msgstr "Ein Merge von Notizen nach %s ist bereits im Gange bei %s"1580015801#: builtin/notes.c:87615802#, c-format15803msgid "failed to store link to current notes ref (%s)"15804msgstr ""15805"Fehler beim Speichern der Verknüpfung zur aktuellen Notes-Referenz (%s)"1580615807#: builtin/notes.c:87815808#, c-format15809msgid ""15810"Automatic notes merge failed. Fix conflicts in %s and commit the result with "15811"'git notes merge --commit', or abort the merge with 'git notes merge --"15812"abort'.\n"15813msgstr ""15814"Automatisches Zusammenführen der Notizen fehlgeschlagen. Beheben Sie die\n"15815"Konflikte in %s und committen Sie das Ergebnis mit 'git notes merge --"15816"commit',\n"15817"oder brechen Sie den Merge mit 'git notes merge --abort' ab.\n"1581815819#: builtin/notes.c:897 builtin/tag.c:53515820#, c-format15821msgid "Failed to resolve '%s' as a valid ref."15822msgstr "Konnte '%s' nicht als gültige Referenz auflösen."1582315824#: builtin/notes.c:90015825#, c-format15826msgid "Object %s has no note\n"15827msgstr "Objekt %s hat keine Notiz\n"1582815829#: builtin/notes.c:91215830msgid "attempt to remove non-existent note is not an error"15831msgstr "der Versuch, eine nicht existierende Notiz zu löschen, ist kein Fehler"1583215833#: builtin/notes.c:91515834msgid "read object names from the standard input"15835msgstr "Objektnamen von der Standard-Eingabe lesen"1583615837#: builtin/notes.c:954 builtin/prune.c:130 builtin/worktree.c:16515838msgid "do not remove, show only"15839msgstr "nicht löschen, nur anzeigen"1584015841#: builtin/notes.c:95515842msgid "report pruned notes"15843msgstr "gelöschte Notizen melden"1584415845#: builtin/notes.c:99815846msgid "notes-ref"15847msgstr "Notiz-Referenz"1584815849#: builtin/notes.c:99915850msgid "use notes from <notes-ref>"15851msgstr "Notizen von <Notiz-Referenz> verwenden"1585215853#: builtin/notes.c:1034 builtin/stash.c:161115854#, c-format15855msgid "unknown subcommand: %s"15856msgstr "Unbekannter Unterbefehl: %s"1585715858#: builtin/pack-objects.c:5215859msgid ""15860"git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"15861msgstr ""15862"git pack-objects --stdout [<Optionen>...] [< <Referenzliste> | < "15863"<Objektliste>]"1586415865#: builtin/pack-objects.c:5315866msgid ""15867"git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"15868msgstr ""15869"git pack-objects [<Optionen>...] <Basis-Name> [< <Referenzliste> | < "15870"<Objektliste>]"1587115872#: builtin/pack-objects.c:42415873#, c-format15874msgid "bad packed object CRC for %s"15875msgstr "Ungültiges CRC für gepacktes Objekt %s."1587615877#: builtin/pack-objects.c:43515878#, c-format15879msgid "corrupt packed object for %s"15880msgstr "Fehlerhaftes gepacktes Objekt für %s."1588115882#: builtin/pack-objects.c:56615883#, c-format15884msgid "recursive delta detected for object %s"15885msgstr "Rekursiver Unterschied für Objekt %s festgestellt."1588615887#: builtin/pack-objects.c:77715888#, c-format15889msgid "ordered %u objects, expected %<PRIu32>"15890msgstr "%u Objekte geordnet, %<PRIu32> erwartet."1589115892#: builtin/pack-objects.c:79015893#, c-format15894msgid "packfile is invalid: %s"15895msgstr "Packdatei ist ungültig: %s"1589615897#: builtin/pack-objects.c:79415898#, c-format15899msgid "unable to open packfile for reuse: %s"15900msgstr "Konnte Packdatei nicht zur Wiederverwendung öffnen: %s"1590115902#: builtin/pack-objects.c:79815903msgid "unable to seek in reused packfile"15904msgstr "Konnte \"seek\" nicht in wiederverwendeter Packdatei ausführen."1590515906#: builtin/pack-objects.c:80915907msgid "unable to read from reused packfile"15908msgstr "Konnte nicht von wiederverwendeter Packdatei lesen."1590915910#: builtin/pack-objects.c:83715911msgid "disabling bitmap writing, packs are split due to pack.packSizeLimit"15912msgstr ""15913"Deaktiviere Schreiben der Bitmap, Pakete wurden durch pack.packSizeLimit\n"15914"aufgetrennt."1591515916#: builtin/pack-objects.c:85015917msgid "Writing objects"15918msgstr "Schreibe Objekte"1591915920#: builtin/pack-objects.c:912 builtin/update-index.c:8915921#, c-format15922msgid "failed to stat %s"15923msgstr "Konnte '%s' nicht lesen"1592415925#: builtin/pack-objects.c:96515926#, c-format15927msgid "wrote %<PRIu32> objects while expecting %<PRIu32>"15928msgstr "Schrieb %<PRIu32> Objekte während %<PRIu32> erwartet waren."1592915930#: builtin/pack-objects.c:116115931msgid "disabling bitmap writing, as some objects are not being packed"15932msgstr ""15933"Deaktiviere Schreiben der Bitmap, da einige Objekte nicht in eine Pack-"15934"Datei\n"15935"geschrieben wurden."1593615937#: builtin/pack-objects.c:158915938#, c-format15939msgid "delta base offset overflow in pack for %s"15940msgstr "\"delta base offset\" Überlauf in Paket für %s"1594115942#: builtin/pack-objects.c:159815943#, c-format15944msgid "delta base offset out of bound for %s"15945msgstr "\"delta base offset\" liegt außerhalb des gültigen Bereichs für %s"1594615947#: builtin/pack-objects.c:186715948msgid "Counting objects"15949msgstr "Zähle Objekte"1595015951#: builtin/pack-objects.c:199715952#, c-format15953msgid "unable to get size of %s"15954msgstr "Konnte Größe von %s nicht bestimmen."1595515956#: builtin/pack-objects.c:201215957#, c-format15958msgid "unable to parse object header of %s"15959msgstr "Konnte Kopfbereich von Objekt '%s' nicht parsen."1596015961#: builtin/pack-objects.c:2082 builtin/pack-objects.c:209815962#: builtin/pack-objects.c:210815963#, c-format15964msgid "object %s cannot be read"15965msgstr "Objekt %s kann nicht gelesen werden."1596615967#: builtin/pack-objects.c:2085 builtin/pack-objects.c:211215968#, c-format15969msgid "object %s inconsistent object length (%<PRIuMAX> vs %<PRIuMAX>)"15970msgstr "Inkonsistente Objektlänge bei Objekt %s (%<PRIuMAX> vs %<PRIuMAX>)"1597115972#: builtin/pack-objects.c:212215973msgid "suboptimal pack - out of memory"15974msgstr "ungünstiges Packet - Speicher voll"1597515976#: builtin/pack-objects.c:244815977#, c-format15978msgid "Delta compression using up to %d threads"15979msgstr "Delta-Kompression verwendet bis zu %d Threads."1598015981#: builtin/pack-objects.c:258015982#, c-format15983msgid "unable to pack objects reachable from tag %s"15984msgstr "Konnte keine Objekte packen, die von Tag %s erreichbar sind."1598515986#: builtin/pack-objects.c:266715987msgid "Compressing objects"15988msgstr "Komprimiere Objekte"1598915990#: builtin/pack-objects.c:267315991msgid "inconsistency with delta count"15992msgstr "Inkonsistenz mit der Anzahl von Deltas"1599315994#: builtin/pack-objects.c:275415995#, c-format15996msgid ""15997"expected edge object ID, got garbage:\n"15998" %s"15999msgstr ""16000"Erwartete Randobjekt-ID, erhielt nutzlose Daten:\n"16001" %s"1600216003#: builtin/pack-objects.c:276016004#, c-format16005msgid ""16006"expected object ID, got garbage:\n"16007" %s"16008msgstr ""16009"Erwartete Objekt-ID, erhielt nutzlose Daten:\n"16010" %s"1601116012#: builtin/pack-objects.c:285816013msgid "invalid value for --missing"16014msgstr "Ungültiger Wert für --missing."1601516016#: builtin/pack-objects.c:2917 builtin/pack-objects.c:302516017msgid "cannot open pack index"16018msgstr "Kann Paketindex nicht öffnen."1601916020#: builtin/pack-objects.c:294816021#, c-format16022msgid "loose object at %s could not be examined"16023msgstr "Loses Objekt bei %s konnte nicht untersucht werden."1602416025#: builtin/pack-objects.c:303316026msgid "unable to force loose object"16027msgstr "Konnte loses Objekt nicht erzwingen."1602816029#: builtin/pack-objects.c:312516030#, c-format16031msgid "not a rev '%s'"16032msgstr "'%s' ist kein Commit."1603316034#: builtin/pack-objects.c:312816035#, c-format16036msgid "bad revision '%s'"16037msgstr "Ungültiger Commit '%s'."1603816039#: builtin/pack-objects.c:315316040msgid "unable to add recent objects"16041msgstr "Konnte jüngste Objekte nicht hinzufügen."1604216043#: builtin/pack-objects.c:320616044#, c-format16045msgid "unsupported index version %s"16046msgstr "Nicht unterstützte Index-Version %s"1604716048#: builtin/pack-objects.c:321016049#, c-format16050msgid "bad index version '%s'"16051msgstr "Ungültige Index-Version '%s'"1605216053#: builtin/pack-objects.c:324016054msgid "do not show progress meter"16055msgstr "keine Fortschrittsanzeige anzeigen"1605616057#: builtin/pack-objects.c:324216058msgid "show progress meter"16059msgstr "Fortschrittsanzeige anzeigen"1606016061#: builtin/pack-objects.c:324416062msgid "show progress meter during object writing phase"16063msgstr "Forschrittsanzeige während des Schreibens von Objekten anzeigen"1606416065#: builtin/pack-objects.c:324716066msgid "similar to --all-progress when progress meter is shown"16067msgstr "ähnlich zu --all-progress wenn Fortschrittsanzeige darstellt wird"1606816069#: builtin/pack-objects.c:324816070msgid "<version>[,<offset>]"16071msgstr "<Version>[,<Offset>]"1607216073#: builtin/pack-objects.c:324916074msgid "write the pack index file in the specified idx format version"16075msgstr ""16076"die Index-Datei des Paketes in der angegebenen Indexformat-Version schreiben"1607716078#: builtin/pack-objects.c:325216079msgid "maximum size of each output pack file"16080msgstr "maximale Größe für jede ausgegebene Paketdatei"1608116082#: builtin/pack-objects.c:325416083msgid "ignore borrowed objects from alternate object store"16084msgstr "geliehene Objekte von alternativem Objektspeicher ignorieren"1608516086#: builtin/pack-objects.c:325616087msgid "ignore packed objects"16088msgstr "gepackte Objekte ignorieren"1608916090#: builtin/pack-objects.c:325816091msgid "limit pack window by objects"16092msgstr "Paketfenster durch Objekte begrenzen"1609316094#: builtin/pack-objects.c:326016095msgid "limit pack window by memory in addition to object limit"16096msgstr ""16097"Paketfenster, zusätzlich zur Objektbegrenzung, durch Speicher begrenzen"1609816099#: builtin/pack-objects.c:326216100msgid "maximum length of delta chain allowed in the resulting pack"16101msgstr ""16102"maximale Länge der erlaubten Differenzverkettung im resultierenden Paket"1610316104#: builtin/pack-objects.c:326416105msgid "reuse existing deltas"16106msgstr "existierende Unterschiede wiederverwenden"1610716108#: builtin/pack-objects.c:326616109msgid "reuse existing objects"16110msgstr "existierende Objekte wiederverwenden"1611116112#: builtin/pack-objects.c:326816113msgid "use OFS_DELTA objects"16114msgstr "OFS_DELTA Objekte verwenden"1611516116#: builtin/pack-objects.c:327016117msgid "use threads when searching for best delta matches"16118msgstr ""16119"Threads bei der Suche nach den besten Übereinstimmungen bei Unterschieden "16120"verwenden"1612116122#: builtin/pack-objects.c:327216123msgid "do not create an empty pack output"16124msgstr "keine leeren Pakete erzeugen"1612516126#: builtin/pack-objects.c:327416127msgid "read revision arguments from standard input"16128msgstr "Argumente bezüglich Commits von der Standard-Eingabe lesen"1612916130#: builtin/pack-objects.c:327616131msgid "limit the objects to those that are not yet packed"16132msgstr "die Objekte zu solchen, die noch nicht gepackt wurden, begrenzen"1613316134#: builtin/pack-objects.c:327916135msgid "include objects reachable from any reference"16136msgstr "Objekte einschließen, die von jeder Referenz erreichbar sind"1613716138#: builtin/pack-objects.c:328216139msgid "include objects referred by reflog entries"16140msgstr ""16141"Objekte einschließen, die von Einträgen des Reflogs referenziert werden"1614216143#: builtin/pack-objects.c:328516144msgid "include objects referred to by the index"16145msgstr "Objekte einschließen, die vom Index referenziert werden"1614616147#: builtin/pack-objects.c:328816148msgid "output pack to stdout"16149msgstr "Paket in die Standard-Ausgabe schreiben"1615016151#: builtin/pack-objects.c:329016152msgid "include tag objects that refer to objects to be packed"16153msgstr "Tag-Objekte einschließen, die auf gepackte Objekte referenzieren"1615416155#: builtin/pack-objects.c:329216156msgid "keep unreachable objects"16157msgstr "nicht erreichbare Objekte behalten"1615816159#: builtin/pack-objects.c:329416160msgid "pack loose unreachable objects"16161msgstr "nicht erreichbare lose Objekte packen"1616216163#: builtin/pack-objects.c:329616164msgid "unpack unreachable objects newer than <time>"16165msgstr "nicht erreichbare Objekte entpacken, die neuer als <Zeit> sind"1616616167#: builtin/pack-objects.c:329916168msgid "use the sparse reachability algorithm"16169msgstr "den \"sparse\" Algorithmus zur Bestimmung der Erreichbarkeit benutzen"1617016171#: builtin/pack-objects.c:330116172msgid "create thin packs"16173msgstr "dünnere Pakete erzeugen"1617416175#: builtin/pack-objects.c:330316176msgid "create packs suitable for shallow fetches"16177msgstr ""16178"Pakete geeignet für Abholung mit unvollständiger Historie (shallow) erzeugen"1617916180#: builtin/pack-objects.c:330516181msgid "ignore packs that have companion .keep file"16182msgstr "Pakete ignorieren, die .keep Dateien haben"1618316184#: builtin/pack-objects.c:330716185msgid "ignore this pack"16186msgstr "dieses Paket ignorieren"1618716188#: builtin/pack-objects.c:330916189msgid "pack compression level"16190msgstr "Komprimierungsgrad für Paketierung"1619116192#: builtin/pack-objects.c:331116193msgid "do not hide commits by grafts"16194msgstr "keine künstlichen Vorgänger-Commits (\"grafts\") verbergen"1619516196#: builtin/pack-objects.c:331316197msgid "use a bitmap index if available to speed up counting objects"16198msgstr ""16199"Bitmap-Index (falls verfügbar) zur Optimierung der Objektzählung benutzen"1620016201#: builtin/pack-objects.c:331516202msgid "write a bitmap index together with the pack index"16203msgstr "Bitmap-Index zusammen mit Pack-Index schreiben"1620416205#: builtin/pack-objects.c:331816206msgid "handling for missing objects"16207msgstr "Behandlung für fehlende Objekte"1620816209#: builtin/pack-objects.c:332116210msgid "do not pack objects in promisor packfiles"16211msgstr ""16212"keine Objekte aus Packdateien von partiell geklonten Remote-Repositories "16213"packen"1621416215#: builtin/pack-objects.c:332316216msgid "respect islands during delta compression"16217msgstr "Delta-Islands bei Delta-Kompression beachten"1621816219#: builtin/pack-objects.c:334816220#, c-format16221msgid "delta chain depth %d is too deep, forcing %d"16222msgstr "Tiefe für Verkettung von Unterschieden %d ist zu tief, erzwinge %d"1622316224#: builtin/pack-objects.c:335316225#, c-format16226msgid "pack.deltaCacheLimit is too high, forcing %d"16227msgstr "pack.deltaCacheLimit ist zu hoch, erzwinge %d"1622816229#: builtin/pack-objects.c:340716230msgid "--max-pack-size cannot be used to build a pack for transfer"16231msgstr ""16232"--max-pack-size kann nicht für die Erstellung eines Pakets für eine "16233"Übertragung\n"16234"benutzt werden."1623516236#: builtin/pack-objects.c:340916237msgid "minimum pack size limit is 1 MiB"16238msgstr "Minimales Limit für die Paketgröße ist 1 MiB."1623916240#: builtin/pack-objects.c:341416241msgid "--thin cannot be used to build an indexable pack"16242msgstr ""16243"--thin kann nicht benutzt werden, um ein indizierbares Paket zu erstellen."1624416245#: builtin/pack-objects.c:341716246msgid "--keep-unreachable and --unpack-unreachable are incompatible"16247msgstr "--keep-unreachable und --unpack-unreachable sind inkompatibel"1624816249#: builtin/pack-objects.c:342316250msgid "cannot use --filter without --stdout"16251msgstr "Kann --filter nicht ohne --stdout benutzen."1625216253#: builtin/pack-objects.c:348416254msgid "Enumerating objects"16255msgstr "Objekte aufzählen"1625616257#: builtin/pack-objects.c:351416258#, c-format16259msgid "Total %<PRIu32> (delta %<PRIu32>), reused %<PRIu32> (delta %<PRIu32>)"16260msgstr ""16261"Gesamt %<PRIu32> (Delta %<PRIu32>), Wiederverwendet %<PRIu32> (Delta "16262"%<PRIu32>)"1626316264#: builtin/pack-refs.c:816265msgid "git pack-refs [<options>]"16266msgstr "git pack-refs [<Optionen>]"1626716268#: builtin/pack-refs.c:1616269msgid "pack everything"16270msgstr "alles packen"1627116272#: builtin/pack-refs.c:1716273msgid "prune loose refs (default)"16274msgstr "lose Referenzen entfernen (Standard)"1627516276#: builtin/prune-packed.c:916277msgid "git prune-packed [-n | --dry-run] [-q | --quiet]"16278msgstr "git prune-packed [-n | --dry-run] [-q | --quiet]"1627916280#: builtin/prune-packed.c:4216281msgid "Removing duplicate objects"16282msgstr "Lösche doppelte Objekte"1628316284#: builtin/prune.c:1216285msgid "git prune [-n] [-v] [--progress] [--expire <time>] [--] [<head>...]"16286msgstr "git prune [-n] [-v] [--progress] [--expire <Zeit>] [--] [<Branch>...]"1628716288#: builtin/prune.c:13116289msgid "report pruned objects"16290msgstr "gelöschte Objekte melden"1629116292#: builtin/prune.c:13416293msgid "expire objects older than <time>"16294msgstr "Objekte älter als <Zeit> verfallen lassen"1629516296#: builtin/prune.c:13616297msgid "limit traversal to objects outside promisor packfiles"16298msgstr ""16299"Traversierung auf Objekte außerhalb von Packdateien aus partiell geklonten "16300"Remote-Repositories einschränken"1630116302#: builtin/prune.c:15016303msgid "cannot prune in a precious-objects repo"16304msgstr "kann \"prune\" in precious-objects Repository nicht ausführen"1630516306#: builtin/pull.c:66 builtin/pull.c:6816307#, c-format16308msgid "Invalid value for %s: %s"16309msgstr "Ungültiger Wert für %s: %s"1631016311#: builtin/pull.c:8816312msgid "git pull [<options>] [<repository> [<refspec>...]]"16313msgstr "git pull [<Optionen>] [<Repository> [<Refspec>...]]"1631416315#: builtin/pull.c:14016316msgid "control for recursive fetching of submodules"16317msgstr "rekursive Anforderungen von Submodulen kontrollieren"1631816319#: builtin/pull.c:14416320msgid "Options related to merging"16321msgstr "Optionen bezogen auf Merge"1632216323#: builtin/pull.c:14716324msgid "incorporate changes by rebasing rather than merging"16325msgstr "Integration von Änderungen durch Rebase statt Merge"1632616327#: builtin/pull.c:175 builtin/rebase.c:447 builtin/revert.c:12516328msgid "allow fast-forward"16329msgstr "Vorspulen erlauben"1633016331#: builtin/pull.c:18416332msgid "automatically stash/stash pop before and after rebase"16333msgstr "automatischer Stash/Stash-Pop vor und nach eines Rebase"1633416335#: builtin/pull.c:20016336msgid "Options related to fetching"16337msgstr "Optionen bezogen auf Fetch"1633816339#: builtin/pull.c:21016340msgid "force overwrite of local branch"16341msgstr "das Überschreiben von lokalen Branches erzwingen"1634216343#: builtin/pull.c:21816344msgid "number of submodules pulled in parallel"16345msgstr "Anzahl der parallel mit 'pull' zu verarbeitenden Submodule"1634616347#: builtin/pull.c:31316348#, c-format16349msgid "Invalid value for pull.ff: %s"16350msgstr "Ungültiger Wert für pull.ff: %s"1635116352#: builtin/pull.c:43016353msgid ""16354"There is no candidate for rebasing against among the refs that you just "16355"fetched."16356msgstr ""16357"Es gibt keinen Kandidaten für Rebase innerhalb der Referenzen, die eben "16358"angefordert wurden."1635916360#: builtin/pull.c:43216361msgid ""16362"There are no candidates for merging among the refs that you just fetched."16363msgstr ""16364"Es gibt keine Kandidaten für Merge innerhalb der Referenzen, die eben "16365"angefordert wurden."1636616367#: builtin/pull.c:43316368msgid ""16369"Generally this means that you provided a wildcard refspec which had no\n"16370"matches on the remote end."16371msgstr ""16372"Im Allgemeinen bedeutet das, dass Sie einen Refspec mit Wildcards angegeben\n"16373"haben, der auf der Gegenseite mit keinen Referenzen übereinstimmt."1637416375#: builtin/pull.c:43616376#, c-format16377msgid ""16378"You asked to pull from the remote '%s', but did not specify\n"16379"a branch. Because this is not the default configured remote\n"16380"for your current branch, you must specify a branch on the command line."16381msgstr ""16382"Sie führten \"pull\" von Remote-Repository '%s' aus, ohne einen\n"16383"Branch anzugeben. Da das nicht das konfigurierte Standard-Remote-\n"16384"Repository für den aktuellen Branch ist, müssen Sie einen Branch auf\n"16385"der Befehlszeile angeben."1638616387#: builtin/pull.c:441 builtin/rebase.c:1321 git-parse-remote.sh:7316388msgid "You are not currently on a branch."16389msgstr "Im Moment auf keinem Branch."1639016391#: builtin/pull.c:443 builtin/pull.c:458 git-parse-remote.sh:7916392msgid "Please specify which branch you want to rebase against."16393msgstr ""16394"Bitte geben Sie den Branch an, gegen welchen Sie \"rebase\" ausführen "16395"möchten."1639616397#: builtin/pull.c:445 builtin/pull.c:460 git-parse-remote.sh:8216398msgid "Please specify which branch you want to merge with."16399msgstr "Bitte geben Sie den Branch an, welchen Sie zusammenführen möchten."1640016401#: builtin/pull.c:446 builtin/pull.c:46116402msgid "See git-pull(1) for details."16403msgstr "Siehe git-pull(1) für weitere Details."1640416405#: builtin/pull.c:448 builtin/pull.c:454 builtin/pull.c:46316406#: builtin/rebase.c:1327 git-parse-remote.sh:6416407msgid "<remote>"16408msgstr "<Remote-Repository>"1640916410#: builtin/pull.c:448 builtin/pull.c:463 builtin/pull.c:46816411#: git-parse-remote.sh:6516412msgid "<branch>"16413msgstr "<Branch>"1641416415#: builtin/pull.c:456 builtin/rebase.c:1319 git-parse-remote.sh:7516416msgid "There is no tracking information for the current branch."16417msgstr "Es gibt keine Tracking-Informationen für den aktuellen Branch."1641816419#: builtin/pull.c:465 git-parse-remote.sh:9516420msgid ""16421"If you wish to set tracking information for this branch you can do so with:"16422msgstr ""16423"Wenn Sie Tracking-Informationen für diesen Branch setzen möchten, können "16424"Sie\n"16425"dies tun mit:"1642616427#: builtin/pull.c:47016428#, c-format16429msgid ""16430"Your configuration specifies to merge with the ref '%s'\n"16431"from the remote, but no such ref was fetched."16432msgstr ""16433"Ihre Konfiguration gibt an, den Merge mit Referenz '%s'\n"16434"des Remote-Repositories durchzuführen, aber diese Referenz\n"16435"wurde nicht angefordert."1643616437#: builtin/pull.c:57416438#, c-format16439msgid "unable to access commit %s"16440msgstr "Konnte nicht auf Commit '%s' zugreifen."1644116442#: builtin/pull.c:85416443msgid "ignoring --verify-signatures for rebase"16444msgstr "Ignoriere --verify-signatures für Rebase"1644516446#: builtin/pull.c:90916447msgid "--[no-]autostash option is only valid with --rebase."16448msgstr "--[no-]autostash ist nur mit --rebase zulässig."1644916450#: builtin/pull.c:91716451msgid "Updating an unborn branch with changes added to the index."16452msgstr ""16453"Aktualisiere einen ungeborenen Branch mit Änderungen, die zum Commit "16454"vorgemerkt sind."1645516456#: builtin/pull.c:92116457msgid "pull with rebase"16458msgstr "Pull mit Rebase"1645916460#: builtin/pull.c:92216461msgid "please commit or stash them."16462msgstr "Bitte committen Sie die Änderungen oder benutzen Sie \"stash\"."1646316464#: builtin/pull.c:94716465#, c-format16466msgid ""16467"fetch updated the current branch head.\n"16468"fast-forwarding your working tree from\n"16469"commit %s."16470msgstr ""16471"\"fetch\" aktualisierte die Spitze des aktuellen Branches.\n"16472"Spule Ihr Arbeitsverzeichnis von Commit %s vor."1647316474#: builtin/pull.c:95316475#, c-format16476msgid ""16477"Cannot fast-forward your working tree.\n"16478"After making sure that you saved anything precious from\n"16479"$ git diff %s\n"16480"output, run\n"16481"$ git reset --hard\n"16482"to recover."16483msgstr ""16484"Kann Arbeitsverzeichnis nicht vorspulen.\n"16485"Nachdem Sie sichergestellt haben, alles Schützenswerte der Ausgabe von\n"16486"$ git diff %s\n"16487"gespeichert zu haben. Führen Sie\n"16488"$ git reset --hard\n"16489"zur Wiederherstellung aus."1649016491#: builtin/pull.c:96816492msgid "Cannot merge multiple branches into empty head."16493msgstr "Kann nicht mehrere Branches in einen leeren Branch zusammenführen."1649416495#: builtin/pull.c:97216496msgid "Cannot rebase onto multiple branches."16497msgstr "Kann Rebase nicht auf mehrere Branches ausführen."1649816499#: builtin/pull.c:97916500msgid "cannot rebase with locally recorded submodule modifications"16501msgstr ""16502"Kann Rebase nicht mit lokal aufgezeichneten Änderungen in Submodulen "16503"ausführen."1650416505#: builtin/push.c:1916506msgid "git push [<options>] [<repository> [<refspec>...]]"16507msgstr "git push [<Optionen>] [<Repository> [<Refspec>...]]"1650816509#: builtin/push.c:11116510msgid "tag shorthand without <tag>"16511msgstr "Kurzschrift für Tag ohne <Tag>"1651216513#: builtin/push.c:12116514msgid "--delete only accepts plain target ref names"16515msgstr "Die Option --delete akzeptiert nur reine Referenznamen als Ziel."1651616517#: builtin/push.c:16716518msgid ""16519"\n"16520"To choose either option permanently, see push.default in 'git help config'."16521msgstr ""16522"\n"16523"Um eine Variante permanent zu verwenden, siehe push.default in 'git help "16524"config'."1652516526#: builtin/push.c:17016527#, c-format16528msgid ""16529"The upstream branch of your current branch does not match\n"16530"the name of your current branch. To push to the upstream branch\n"16531"on the remote, use\n"16532"\n"16533" git push %s HEAD:%s\n"16534"\n"16535"To push to the branch of the same name on the remote, use\n"16536"\n"16537" git push %s HEAD\n"16538"%s"16539msgstr ""16540"Der Name des Upstream-Branches stimmt nicht mit dem Namen Ihres\n"16541"aktuellen Branches überein. Um auf den Upstream-Branch in dem Remote-\n"16542"Repository zu versenden, benutzen Sie:\n"16543"\n"16544" git push %s HEAD:%s\n"16545"\n"16546"Um auf den Branch mit demselben Namen im Remote-Repository zu versenden,\n"16547"benutzen Sie:\n"16548"\n"16549" git push %s HEAD\n"16550"%s"1655116552#: builtin/push.c:18516553#, c-format16554msgid ""16555"You are not currently on a branch.\n"16556"To push the history leading to the current (detached HEAD)\n"16557"state now, use\n"16558"\n"16559" git push %s HEAD:<name-of-remote-branch>\n"16560msgstr ""16561"Sie befinden sich im Moment auf keinem Branch.\n"16562"Um die Historie, führend zum aktuellen (losgelöster HEAD)\n"16563"Status zu versenden, benutzen Sie\n"16564"\n"16565" git push %s HEAD:<Name-des-Remote-Branches>\n"1656616567#: builtin/push.c:19916568#, c-format16569msgid ""16570"The current branch %s has no upstream branch.\n"16571"To push the current branch and set the remote as upstream, use\n"16572"\n"16573" git push --set-upstream %s %s\n"16574msgstr ""16575"Der aktuelle Branch %s hat keinen Upstream-Branch.\n"16576"Um den aktuellen Branch zu versenden und den Remote-Branch\n"16577"als Upstream-Branch zu setzen, benutzen Sie\n"16578"\n"16579" git push --set-upstream %s %s\n"1658016581#: builtin/push.c:20716582#, c-format16583msgid "The current branch %s has multiple upstream branches, refusing to push."16584msgstr ""16585"Der aktuelle Branch %s hat mehrere Upstream-Branches, \"push\" verweigert."1658616587#: builtin/push.c:21016588#, c-format16589msgid ""16590"You are pushing to remote '%s', which is not the upstream of\n"16591"your current branch '%s', without telling me what to push\n"16592"to update which remote branch."16593msgstr ""16594"Sie versenden nach '%s', welches kein Upstream-Repository Ihres aktuellen\n"16595"Branches '%s' ist, ohne anzugeben, was versendet werden soll, um welchen\n"16596"Remote-Branch zu aktualisieren."1659716598#: builtin/push.c:26916599msgid ""16600"You didn't specify any refspecs to push, and push.default is \"nothing\"."16601msgstr ""16602"Sie haben keine Refspec für \"push\" angegeben, und push.default ist "16603"\"nothing\"."1660416605#: builtin/push.c:27616606msgid ""16607"Updates were rejected because the tip of your current branch is behind\n"16608"its remote counterpart. Integrate the remote changes (e.g.\n"16609"'git pull ...') before pushing again.\n"16610"See the 'Note about fast-forwards' in 'git push --help' for details."16611msgstr ""16612"Aktualisierungen wurden zurückgewiesen, weil die Spitze Ihres aktuellen\n"16613"Branches hinter seinem externen Gegenstück zurückgefallen ist. Führen Sie\n"16614"die externen Änderungen zusammen (z. B. 'git pull ...') bevor Sie \"push\"\n"16615"erneut ausführen.\n"16616"Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'\n"16617"für weitere Details."1661816619#: builtin/push.c:28216620msgid ""16621"Updates were rejected because a pushed branch tip is behind its remote\n"16622"counterpart. Check out this branch and integrate the remote changes\n"16623"(e.g. 'git pull ...') before pushing again.\n"16624"See the 'Note about fast-forwards' in 'git push --help' for details."16625msgstr ""16626"Aktualisierungen wurden zurückgewiesen, weil die Spitze eines versendeten\n"16627"Branches hinter seinem externen Gegenstück zurückgefallen ist. Checken Sie\n"16628"diesen Branch aus und führen Sie die externen Änderungen zusammen\n"16629"(z. B. 'git pull ...') bevor Sie erneut \"push\" ausführen.\n"16630"Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'\n"16631"für weitere Details."1663216633#: builtin/push.c:28816634msgid ""16635"Updates were rejected because the remote contains work that you do\n"16636"not have locally. This is usually caused by another repository pushing\n"16637"to the same ref. You may want to first integrate the remote changes\n"16638"(e.g., 'git pull ...') before pushing again.\n"16639"See the 'Note about fast-forwards' in 'git push --help' for details."16640msgstr ""16641"Aktualisierungen wurden zurückgewiesen, weil das Remote-Repository Commits "16642"enthält,\n"16643"die lokal nicht vorhanden sind. Das wird üblicherweise durch einen \"push\" "16644"von\n"16645"Commits auf dieselbe Referenz von einem anderen Repository aus verursacht.\n"16646"Vielleicht müssen Sie die externen Änderungen zusammenführen (z. B. 'git "16647"pull ...')\n"16648"bevor Sie erneut \"push\" ausführen.\n"16649"Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'\n"16650"für weitere Details."1665116652#: builtin/push.c:29516653msgid "Updates were rejected because the tag already exists in the remote."16654msgstr ""16655"Aktualisierungen wurden zurückgewiesen, weil das Tag bereits\n"16656"im Remote-Repository existiert."1665716658#: builtin/push.c:29816659msgid ""16660"You cannot update a remote ref that points at a non-commit object,\n"16661"or update a remote ref to make it point at a non-commit object,\n"16662"without using the '--force' option.\n"16663msgstr ""16664"Sie können keine Remote-Referenz aktualisieren, die auf ein Objekt zeigt,\n"16665"das kein Commit ist, oder es auf ein solches Objekt zeigen lassen, ohne\n"16666"die Option '--force' zu verwenden.\n"1666716668#: builtin/push.c:35916669#, c-format16670msgid "Pushing to %s\n"16671msgstr "Versende nach %s\n"1667216673#: builtin/push.c:36416674#, c-format16675msgid "failed to push some refs to '%s'"16676msgstr "Fehler beim Versenden einiger Referenzen nach '%s'"1667716678#: builtin/push.c:39816679#, c-format16680msgid "bad repository '%s'"16681msgstr "ungültiges Repository '%s'"1668216683#: builtin/push.c:39916684msgid ""16685"No configured push destination.\n"16686"Either specify the URL from the command-line or configure a remote "16687"repository using\n"16688"\n"16689" git remote add <name> <url>\n"16690"\n"16691"and then push using the remote name\n"16692"\n"16693" git push <name>\n"16694msgstr ""16695"Kein Ziel für \"push\" konfiguriert.\n"16696"Entweder spezifizieren Sie die URL von der Befehlszeile oder konfigurieren "16697"ein Remote-Repository unter Benutzung von\n"16698"\n"16699" git remote add <Name> <URL>\n"16700"\n"16701"und führen \"push\" dann unter Benutzung dieses Namens aus\n"16702"\n"16703" git push <Name>\n"1670416705#: builtin/push.c:55416706msgid "repository"16707msgstr "Repository"1670816709#: builtin/push.c:555 builtin/send-pack.c:16416710msgid "push all refs"16711msgstr "alle Referenzen versenden"1671216713#: builtin/push.c:556 builtin/send-pack.c:16616714msgid "mirror all refs"16715msgstr "alle Referenzen spiegeln"1671616717#: builtin/push.c:55816718msgid "delete refs"16719msgstr "Referenzen löschen"1672016721#: builtin/push.c:55916722msgid "push tags (can't be used with --all or --mirror)"16723msgstr "Tags versenden (kann nicht mit --all oder --mirror verwendet werden)"1672416725#: builtin/push.c:562 builtin/send-pack.c:16716726msgid "force updates"16727msgstr "Aktualisierung erzwingen"1672816729#: builtin/push.c:564 builtin/send-pack.c:18116730msgid "<refname>:<expect>"16731msgstr "<Referenzname>:<Erwartungswert>"1673216733#: builtin/push.c:565 builtin/send-pack.c:18216734msgid "require old value of ref to be at this value"16735msgstr "Referenz muss sich auf dem angegebenen Wert befinden"1673616737#: builtin/push.c:56816738msgid "control recursive pushing of submodules"16739msgstr "rekursiven \"push\" von Submodulen steuern"1674016741#: builtin/push.c:570 builtin/send-pack.c:17516742msgid "use thin pack"16743msgstr "kleinere Pakete verwenden"1674416745#: builtin/push.c:571 builtin/push.c:572 builtin/send-pack.c:16116746#: builtin/send-pack.c:16216747msgid "receive pack program"16748msgstr "'receive pack' Programm"1674916750#: builtin/push.c:57316751msgid "set upstream for git pull/status"16752msgstr "Upstream für \"git pull/status\" setzen"1675316754#: builtin/push.c:57616755msgid "prune locally removed refs"16756msgstr "lokal gelöschte Referenzen entfernen"1675716758#: builtin/push.c:57816759msgid "bypass pre-push hook"16760msgstr "\"pre-push hook\" umgehen"1676116762#: builtin/push.c:57916763msgid "push missing but relevant tags"16764msgstr "fehlende, aber relevante Tags versenden"1676516766#: builtin/push.c:582 builtin/send-pack.c:16916767msgid "GPG sign the push"16768msgstr "signiert \"push\" mit GPG"1676916770#: builtin/push.c:584 builtin/send-pack.c:17616771msgid "request atomic transaction on remote side"16772msgstr "Referenzen atomar versenden"1677316774#: builtin/push.c:60216775msgid "--delete is incompatible with --all, --mirror and --tags"16776msgstr "Die Option --delete ist inkompatibel mit --all, --mirror und --tags."1677716778#: builtin/push.c:60416779msgid "--delete doesn't make sense without any refs"16780msgstr "Die Option --delete kann nur mit Referenzen verwendet werden."1678116782#: builtin/push.c:60716783msgid "--all and --tags are incompatible"16784msgstr "Die Optionen --all und --tags sind inkompatibel."1678516786#: builtin/push.c:60916787msgid "--all can't be combined with refspecs"16788msgstr "Die Option --all kann nicht mit Refspecs kombiniert werden."1678916790#: builtin/push.c:61316791msgid "--mirror and --tags are incompatible"16792msgstr "Die Optionen --mirror und --tags sind inkompatibel."1679316794#: builtin/push.c:61516795msgid "--mirror can't be combined with refspecs"16796msgstr "Die Option --mirror kann nicht mit Refspecs kombiniert werden."1679716798#: builtin/push.c:61816799msgid "--all and --mirror are incompatible"16800msgstr "Die Optionen --all und --mirror sind inkompatibel."1680116802#: builtin/push.c:63716803msgid "push options must not have new line characters"16804msgstr "Push-Optionen dürfen keine Zeilenvorschubzeichen haben"1680516806#: builtin/range-diff.c:816807msgid "git range-diff [<options>] <old-base>..<old-tip> <new-base>..<new-tip>"16808msgstr ""16809"git range-diff [<Optionen>] <alte-Basis>..<alte-Spitze> <neue-Basis>..<neue-"16810"Spitze>"1681116812#: builtin/range-diff.c:916813msgid "git range-diff [<options>] <old-tip>...<new-tip>"16814msgstr "git range-diff [<Optionen>] <alte-Spitze>...<neue-Spitze>"1681516816#: builtin/range-diff.c:1016817msgid "git range-diff [<options>] <base> <old-tip> <new-tip>"16818msgstr "git range-diff [<Optionen>] <Basis> <alte-Spitze> <neue-Spitze>"1681916820#: builtin/range-diff.c:2116821msgid "Percentage by which creation is weighted"16822msgstr "Prozentsatz mit welchem Erzeugung gewichtet wird"1682316824#: builtin/range-diff.c:2316825msgid "use simple diff colors"16826msgstr "einfache Diff-Farben benutzen"1682716828#: builtin/range-diff.c:46 builtin/range-diff.c:5016829#, c-format16830msgid "no .. in range: '%s'"16831msgstr "Kein .. im Bereich: '%s'"1683216833#: builtin/range-diff.c:6016834msgid "single arg format must be symmetric range"16835msgstr "Format mit einfachem Argument muss symmetrischer Bereich sein."1683616837#: builtin/range-diff.c:7516838msgid "need two commit ranges"16839msgstr "Benötige zwei Commit-Bereiche."1684016841#: builtin/read-tree.c:4116842msgid ""16843"git read-tree [(-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>) "16844"[-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--"16845"index-output=<file>] (--empty | <tree-ish1> [<tree-ish2> [<tree-ish3>]])"16846msgstr ""16847"git read-tree [(-m [--trivial] [--aggressive] | --reset | --prefix=<Präfix>) "16848"[-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--"16849"index-output=<Datei>] (--empty | <Commit-Referenz1> [<Commit-Referenz2> "16850"[<Commit-Referenz3>]])"1685116852#: builtin/read-tree.c:12416853msgid "write resulting index to <file>"16854msgstr "resultierenden Index nach <Datei> schreiben"1685516856#: builtin/read-tree.c:12716857msgid "only empty the index"16858msgstr "nur den Index leeren"1685916860#: builtin/read-tree.c:12916861msgid "Merging"16862msgstr "Merge"1686316864#: builtin/read-tree.c:13116865msgid "perform a merge in addition to a read"16866msgstr "einen Merge, zusätzlich zum Lesen, ausführen"1686716868#: builtin/read-tree.c:13316869msgid "3-way merge if no file level merging required"16870msgstr "3-Wege-Merge, wenn kein Merge auf Dateiebene erforderlich ist"1687116872#: builtin/read-tree.c:13516873msgid "3-way merge in presence of adds and removes"16874msgstr "3-Wege-Merge bei Vorhandensein von hinzugefügten/entfernten Zeilen"1687516876#: builtin/read-tree.c:13716877msgid "same as -m, but discard unmerged entries"16878msgstr "genau wie -m, aber nicht zusammengeführte Einträge verwerfen"1687916880#: builtin/read-tree.c:13816881msgid "<subdirectory>/"16882msgstr "<Unterverzeichnis>/"1688316884#: builtin/read-tree.c:13916885msgid "read the tree into the index under <subdirectory>/"16886msgstr "das Verzeichnis in den Index unter <Unterverzeichnis>/ lesen"1688716888#: builtin/read-tree.c:14216889msgid "update working tree with merge result"16890msgstr "Arbeitsverzeichnis mit dem Ergebnis des Merges aktualisieren"1689116892#: builtin/read-tree.c:14416893msgid "gitignore"16894msgstr "gitignore"1689516896#: builtin/read-tree.c:14516897msgid "allow explicitly ignored files to be overwritten"16898msgstr "explizit ignorierte Dateien zu überschreiben erlauben"1689916900#: builtin/read-tree.c:14816901msgid "don't check the working tree after merging"16902msgstr "das Arbeitsverzeichnis nach dem Merge nicht prüfen"1690316904#: builtin/read-tree.c:14916905msgid "don't update the index or the work tree"16906msgstr "weder den Index, noch das Arbeitsverzeichnis aktualisieren"1690716908#: builtin/read-tree.c:15116909msgid "skip applying sparse checkout filter"16910msgstr "Anwendung des Filters für partielles Auschecken überspringen"1691116912#: builtin/read-tree.c:15316913msgid "debug unpack-trees"16914msgstr "unpack-trees protokollieren"1691516916#: builtin/read-tree.c:15716917msgid "suppress feedback messages"16918msgstr "Rückmeldungen unterdrücken"1691916920#: builtin/rebase.c:3216921msgid ""16922"git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] [<upstream>] "16923"[<branch>]"16924msgstr ""16925"git rebase [-i] [<Optionen>] [--exec <Programm>] [--onto <neue-Basis>] "16926"[<Upstream>] [<Branch>]"1692716928#: builtin/rebase.c:3416929msgid ""16930"git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] --root [<branch>]"16931msgstr ""16932"git rebase [-i] [<Optionen>] [--exec <Programm>] [--onto <neue-Basis>] --"16933"root [<Branch>]"1693416935#: builtin/rebase.c:3616936msgid "git rebase --continue | --abort | --skip | --edit-todo"16937msgstr "git rebase --continue | --abort | --skip | --edit-todo"1693816939#: builtin/rebase.c:158 builtin/rebase.c:182 builtin/rebase.c:20916940#, c-format16941msgid "unusable todo list: '%s'"16942msgstr "Unbenutzbare TODO-Liste: '%s'"1694316944#: builtin/rebase.c:167 builtin/rebase.c:193 builtin/rebase.c:21716945#, c-format16946msgid "could not write '%s'."16947msgstr "Konnte '%s' nicht schreiben."1694816949#: builtin/rebase.c:25216950msgid "no HEAD?"16951msgstr "Kein HEAD?"1695216953#: builtin/rebase.c:27916954#, c-format16955msgid "could not create temporary %s"16956msgstr "Konnte temporäres Verzeichnis '%s' nicht erstellen."1695716958#: builtin/rebase.c:28516959msgid "could not mark as interactive"16960msgstr "Markierung auf interaktiven Rebase fehlgeschlagen."1696116962#: builtin/rebase.c:34316963msgid "could not generate todo list"16964msgstr "Konnte TODO-Liste nicht erzeugen."1696516966#: builtin/rebase.c:38216967msgid "a base commit must be provided with --upstream or --onto"16968msgstr "Ein Basis-Commit muss mit --upstream oder --onto angegeben werden."1696916970#: builtin/rebase.c:43716971msgid "git rebase--interactive [<options>]"16972msgstr "git rebase--interactive [<Optionen>]"1697316974#: builtin/rebase.c:44916975msgid "keep empty commits"16976msgstr "leere Commits behalten"1697716978#: builtin/rebase.c:451 builtin/revert.c:12716979msgid "allow commits with empty messages"16980msgstr "Commits mit leerer Beschreibung erlauben"1698116982#: builtin/rebase.c:45216983msgid "rebase merge commits"16984msgstr "Rebase auf Merge-Commits ausführen"1698516986#: builtin/rebase.c:45416987msgid "keep original branch points of cousins"16988msgstr "originale Branch-Punkte der Cousins behalten"1698916990#: builtin/rebase.c:45616991msgid "move commits that begin with squash!/fixup!"16992msgstr "Commits verschieben, die mit squash!/fixup! beginnen"1699316994#: builtin/rebase.c:45716995msgid "sign commits"16996msgstr "Commits signieren"1699716998#: builtin/rebase.c:459 builtin/rebase.c:139716999msgid "display a diffstat of what changed upstream"17000msgstr ""17001"Zusammenfassung der Unterschiede gegenüber dem Upstream-Branch anzeigen"1700217003#: builtin/rebase.c:46117004msgid "continue rebase"17005msgstr "Rebase fortsetzen"1700617007#: builtin/rebase.c:46317008msgid "skip commit"17009msgstr "Commit auslassen"1701017011#: builtin/rebase.c:46417012msgid "edit the todo list"17013msgstr "die TODO-Liste bearbeiten"1701417015#: builtin/rebase.c:46617016msgid "show the current patch"17017msgstr "den aktuellen Patch anzeigen"1701817019#: builtin/rebase.c:46917020msgid "shorten commit ids in the todo list"17021msgstr "Commit-IDs in der TODO-Liste verkürzen"1702217023#: builtin/rebase.c:47117024msgid "expand commit ids in the todo list"17025msgstr "Commit-IDs in der TODO-Liste erweitern"1702617027#: builtin/rebase.c:47317028msgid "check the todo list"17029msgstr "die TODO-Liste prüfen"1703017031#: builtin/rebase.c:47517032msgid "rearrange fixup/squash lines"17033msgstr "fixup/squash-Zeilen umordnen"1703417035#: builtin/rebase.c:47717036msgid "insert exec commands in todo list"17037msgstr "\"exec\"-Befehle in TODO-Liste einfügen"1703817039#: builtin/rebase.c:47817040msgid "onto"17041msgstr "auf"1704217043#: builtin/rebase.c:48117044msgid "restrict-revision"17045msgstr "Begrenzungscommit"1704617047#: builtin/rebase.c:48117048msgid "restrict revision"17049msgstr "Begrenzungscommit"1705017051#: builtin/rebase.c:48317052msgid "squash-onto"17053msgstr "squash-onto"1705417055#: builtin/rebase.c:48417056msgid "squash onto"17057msgstr "squash onto"1705817059#: builtin/rebase.c:48617060msgid "the upstream commit"17061msgstr "der Upstream-Commit"1706217063#: builtin/rebase.c:48817064msgid "head-name"17065msgstr "head-Name"1706617067#: builtin/rebase.c:48817068msgid "head name"17069msgstr "head-Name"1707017071#: builtin/rebase.c:49317072msgid "rebase strategy"17073msgstr "Rebase-Strategie"1707417075#: builtin/rebase.c:49417076msgid "strategy-opts"17077msgstr "Strategie-Optionen"1707817079#: builtin/rebase.c:49517080msgid "strategy options"17081msgstr "Strategie-Optionen"1708217083#: builtin/rebase.c:49617084msgid "switch-to"17085msgstr "wechseln zu"1708617087#: builtin/rebase.c:49717088msgid "the branch or commit to checkout"17089msgstr "der Branch oder Commit zum Auschecken"1709017091#: builtin/rebase.c:49817092msgid "onto-name"17093msgstr "onto-Name"1709417095#: builtin/rebase.c:49817096msgid "onto name"17097msgstr "onto-Name"1709817099#: builtin/rebase.c:49917100msgid "cmd"17101msgstr "Befehl"1710217103#: builtin/rebase.c:49917104msgid "the command to run"17105msgstr "auszuführender Befehl"1710617107#: builtin/rebase.c:502 builtin/rebase.c:148017108msgid "automatically re-schedule any `exec` that fails"17109msgstr "jeden fehlgeschlagenen `exec`-Befehl neu ansetzen"1711017111#: builtin/rebase.c:51817112msgid "--[no-]rebase-cousins has no effect without --rebase-merges"17113msgstr "--[no-]rebase-cousins hat ohne --rebase-merges keine Auswirkung"1711417115#: builtin/rebase.c:534 builtin/rebase.c:178717116#, c-format17117msgid "%s requires an interactive rebase"17118msgstr "%s erfordert ein interaktives Rebase"1711917120#: builtin/rebase.c:58617121#, c-format17122msgid "could not get 'onto': '%s'"17123msgstr "Konnte 'onto' nicht bestimmen: '%s'"1712417125#: builtin/rebase.c:60117126#, c-format17127msgid "invalid orig-head: '%s'"17128msgstr "Ungültiges orig-head: '%s'"1712917130#: builtin/rebase.c:62617131#, c-format17132msgid "ignoring invalid allow_rerere_autoupdate: '%s'"17133msgstr "Ignoriere ungültiges allow_rerere_autoupdate: '%s'"1713417135#: builtin/rebase.c:70217136#, c-format17137msgid "Could not read '%s'"17138msgstr "Konnte '%s' nicht lesen."1713917140#: builtin/rebase.c:72017141#, c-format17142msgid "Cannot store %s"17143msgstr "Kann %s nicht speichern."1714417145#: builtin/rebase.c:81717146msgid "could not determine HEAD revision"17147msgstr "Konnte HEAD-Commit nicht bestimmen."1714817149#: builtin/rebase.c:94017150msgid ""17151"Resolve all conflicts manually, mark them as resolved with\n"17152"\"git add/rm <conflicted_files>\", then run \"git rebase --continue\".\n"17153"You can instead skip this commit: run \"git rebase --skip\".\n"17154"To abort and get back to the state before \"git rebase\", run \"git rebase --"17155"abort\"."17156msgstr ""17157"Lösen Sie alle Konflikte manuell auf, markieren Sie diese mit\n"17158"\"git add/rm <konfliktbehaftete_Dateien>\" und führen Sie dann\n"17159"\"git rebase --continue\" aus.\n"17160"Sie können auch stattdessen diesen Commit auslassen, indem\n"17161"Sie \"git rebase --skip\" ausführen.\n"17162"Um abzubrechen und zurück zum Zustand vor \"git rebase\" zu gelangen,\n"17163"führen Sie \"git rebase --abort\" aus."1716417165#: builtin/rebase.c:102117166#, c-format17167msgid ""17168"\n"17169"git encountered an error while preparing the patches to replay\n"17170"these revisions:\n"17171"\n"17172" %s\n"17173"\n"17174"As a result, git cannot rebase them."17175msgstr ""17176"\n"17177"Git stellte einen Fehler beim Vorbereiten der Patches zur\n"17178"wiederholten Anwendung der Revisionen fest:\n"17179"\n"17180" %s\n"17181"\n"17182"Infolge dessen kann Git auf diesen Revisionen Rebase nicht\n"17183"ausführen."1718417185#: builtin/rebase.c:131317186#, c-format17187msgid ""17188"%s\n"17189"Please specify which branch you want to rebase against.\n"17190"See git-rebase(1) for details.\n"17191"\n"17192" git rebase '<branch>'\n"17193"\n"17194msgstr ""17195"%s\n"17196"Bitte geben Sie den Branch an, gegen welchen Sie \"rebase\" ausführen "17197"möchten.\n"17198"Siehe git-rebase(1) für Details.\n"17199"\n"17200" git rebase '<Branch>'\n"17201"\n"1720217203#: builtin/rebase.c:132917204#, c-format17205msgid ""17206"If you wish to set tracking information for this branch you can do so with:\n"17207"\n"17208" git branch --set-upstream-to=%s/<branch> %s\n"17209"\n"17210msgstr ""17211"Wenn Sie Tracking-Informationen für diesen Branch setzen möchten,\n"17212"können Sie dies tun mit:\n"17213"\n"17214" git branch --set-upstream-to=%s/<Branch> %s\n"17215"\n"1721617217#: builtin/rebase.c:135917218msgid "exec commands cannot contain newlines"17219msgstr "\"exec\"-Befehle können keine neuen Zeilen enthalten"1722017221#: builtin/rebase.c:136317222msgid "empty exec command"17223msgstr "Leerer \"exec\"-Befehl."1722417225#: builtin/rebase.c:139017226msgid "rebase onto given branch instead of upstream"17227msgstr "Rebase auf angegebenen Branch anstelle des Upstream-Branches ausführen"1722817229#: builtin/rebase.c:139217230msgid "allow pre-rebase hook to run"17231msgstr "Ausführung des pre-rebase-Hooks erlauben"1723217233#: builtin/rebase.c:139417234msgid "be quiet. implies --no-stat"17235msgstr "weniger Ausgaben (impliziert --no-stat)"1723617237#: builtin/rebase.c:140017238msgid "do not show diffstat of what changed upstream"17239msgstr ""17240"Zusammenfassung der Unterschiede gegenüber dem Upstream-Branch verbergen"1724117242#: builtin/rebase.c:140317243msgid "add a Signed-off-by: line to each commit"17244msgstr "eine \"Signed-off-by:\"-Zeile zu jedem Commit hinzufügen"1724517246#: builtin/rebase.c:1405 builtin/rebase.c:1409 builtin/rebase.c:141117247msgid "passed to 'git am'"17248msgstr "an 'git am' übergeben"1724917250#: builtin/rebase.c:1413 builtin/rebase.c:141517251msgid "passed to 'git apply'"17252msgstr "an 'git apply' übergeben"1725317254#: builtin/rebase.c:1417 builtin/rebase.c:142017255msgid "cherry-pick all commits, even if unchanged"17256msgstr ""17257"Cherry-Pick auf alle Commits ausführen, auch wenn diese unverändert sind"1725817259#: builtin/rebase.c:142217260msgid "continue"17261msgstr "fortsetzen"1726217263#: builtin/rebase.c:142517264msgid "skip current patch and continue"17265msgstr "den aktuellen Patch auslassen und fortfahren"1726617267#: builtin/rebase.c:142717268msgid "abort and check out the original branch"17269msgstr "abbrechen und den ursprünglichen Branch auschecken"1727017271#: builtin/rebase.c:143017272msgid "abort but keep HEAD where it is"17273msgstr "abbrechen, aber HEAD an aktueller Stelle belassen"1727417275#: builtin/rebase.c:143117276msgid "edit the todo list during an interactive rebase"17277msgstr "TODO-Liste während eines interaktiven Rebase bearbeiten"1727817279#: builtin/rebase.c:143417280msgid "show the patch file being applied or merged"17281msgstr "den Patch, der gerade angewendet oder zusammengeführt wird, anzeigen"1728217283#: builtin/rebase.c:143717284msgid "use merging strategies to rebase"17285msgstr "Merge-Strategien beim Rebase verwenden"1728617287#: builtin/rebase.c:144117288msgid "let the user edit the list of commits to rebase"17289msgstr "den Benutzer die Liste der Commits für den Rebase bearbeiten lassen"1729017291#: builtin/rebase.c:144517292msgid "(DEPRECATED) try to recreate merges instead of ignoring them"17293msgstr ""17294"(VERALTET) Versuche, Merges wiederherzustellen anstatt sie zu ignorieren"1729517296#: builtin/rebase.c:144917297msgid "preserve empty commits during rebase"17298msgstr "leere Commits während des Rebase erhalten"1729917300#: builtin/rebase.c:145117301msgid "move commits that begin with squash!/fixup! under -i"17302msgstr "bei -i Commits verschieben, die mit squash!/fixup! beginnen"1730317304#: builtin/rebase.c:145717305msgid "automatically stash/stash pop before and after"17306msgstr "automatischer Stash/Stash-Pop davor und danach"1730717308#: builtin/rebase.c:145917309msgid "add exec lines after each commit of the editable list"17310msgstr "exec-Zeilen nach jedem Commit der editierbaren Liste hinzufügen"1731117312#: builtin/rebase.c:146317313msgid "allow rebasing commits with empty messages"17314msgstr "Rebase von Commits mit leerer Beschreibung erlauben"1731517316#: builtin/rebase.c:146617317msgid "try to rebase merges instead of skipping them"17318msgstr ""17319"versuchen, Rebase mit Merges auszuführen, anstatt diese zu überspringen"1732017321#: builtin/rebase.c:146917322msgid "use 'merge-base --fork-point' to refine upstream"17323msgstr ""17324"'git merge-base --fork-point' benutzen, um Upstream-Branch zu bestimmen"1732517326#: builtin/rebase.c:147117327msgid "use the given merge strategy"17328msgstr "angegebene Merge-Strategie verwenden"1732917330#: builtin/rebase.c:1473 builtin/revert.c:11417331msgid "option"17332msgstr "Option"1733317334#: builtin/rebase.c:147417335msgid "pass the argument through to the merge strategy"17336msgstr "Argument zur Merge-Strategie durchreichen"1733717338#: builtin/rebase.c:147717339msgid "rebase all reachable commits up to the root(s)"17340msgstr "Rebase auf alle erreichbaren Commits bis zum Root-Commit ausführen"1734117342#: builtin/rebase.c:149817343msgid ""17344"the rebase.useBuiltin support has been removed!\n"17345"See its entry in 'git help config' for details."17346msgstr ""17347"Die Unterstützung für rebase.useBuiltin wurde entfernt!\n"17348"Siehe dessen Eintrag in 'git help config' für Details."1734917350#: builtin/rebase.c:150417351msgid "It looks like 'git am' is in progress. Cannot rebase."17352msgstr "'git-am' scheint im Gange zu sein. Kann Rebase nicht durchführen."1735317354#: builtin/rebase.c:154517355msgid ""17356"git rebase --preserve-merges is deprecated. Use --rebase-merges instead."17357msgstr ""17358"'git rebase --preserve-merges' ist veraltet. Benutzen Sie stattdessen '--"17359"rebase-merges'."1736017361#: builtin/rebase.c:154917362msgid "No rebase in progress?"17363msgstr "Kein Rebase im Gange?"1736417365#: builtin/rebase.c:155317366msgid "The --edit-todo action can only be used during interactive rebase."17367msgstr ""17368"Die --edit-todo Aktion kann nur während eines interaktiven Rebase verwendet "17369"werden."1737017371#: builtin/rebase.c:157617372msgid "Cannot read HEAD"17373msgstr "Kann HEAD nicht lesen"1737417375#: builtin/rebase.c:158817376msgid ""17377"You must edit all merge conflicts and then\n"17378"mark them as resolved using git add"17379msgstr ""17380"Sie müssen alle Merge-Konflikte editieren und diese dann\n"17381"mittels \"git add\" als aufgelöst markieren"1738217383#: builtin/rebase.c:160717384msgid "could not discard worktree changes"17385msgstr "Konnte Änderungen im Arbeitsverzeichnis nicht verwerfen."1738617387#: builtin/rebase.c:162617388#, c-format17389msgid "could not move back to %s"17390msgstr "Konnte nicht zu %s zurückgehen."1739117392#: builtin/rebase.c:1637 builtin/rm.c:36917393#, c-format17394msgid "could not remove '%s'"17395msgstr "Konnte '%s' nicht löschen"1739617397#: builtin/rebase.c:166317398#, c-format17399msgid ""17400"It seems that there is already a %s directory, and\n"17401"I wonder if you are in the middle of another rebase. If that is the\n"17402"case, please try\n"17403"\t%s\n"17404"If that is not the case, please\n"17405"\t%s\n"17406"and run me again. I am stopping in case you still have something\n"17407"valuable there.\n"17408msgstr ""17409"Es sieht so aus, als ob es das Verzeichnis %s bereits gibt\n"17410"und es könnte ein anderer Rebase im Gange sein. Wenn das der Fall ist,\n"17411"probieren Sie bitte\n"17412"\t%s\n"17413"Wenn das nicht der Fall ist, probieren Sie bitte\n"17414"\t%s\n"17415"und führen Sie diesen Befehl nochmal aus. Es wird angehalten, falls noch\n"17416"etwas Schützenswertes vorhanden ist.\n"1741717418#: builtin/rebase.c:168417419msgid "switch `C' expects a numerical value"17420msgstr "Schalter `C' erwartet einen numerischen Wert."1742117422#: builtin/rebase.c:172517423#, c-format17424msgid "Unknown mode: %s"17425msgstr "Unbekannter Modus: %s"1742617427#: builtin/rebase.c:174717428msgid "--strategy requires --merge or --interactive"17429msgstr "--strategy erfordert --merge oder --interactive"1743017431#: builtin/rebase.c:179617432msgid "cannot combine am options with either interactive or merge options"17433msgstr ""17434"Optionen für \"am\" können nicht mit Optionen für \"interactive\" oder "17435"\"merge\" kombiniert werden."1743617437#: builtin/rebase.c:181517438msgid "cannot combine '--preserve-merges' with '--rebase-merges'"17439msgstr ""17440"'--preserve-merges' kann nicht mit '--rebase-merges' kombiniert werden."1744117442#: builtin/rebase.c:181917443msgid ""17444"error: cannot combine '--preserve-merges' with '--reschedule-failed-exec'"17445msgstr ""17446"Fehler: '--preserve-merges' kann nicht mit '--reschedule-failed-exec' "17447"kombiniert werden."1744817449#: builtin/rebase.c:182517450msgid "cannot combine '--rebase-merges' with '--strategy-option'"17451msgstr ""17452"'--rebase-merges' kann nicht mit '--strategy-option' kombiniert werden."1745317454#: builtin/rebase.c:182817455msgid "cannot combine '--rebase-merges' with '--strategy'"17456msgstr "'--rebase-merges' kann nicht mit '--strategy' kombiniert werden."1745717458#: builtin/rebase.c:185217459#, c-format17460msgid "invalid upstream '%s'"17461msgstr "Ungültiger Upstream '%s'"1746217463#: builtin/rebase.c:185817464msgid "Could not create new root commit"17465msgstr "Konnte neuen Root-Commit nicht erstellen."1746617467#: builtin/rebase.c:187617468#, c-format17469msgid "'%s': need exactly one merge base"17470msgstr "'%s': benötige genau eine Merge-Basis"1747117472#: builtin/rebase.c:188317473#, c-format17474msgid "Does not point to a valid commit '%s'"17475msgstr "'%s' zeigt auf keinen gültigen Commit."1747617477#: builtin/rebase.c:190817478#, c-format17479msgid "fatal: no such branch/commit '%s'"17480msgstr "fatal: Branch/Commit '%s' nicht gefunden"1748117482#: builtin/rebase.c:1916 builtin/submodule--helper.c:3817483#: builtin/submodule--helper.c:193317484#, c-format17485msgid "No such ref: %s"17486msgstr "Referenz nicht gefunden: %s"1748717488#: builtin/rebase.c:192717489msgid "Could not resolve HEAD to a revision"17490msgstr "Konnte HEAD zu keinem Commit auflösen."1749117492#: builtin/rebase.c:196817493msgid "Cannot autostash"17494msgstr "Kann automatischen Stash nicht erzeugen."1749517496#: builtin/rebase.c:197117497#, c-format17498msgid "Unexpected stash response: '%s'"17499msgstr "Unerwartete 'stash'-Antwort: '%s'"1750017501#: builtin/rebase.c:197717502#, c-format17503msgid "Could not create directory for '%s'"17504msgstr "Konnte Verzeichnis für '%s' nicht erstellen."1750517506#: builtin/rebase.c:198017507#, c-format17508msgid "Created autostash: %s\n"17509msgstr "Automatischen Stash erzeugt: %s\n"1751017511#: builtin/rebase.c:198317512msgid "could not reset --hard"17513msgstr "Konnte 'reset --hard' nicht ausführen."1751417515#: builtin/rebase.c:1984 builtin/reset.c:11417516#, c-format17517msgid "HEAD is now at %s"17518msgstr "HEAD ist jetzt bei %s"1751917520#: builtin/rebase.c:200017521msgid "Please commit or stash them."17522msgstr "Bitte committen Sie die Änderungen oder benutzen Sie \"stash\"."1752317524#: builtin/rebase.c:202717525#, c-format17526msgid "could not parse '%s'"17527msgstr "Konnte '%s' nicht parsen."1752817529#: builtin/rebase.c:204017530#, c-format17531msgid "could not switch to %s"17532msgstr "Konnte nicht zu %s wechseln."1753317534#: builtin/rebase.c:205117535msgid "HEAD is up to date."17536msgstr "HEAD ist aktuell."1753717538#: builtin/rebase.c:205317539#, c-format17540msgid "Current branch %s is up to date.\n"17541msgstr "Aktueller Branch %s ist auf dem neuesten Stand.\n"1754217543#: builtin/rebase.c:206117544msgid "HEAD is up to date, rebase forced."17545msgstr "HEAD ist aktuell, Rebase erzwungen."1754617547#: builtin/rebase.c:206317548#, c-format17549msgid "Current branch %s is up to date, rebase forced.\n"17550msgstr "Aktueller Branch %s ist auf dem neuesten Stand, Rebase erzwungen.\n"1755117552#: builtin/rebase.c:207117553msgid "The pre-rebase hook refused to rebase."17554msgstr "Der \"pre-rebase hook\" hat den Rebase zurückgewiesen."1755517556#: builtin/rebase.c:207817557#, c-format17558msgid "Changes to %s:\n"17559msgstr "Änderungen zu %s:\n"1756017561#: builtin/rebase.c:208117562#, c-format17563msgid "Changes from %s to %s:\n"17564msgstr "Änderungen von %s zu %s:\n"1756517566#: builtin/rebase.c:210617567#, c-format17568msgid "First, rewinding head to replay your work on top of it...\n"17569msgstr ""17570"Zunächst wird der Branch zurückgespult, um Ihre Änderungen darauf neu "17571"anzuwenden...\n"1757217573#: builtin/rebase.c:211517574msgid "Could not detach HEAD"17575msgstr "Konnte HEAD nicht loslösen."1757617577#: builtin/rebase.c:212417578#, c-format17579msgid "Fast-forwarded %s to %s.\n"17580msgstr "Spule %s vor zu %s.\n"1758117582#: builtin/receive-pack.c:3317583msgid "git receive-pack <git-dir>"17584msgstr "git receive-pack <Git-Verzeichnis>"1758517586#: builtin/receive-pack.c:83317587msgid ""17588"By default, updating the current branch in a non-bare repository\n"17589"is denied, because it will make the index and work tree inconsistent\n"17590"with what you pushed, and will require 'git reset --hard' to match\n"17591"the work tree to HEAD.\n"17592"\n"17593"You can set the 'receive.denyCurrentBranch' configuration variable\n"17594"to 'ignore' or 'warn' in the remote repository to allow pushing into\n"17595"its current branch; however, this is not recommended unless you\n"17596"arranged to update its work tree to match what you pushed in some\n"17597"other way.\n"17598"\n"17599"To squelch this message and still keep the default behaviour, set\n"17600"'receive.denyCurrentBranch' configuration variable to 'refuse'."17601msgstr ""17602"Standardmäßig wird die Aktualisierung des aktuellen Branches in einem\n"17603"Nicht-Bare-Repository zurückgewiesen, da dies den Index und das Arbeits-\n"17604"verzeichnis inkonsistent zu dem machen würde, was Sie gepushed haben, und\n"17605"'git reset --hard' erforderlich wäre, damit das Arbeitsverzeichnis HEAD\n"17606"entspricht.\n"17607"\n"17608"Sie könnten die Konfigurationsvariable 'receive.denyCurrentBranch' im\n"17609"Remote-Repository auf 'ignore' oder 'warn' setzen, um den Push in den\n"17610"aktuellen Branch zu erlauben; dies wird jedoch nicht empfohlen außer\n"17611"Sie stellen durch andere Wege die Aktualität des Arbeitsverzeichnisses\n"17612"gegenüber dem gepushten Stand sicher.\n"17613"\n"17614"Um diese Meldung zu unterdrücken und das Standardverhalten zu behalten,\n"17615"setzen Sie die Konfigurationsvariable 'receive.denyCurrentBranch' auf\n"17616"'refuse'."1761717618#: builtin/receive-pack.c:85317619msgid ""17620"By default, deleting the current branch is denied, because the next\n"17621"'git clone' won't result in any file checked out, causing confusion.\n"17622"\n"17623"You can set 'receive.denyDeleteCurrent' configuration variable to\n"17624"'warn' or 'ignore' in the remote repository to allow deleting the\n"17625"current branch, with or without a warning message.\n"17626"\n"17627"To squelch this message, you can set it to 'refuse'."17628msgstr ""17629"Standardmäßig wird das Löschen des aktuellen Branches zurückgewiesen,\n"17630"da beim nächsten 'git clone' keine Dateien ausgecheckt werden würden,\n"17631"was zu Verwunderung führt.\n"17632"\n"17633"Sie können die Konfigurationsvariable 'receive.denyDeleteCurrent' im\n"17634"Remote-Repository auf 'warn' oder 'ignore' setzen, um das Löschen des\n"17635"aktuellen Branch mit oder ohne Warnung zu erlauben.\n"17636"\n"17637"Um diese Meldung zu unterdrücken, setzen Sie die Variable auf 'refuse'."1763817639#: builtin/receive-pack.c:194017640msgid "quiet"17641msgstr "weniger Ausgaben"1764217643#: builtin/receive-pack.c:195417644msgid "You must specify a directory."17645msgstr "Sie müssen ein Repository angeben."1764617647#: builtin/reflog.c:1717648msgid ""17649"git reflog expire [--expire=<time>] [--expire-unreachable=<time>] [--"17650"rewrite] [--updateref] [--stale-fix] [--dry-run | -n] [--verbose] [--all] "17651"<refs>..."17652msgstr ""17653"git reflog expire [--expire=<Zeit>] [--expire-unreachable=<Zeit>] [--"17654"rewrite] [--updateref] [--stale-fix] [--dry-run | -n] [--verbose] [--all] "17655"<Referenzen>..."1765617657#: builtin/reflog.c:2217658msgid ""17659"git reflog delete [--rewrite] [--updateref] [--dry-run | -n] [--verbose] "17660"<refs>..."17661msgstr ""17662"git reflog delete [--rewrite] [--updateref] [--dry-run | -n] [--verbose] "17663"<Referenzen>..."1766417665#: builtin/reflog.c:2517666msgid "git reflog exists <ref>"17667msgstr "git reflog exists <Referenz>"1766817669#: builtin/reflog.c:567 builtin/reflog.c:57217670#, c-format17671msgid "'%s' is not a valid timestamp"17672msgstr "'%s' ist kein gültiger Zeitstempel"1767317674#: builtin/reflog.c:60517675#, c-format17676msgid "Marking reachable objects..."17677msgstr "Markiere nicht erreichbare Objekte..."1767817679#: builtin/reflog.c:64317680#, c-format17681msgid "%s points nowhere!"17682msgstr "%s zeigt auf nichts!"1768317684#: builtin/reflog.c:69517685msgid "no reflog specified to delete"17686msgstr "Kein Reflog zum Löschen angegeben."1768717688#: builtin/reflog.c:70417689#, c-format17690msgid "not a reflog: %s"17691msgstr "Kein Reflog: %s"1769217693#: builtin/reflog.c:70917694#, c-format17695msgid "no reflog for '%s'"17696msgstr "Kein Reflog für '%s'."1769717698#: builtin/reflog.c:75517699#, c-format17700msgid "invalid ref format: %s"17701msgstr "Ungültiges Format für Referenzen: %s"1770217703#: builtin/reflog.c:76417704msgid "git reflog [ show | expire | delete | exists ]"17705msgstr "git reflog [ show | expire | delete | exists ]"1770617707#: builtin/remote.c:1617708msgid "git remote [-v | --verbose]"17709msgstr "git remote [-v | --verbose]"1771017711#: builtin/remote.c:1717712msgid ""17713"git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--"17714"mirror=<fetch|push>] <name> <url>"17715msgstr ""17716"git remote add [-t <Branch>] [-m <master>] [-f] [--tags | --no-tags] [--"17717"mirror=<fetch|push>] <Name> <URL>"1771817719#: builtin/remote.c:18 builtin/remote.c:3817720msgid "git remote rename <old> <new>"17721msgstr "git remote rename <alt> <neu>"1772217723#: builtin/remote.c:19 builtin/remote.c:4317724msgid "git remote remove <name>"17725msgstr "git remote remove <Name>"1772617727#: builtin/remote.c:20 builtin/remote.c:4817728msgid "git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"17729msgstr "git remote set-head <Name> (-a | --auto | -d | --delete | <Branch>)"1773017731#: builtin/remote.c:2117732msgid "git remote [-v | --verbose] show [-n] <name>"17733msgstr "git remote [-v | --verbose] show [-n] <Name>"1773417735#: builtin/remote.c:2217736msgid "git remote prune [-n | --dry-run] <name>"17737msgstr "git remote prune [-n | --dry-run] <Name>"1773817739#: builtin/remote.c:2317740msgid ""17741"git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"17742msgstr ""17743"git remote [-v | --verbose] update [-p | --prune] [(<Gruppe> | <Remote>)...]"1774417745#: builtin/remote.c:2417746msgid "git remote set-branches [--add] <name> <branch>..."17747msgstr "git remote set-branches [--add] <Name> <Branch>..."1774817749#: builtin/remote.c:25 builtin/remote.c:7417750msgid "git remote get-url [--push] [--all] <name>"17751msgstr "git remote get-url [--push] [--all] <Name>"1775217753#: builtin/remote.c:26 builtin/remote.c:7917754msgid "git remote set-url [--push] <name> <newurl> [<oldurl>]"17755msgstr "git remote set-url [--push] <Name> <neueURL> [<alteURL>]"1775617757#: builtin/remote.c:27 builtin/remote.c:8017758msgid "git remote set-url --add <name> <newurl>"17759msgstr "git remote set-url --add <Name> <neueURL>"1776017761#: builtin/remote.c:28 builtin/remote.c:8117762msgid "git remote set-url --delete <name> <url>"17763msgstr "git remote set-url --delete <Name> <URL>"1776417765#: builtin/remote.c:3317766msgid "git remote add [<options>] <name> <url>"17767msgstr "git remote add [<Optionen>] <Name> <URL>"1776817769#: builtin/remote.c:5317770msgid "git remote set-branches <name> <branch>..."17771msgstr "git remote set-branches <Name> <Branch>..."1777217773#: builtin/remote.c:5417774msgid "git remote set-branches --add <name> <branch>..."17775msgstr "git remote set-branches --add <Name> <Branch>..."1777617777#: builtin/remote.c:5917778msgid "git remote show [<options>] <name>"17779msgstr "git remote show [<Optionen>] <Name>"1778017781#: builtin/remote.c:6417782msgid "git remote prune [<options>] <name>"17783msgstr "git remote prune [<Optionen>] <Name>"1778417785#: builtin/remote.c:6917786msgid "git remote update [<options>] [<group> | <remote>]..."17787msgstr "git remote update [<Optionen>] [<Gruppe> | <externesRepository>]..."1778817789#: builtin/remote.c:9817790#, c-format17791msgid "Updating %s"17792msgstr "Aktualisiere %s"1779317794#: builtin/remote.c:13017795msgid ""17796"--mirror is dangerous and deprecated; please\n"17797"\t use --mirror=fetch or --mirror=push instead"17798msgstr ""17799"--mirror ist gefährlich und veraltet; bitte\n"17800"\t benutzen Sie stattdessen --mirror=fetch oder --mirror=push"1780117802#: builtin/remote.c:14717803#, c-format17804msgid "unknown mirror argument: %s"17805msgstr "unbekanntes Argument für Option --mirror: %s"1780617807#: builtin/remote.c:16317808msgid "fetch the remote branches"17809msgstr "die Remote-Branches anfordern"1781017811#: builtin/remote.c:16517812msgid "import all tags and associated objects when fetching"17813msgstr "alle Tags und verbundene Objekte beim Anfordern importieren"1781417815#: builtin/remote.c:16817816msgid "or do not fetch any tag at all (--no-tags)"17817msgstr "oder fordere gar keine Tags an (--no-tags)"1781817819#: builtin/remote.c:17017820msgid "branch(es) to track"17821msgstr "Branch(es) zur Übernahme"1782217823#: builtin/remote.c:17117824msgid "master branch"17825msgstr "Hauptbranch"1782617827#: builtin/remote.c:17317828msgid "set up remote as a mirror to push to or fetch from"17829msgstr ""17830"Aufsetzen des Remote-Repositories als Spiegel-Repository für \"push\" und "17831"\"fetch\""1783217833#: builtin/remote.c:18517834msgid "specifying a master branch makes no sense with --mirror"17835msgstr ""17836"Die Option --mirror kann nicht mit der Angabe eines Hauptbranches verwendet "17837"werden."1783817839#: builtin/remote.c:18717840msgid "specifying branches to track makes sense only with fetch mirrors"17841msgstr ""17842"Die Angabe von zu folgenden Branches kann nur mit dem Anfordern von "17843"Spiegelarchiven verwendet werden."1784417845#: builtin/remote.c:194 builtin/remote.c:63617846#, c-format17847msgid "remote %s already exists."17848msgstr "externes Repository %s existiert bereits"1784917850#: builtin/remote.c:198 builtin/remote.c:64017851#, c-format17852msgid "'%s' is not a valid remote name"17853msgstr "'%s' ist kein gültiger Name für ein Remote-Repository"1785417855#: builtin/remote.c:23817856#, c-format17857msgid "Could not setup master '%s'"17858msgstr "Konnte symbolische Referenz für Hauptbranch von '%s' nicht einrichten"1785917860#: builtin/remote.c:34417861#, c-format17862msgid "Could not get fetch map for refspec %s"17863msgstr "Konnte Fetch-Map für Refspec %s nicht bekommen"1786417865#: builtin/remote.c:443 builtin/remote.c:45117866msgid "(matching)"17867msgstr "(übereinstimmend)"1786817869#: builtin/remote.c:45517870msgid "(delete)"17871msgstr "(lösche)"1787217873#: builtin/remote.c:629 builtin/remote.c:765 builtin/remote.c:86417874#, c-format17875msgid "No such remote: '%s'"17876msgstr "Kein solches Remote-Repository: '%s'"1787717878#: builtin/remote.c:64617879#, c-format17880msgid "Could not rename config section '%s' to '%s'"17881msgstr "Konnte Sektion '%s' in Konfiguration nicht nach '%s' umbenennen"1788217883#: builtin/remote.c:66617884#, c-format17885msgid ""17886"Not updating non-default fetch refspec\n"17887"\t%s\n"17888"\tPlease update the configuration manually if necessary."17889msgstr ""17890"Keine Aktualisierung der nicht standardmäßigen Refspec für \"fetch\"\n"17891"\t%s\n"17892"\tBitte aktualisieren Sie, falls notwendig, die Konfiguration manuell."1789317894#: builtin/remote.c:70217895#, c-format17896msgid "deleting '%s' failed"17897msgstr "Konnte '%s' nicht löschen"1789817899#: builtin/remote.c:73617900#, c-format17901msgid "creating '%s' failed"17902msgstr "Konnte '%s' nicht erstellen"1790317904#: builtin/remote.c:80217905msgid ""17906"Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"17907"to delete it, use:"17908msgid_plural ""17909"Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"17910"to delete them, use:"17911msgstr[0] ""17912"Hinweis: Ein Branch außerhalb der refs/remotes/ Hierachie wurde nicht "17913"gelöscht;\n"17914"um diesen zu löschen, benutzen Sie:"17915msgstr[1] ""17916"Hinweis: Einige Branches außerhalb der refs/remotes/ Hierarchie wurden nicht "17917"entfernt;\n"17918"um diese zu entfernen, benutzen Sie:"1791917920#: builtin/remote.c:81617921#, c-format17922msgid "Could not remove config section '%s'"17923msgstr "Konnte Sektion '%s' nicht aus Konfiguration entfernen"1792417925#: builtin/remote.c:91717926#, c-format17927msgid " new (next fetch will store in remotes/%s)"17928msgstr " neu (wird bei nächstem \"fetch\" in remotes/%s gespeichert)"1792917930#: builtin/remote.c:92017931msgid " tracked"17932msgstr " gefolgt"1793317934#: builtin/remote.c:92217935msgid " stale (use 'git remote prune' to remove)"17936msgstr " veraltet (benutzen Sie 'git remote prune' zum Löschen)"1793717938#: builtin/remote.c:92417939msgid " ???"17940msgstr " ???"1794117942#: builtin/remote.c:96517943#, c-format17944msgid "invalid branch.%s.merge; cannot rebase onto > 1 branch"17945msgstr "ungültiges branch.%s.merge; kann Rebase nicht auf > 1 Branch ausführen"1794617947#: builtin/remote.c:97417948#, c-format17949msgid "rebases interactively onto remote %s"17950msgstr "interaktiver Rebase auf Remote-Branch %s"1795117952#: builtin/remote.c:97617953#, c-format17954msgid "rebases interactively (with merges) onto remote %s"17955msgstr "interaktiver Rebase (mit Merges) auf Remote-Branch %s"1795617957#: builtin/remote.c:97917958#, c-format17959msgid "rebases onto remote %s"17960msgstr "Rebase auf Remote-Branch %s"1796117962#: builtin/remote.c:98317963#, c-format17964msgid " merges with remote %s"17965msgstr " führt mit Remote-Branch %s zusammen"1796617967#: builtin/remote.c:98617968#, c-format17969msgid "merges with remote %s"17970msgstr "führt mit Remote-Branch %s zusammen"1797117972#: builtin/remote.c:98917973#, c-format17974msgid "%-*s and with remote %s\n"17975msgstr "%-*s und mit Remote-Branch %s\n"1797617977#: builtin/remote.c:103217978msgid "create"17979msgstr "erstellt"1798017981#: builtin/remote.c:103517982msgid "delete"17983msgstr "gelöscht"1798417985#: builtin/remote.c:103917986msgid "up to date"17987msgstr "aktuell"1798817989#: builtin/remote.c:104217990msgid "fast-forwardable"17991msgstr "vorspulbar"1799217993#: builtin/remote.c:104517994msgid "local out of date"17995msgstr "lokal nicht aktuell"1799617997#: builtin/remote.c:105217998#, c-format17999msgid " %-*s forces to %-*s (%s)"18000msgstr " %-*s erzwingt Versandt nach %-*s (%s)"1800118002#: builtin/remote.c:105518003#, c-format18004msgid " %-*s pushes to %-*s (%s)"18005msgstr " %-*s versendet nach %-*s (%s)"1800618007#: builtin/remote.c:105918008#, c-format18009msgid " %-*s forces to %s"18010msgstr " %-*s erzwingt Versand nach %s"1801118012#: builtin/remote.c:106218013#, c-format18014msgid " %-*s pushes to %s"18015msgstr " %-*s versendet nach %s"1801618017#: builtin/remote.c:113018018msgid "do not query remotes"18019msgstr "keine Abfrage von Remote-Repositories"1802018021#: builtin/remote.c:115718022#, c-format18023msgid "* remote %s"18024msgstr "* Remote-Repository %s"1802518026#: builtin/remote.c:115818027#, c-format18028msgid " Fetch URL: %s"18029msgstr " URL zum Abholen: %s"1803018031#: builtin/remote.c:1159 builtin/remote.c:1175 builtin/remote.c:131418032msgid "(no URL)"18033msgstr "(keine URL)"1803418035#. TRANSLATORS: the colon ':' should align18036#. with the one in " Fetch URL: %s"18037#. translation.18038#.18039#: builtin/remote.c:1173 builtin/remote.c:117518040#, c-format18041msgid " Push URL: %s"18042msgstr " URL zum Versenden: %s"1804318044#: builtin/remote.c:1177 builtin/remote.c:1179 builtin/remote.c:118118045#, c-format18046msgid " HEAD branch: %s"18047msgstr " Hauptbranch: %s"1804818049#: builtin/remote.c:117718050msgid "(not queried)"18051msgstr "(nicht abgefragt)"1805218053#: builtin/remote.c:117918054msgid "(unknown)"18055msgstr "(unbekannt)"1805618057#: builtin/remote.c:118318058#, c-format18059msgid ""18060" HEAD branch (remote HEAD is ambiguous, may be one of the following):\n"18061msgstr ""18062" Hauptbranch (externer HEAD ist mehrdeutig, könnte einer der folgenden "18063"sein):\n"1806418065#: builtin/remote.c:119518066#, c-format18067msgid " Remote branch:%s"18068msgid_plural " Remote branches:%s"18069msgstr[0] " Remote-Branch:%s"18070msgstr[1] " Remote-Branches:%s"1807118072#: builtin/remote.c:1198 builtin/remote.c:122418073msgid " (status not queried)"18074msgstr " (Zustand nicht abgefragt)"1807518076#: builtin/remote.c:120718077msgid " Local branch configured for 'git pull':"18078msgid_plural " Local branches configured for 'git pull':"18079msgstr[0] " Lokaler Branch konfiguriert für 'git pull':"18080msgstr[1] " Lokale Branches konfiguriert für 'git pull':"1808118082#: builtin/remote.c:121518083msgid " Local refs will be mirrored by 'git push'"18084msgstr " Lokale Referenzen werden von 'git push' gespiegelt"1808518086#: builtin/remote.c:122118087#, c-format18088msgid " Local ref configured for 'git push'%s:"18089msgid_plural " Local refs configured for 'git push'%s:"18090msgstr[0] " Lokale Referenz konfiguriert für 'git push'%s:"18091msgstr[1] " Lokale Referenzen konfiguriert für 'git push'%s:"1809218093#: builtin/remote.c:124218094msgid "set refs/remotes/<name>/HEAD according to remote"18095msgstr "setzt refs/remotes/<Name>/HEAD gemäß dem Remote-Repository"1809618097#: builtin/remote.c:124418098msgid "delete refs/remotes/<name>/HEAD"18099msgstr "entfernt refs/remotes/<Name>/HEAD"1810018101#: builtin/remote.c:125918102msgid "Cannot determine remote HEAD"18103msgstr "Kann HEAD des Remote-Repositories nicht bestimmen"1810418105#: builtin/remote.c:126118106msgid "Multiple remote HEAD branches. Please choose one explicitly with:"18107msgstr ""18108"Mehrere Hauptbranches im Remote-Repository. Bitte wählen Sie explizit einen "18109"aus mit:"1811018111#: builtin/remote.c:127118112#, c-format18113msgid "Could not delete %s"18114msgstr "Konnte %s nicht entfernen"1811518116#: builtin/remote.c:127918117#, c-format18118msgid "Not a valid ref: %s"18119msgstr "keine gültige Referenz: %s"1812018121#: builtin/remote.c:128118122#, c-format18123msgid "Could not setup %s"18124msgstr "Konnte %s nicht einrichten"1812518126#: builtin/remote.c:129918127#, c-format18128msgid " %s will become dangling!"18129msgstr " %s wird unreferenziert!"1813018131#: builtin/remote.c:130018132#, c-format18133msgid " %s has become dangling!"18134msgstr " %s wurde unreferenziert!"1813518136#: builtin/remote.c:131018137#, c-format18138msgid "Pruning %s"18139msgstr "entferne veraltete Branches von %s"1814018141#: builtin/remote.c:131118142#, c-format18143msgid "URL: %s"18144msgstr "URL: %s"1814518146#: builtin/remote.c:132718147#, c-format18148msgid " * [would prune] %s"18149msgstr " * [würde veralteten Branch entfernen] %s"1815018151#: builtin/remote.c:133018152#, c-format18153msgid " * [pruned] %s"18154msgstr "* [veralteten Branch entfernt] %s"1815518156#: builtin/remote.c:137518157msgid "prune remotes after fetching"18158msgstr "entferne veraltete Branches im Remote-Repository nach \"fetch\""1815918160#: builtin/remote.c:1438 builtin/remote.c:1492 builtin/remote.c:156018161#, c-format18162msgid "No such remote '%s'"18163msgstr "Kein solches Remote-Repository '%s'"1816418165#: builtin/remote.c:145418166msgid "add branch"18167msgstr "Branch hinzufügen"1816818169#: builtin/remote.c:146118170msgid "no remote specified"18171msgstr "kein Remote-Repository angegeben"1817218173#: builtin/remote.c:147818174msgid "query push URLs rather than fetch URLs"18175msgstr "nur URLs für Push ausgeben"1817618177#: builtin/remote.c:148018178msgid "return all URLs"18179msgstr "alle URLs ausgeben"1818018181#: builtin/remote.c:150818182#, c-format18183msgid "no URLs configured for remote '%s'"18184msgstr "Keine URLs für Remote-Repository '%s' konfiguriert."1818518186#: builtin/remote.c:153418187msgid "manipulate push URLs"18188msgstr "URLs für \"push\" manipulieren"1818918190#: builtin/remote.c:153618191msgid "add URL"18192msgstr "URL hinzufügen"1819318194#: builtin/remote.c:153818195msgid "delete URLs"18196msgstr "URLs löschen"1819718198#: builtin/remote.c:154518199msgid "--add --delete doesn't make sense"18200msgstr ""18201"Die Optionen --add und --delete können nicht gemeinsam verwendet werden."1820218203#: builtin/remote.c:158418204#, c-format18205msgid "Invalid old URL pattern: %s"18206msgstr "ungültiges altes URL Format: %s"1820718208#: builtin/remote.c:159218209#, c-format18210msgid "No such URL found: %s"18211msgstr "Keine solche URL gefunden: %s"1821218213#: builtin/remote.c:159418214msgid "Will not delete all non-push URLs"18215msgstr "Werde keine URLs entfernen, die nicht für \"push\" bestimmt sind"1821618217#: builtin/remote.c:161018218msgid "be verbose; must be placed before a subcommand"18219msgstr "erweiterte Ausgaben; muss vor einem Unterbefehl angegeben werden"1822018221#: builtin/remote.c:164118222#, c-format18223msgid "Unknown subcommand: %s"18224msgstr "Unbekannter Unterbefehl: %s"1822518226#: builtin/repack.c:2218227msgid "git repack [<options>]"18228msgstr "git repack [<Optionen>]"1822918230#: builtin/repack.c:2718231msgid ""18232"Incremental repacks are incompatible with bitmap indexes. Use\n"18233"--no-write-bitmap-index or disable the pack.writebitmaps configuration."18234msgstr ""18235"Schrittweises Neupacken ist mit Bitmap-Indexen inkompatibel. Benutzen Sie\n"18236"--no-write-bitmap-index oder deaktivieren Sie die pack.writebitmaps\n"18237"Konfiguration."1823818239#: builtin/repack.c:20018240msgid "could not start pack-objects to repack promisor objects"18241msgstr ""18242"Konnte 'pack-objects' für das Neupacken von Objekten aus partiell geklonten\n"18243"Remote-Repositories nicht starten."1824418245#: builtin/repack.c:239 builtin/repack.c:41418246msgid "repack: Expecting full hex object ID lines only from pack-objects."18247msgstr ""18248"repack: Erwarte Zeilen mit vollständiger Hex-Objekt-ID nur von pack-objects."1824918250#: builtin/repack.c:25618251msgid "could not finish pack-objects to repack promisor objects"18252msgstr ""18253"Konnte 'pack-objects' für das Neupacken von Objekten aus partiell geklonten\n"18254"Remote-Repositories nicht abschließen."1825518256#: builtin/repack.c:29418257msgid "pack everything in a single pack"18258msgstr "alles in eine einzige Pack-Datei packen"1825918260#: builtin/repack.c:29618261msgid "same as -a, and turn unreachable objects loose"18262msgstr "genau wie -a, unerreichbare Objekte werden aber nicht gelöscht"1826318264#: builtin/repack.c:29918265msgid "remove redundant packs, and run git-prune-packed"18266msgstr "redundante Pakete entfernen und \"git-prune-packed\" ausführen"1826718268#: builtin/repack.c:30118269msgid "pass --no-reuse-delta to git-pack-objects"18270msgstr "--no-reuse-delta an git-pack-objects übergeben"1827118272#: builtin/repack.c:30318273msgid "pass --no-reuse-object to git-pack-objects"18274msgstr "--no-reuse-object an git-pack-objects übergeben"1827518276#: builtin/repack.c:30518277msgid "do not run git-update-server-info"18278msgstr "git-update-server-info nicht ausführen"1827918280#: builtin/repack.c:30818281msgid "pass --local to git-pack-objects"18282msgstr "--local an git-pack-objects übergeben"1828318284#: builtin/repack.c:31018285msgid "write bitmap index"18286msgstr "Bitmap-Index schreiben"1828718288#: builtin/repack.c:31218289msgid "pass --delta-islands to git-pack-objects"18290msgstr "--delta-islands an git-pack-objects übergeben"1829118292#: builtin/repack.c:31318293msgid "approxidate"18294msgstr "Datumsangabe"1829518296#: builtin/repack.c:31418297msgid "with -A, do not loosen objects older than this"18298msgstr "mit -A, keine Objekte älter als dieses Datum löschen"1829918300#: builtin/repack.c:31618301msgid "with -a, repack unreachable objects"18302msgstr "mit -a, nicht erreichbare Objekte neu packen"1830318304#: builtin/repack.c:31818305msgid "size of the window used for delta compression"18306msgstr "Größe des Fensters für die Delta-Kompression"1830718308#: builtin/repack.c:319 builtin/repack.c:32518309msgid "bytes"18310msgstr "Bytes"1831118312#: builtin/repack.c:32018313msgid "same as the above, but limit memory size instead of entries count"18314msgstr ""18315"gleiches wie oben, aber die Speichergröße anstatt der\n"18316"Anzahl der Einträge limitieren"1831718318#: builtin/repack.c:32218319msgid "limits the maximum delta depth"18320msgstr "die maximale Delta-Tiefe limitieren"1832118322#: builtin/repack.c:32418323msgid "limits the maximum number of threads"18324msgstr "maximale Anzahl von Threads limitieren"1832518326#: builtin/repack.c:32618327msgid "maximum size of each packfile"18328msgstr "maximale Größe für jede Paketdatei"1832918330#: builtin/repack.c:32818331msgid "repack objects in packs marked with .keep"18332msgstr ""18333"Objekte umpacken, die sich in mit .keep markierten Pack-Dateien befinden"1833418335#: builtin/repack.c:33018336msgid "do not repack this pack"18337msgstr "dieses Paket nicht neu packen"1833818339#: builtin/repack.c:34018340msgid "cannot delete packs in a precious-objects repo"18341msgstr "kann Pack-Dateien in precious-objects Repository nicht löschen"1834218343#: builtin/repack.c:34418344msgid "--keep-unreachable and -A are incompatible"18345msgstr "--keep-unreachable und -A sind inkompatibel"1834618347#: builtin/repack.c:42318348msgid "Nothing new to pack."18349msgstr "Nichts Neues zum Packen."1835018351#: builtin/repack.c:48418352#, c-format18353msgid ""18354"WARNING: Some packs in use have been renamed by\n"18355"WARNING: prefixing old- to their name, in order to\n"18356"WARNING: replace them with the new version of the\n"18357"WARNING: file. But the operation failed, and the\n"18358"WARNING: attempt to rename them back to their\n"18359"WARNING: original names also failed.\n"18360"WARNING: Please rename them in %s manually:\n"18361msgstr ""18362"WARNUNG: Einige in Verwendung befindliche Pakete wurden\n"18363"WARNUNG: umbenannt, indem 'old-' an deren Namen vorrangestellt\n"18364"WARNUNG: wurde, um diese mit der neuen Dateiversion zu ersetzen.\n"18365"WARNUNG: Diese Operation ist fehlgeschlagen. Der Versuch, die\n"18366"WARNUNG: Datei zu ihrem ursprünglichen Namen umzubenennen, schlug\n"18367"WARNUNG: ebenfalls fehl.\n"18368"WARNUNG: Bitte benennen Sie diese manuell nach %s um:\n"1836918370#: builtin/repack.c:53218371#, c-format18372msgid "failed to remove '%s'"18373msgstr "Fehler beim Löschen von '%s'"1837418375#: builtin/replace.c:2218376msgid "git replace [-f] <object> <replacement>"18377msgstr "git replace [-f] <Objekt> <Ersetzung>"1837818379#: builtin/replace.c:2318380msgid "git replace [-f] --edit <object>"18381msgstr "git replace [-f] --edit <Objekt>"1838218383#: builtin/replace.c:2418384msgid "git replace [-f] --graft <commit> [<parent>...]"18385msgstr "git replace [-f] --graft <Commit> [<Eltern-Commit>...]"1838618387#: builtin/replace.c:2518388msgid "git replace [-f] --convert-graft-file"18389msgstr "git replace [-f] --convert-graft-file"1839018391#: builtin/replace.c:2618392msgid "git replace -d <object>..."18393msgstr "git replace -d <Objekt>..."1839418395#: builtin/replace.c:2718396msgid "git replace [--format=<format>] [-l [<pattern>]]"18397msgstr "git replace [--format=<Format>] [-l [<Muster>]]"1839818399#: builtin/replace.c:9018400#, c-format18401msgid ""18402"invalid replace format '%s'\n"18403"valid formats are 'short', 'medium' and 'long'"18404msgstr ""18405"Ungültiges Ersetzungsformat '%s'\n"18406"Gültige Formate sind 'short', 'medium' und 'long'."1840718408#: builtin/replace.c:12518409#, c-format18410msgid "replace ref '%s' not found"18411msgstr "Ersetzende Referenz '%s' nicht gefunden."1841218413#: builtin/replace.c:14118414#, c-format18415msgid "Deleted replace ref '%s'"18416msgstr "Ersetzende Referenz '%s' gelöscht."1841718418#: builtin/replace.c:15318419#, c-format18420msgid "'%s' is not a valid ref name"18421msgstr "'%s' ist kein gültiger Referenzname."1842218423#: builtin/replace.c:15818424#, c-format18425msgid "replace ref '%s' already exists"18426msgstr "Ersetzende Referenz '%s' existiert bereits."1842718428#: builtin/replace.c:17818429#, c-format18430msgid ""18431"Objects must be of the same type.\n"18432"'%s' points to a replaced object of type '%s'\n"18433"while '%s' points to a replacement object of type '%s'."18434msgstr ""18435"Objekte müssen vom selben Typ sein.\n"18436"'%s' zeigt auf ein ersetztes Objekt vom Typ '%s'\n"18437"während '%s' auf ein ersetzendes Objekt vom Typ '%s'\n"18438"zeigt."1843918440#: builtin/replace.c:22918441#, c-format18442msgid "unable to open %s for writing"18443msgstr "Konnte '%s' nicht zum Schreiben öffnen."1844418445#: builtin/replace.c:24218446msgid "cat-file reported failure"18447msgstr "cat-file meldete Fehler."1844818449#: builtin/replace.c:25818450#, c-format18451msgid "unable to open %s for reading"18452msgstr "Konnte '%s' nicht zum Lesen öffnen."1845318454#: builtin/replace.c:27218455msgid "unable to spawn mktree"18456msgstr "Konnte mktree nicht ausführen."1845718458#: builtin/replace.c:27618459msgid "unable to read from mktree"18460msgstr "Konnte nicht von mktree lesen."1846118462#: builtin/replace.c:28518463msgid "mktree reported failure"18464msgstr "mktree meldete Fehler."1846518466#: builtin/replace.c:28918467msgid "mktree did not return an object name"18468msgstr "mktree lieferte keinen Objektnamen zurück."1846918470#: builtin/replace.c:29818471#, c-format18472msgid "unable to fstat %s"18473msgstr "Kann fstat auf %s nicht ausführen."1847418475#: builtin/replace.c:30318476msgid "unable to write object to database"18477msgstr "Konnte Objekt nicht in Datenbank schreiben."1847818479#: builtin/replace.c:322 builtin/replace.c:377 builtin/replace.c:42218480#: builtin/replace.c:45218481#, c-format18482msgid "not a valid object name: '%s'"18483msgstr "Kein gültiger Objektname: '%s'"1848418485#: builtin/replace.c:32618486#, c-format18487msgid "unable to get object type for %s"18488msgstr "Konnte Objektart von %s nicht bestimmten."1848918490#: builtin/replace.c:34218491msgid "editing object file failed"18492msgstr "Bearbeiten von Objektdatei fehlgeschlagen."1849318494#: builtin/replace.c:35118495#, c-format18496msgid "new object is the same as the old one: '%s'"18497msgstr "Neues Objekt ist dasselbe wie das alte: '%s'"1849818499#: builtin/replace.c:38318500#, c-format18501msgid "could not parse %s as a commit"18502msgstr "Konnte nicht %s als Commit parsen."1850318504#: builtin/replace.c:41418505#, c-format18506msgid "bad mergetag in commit '%s'"18507msgstr "ungültiger Merge-Tag in Commit '%s'"1850818509#: builtin/replace.c:41618510#, c-format18511msgid "malformed mergetag in commit '%s'"18512msgstr "fehlerhafter Merge-Tag in Commit '%s'"1851318514#: builtin/replace.c:42818515#, c-format18516msgid ""18517"original commit '%s' contains mergetag '%s' that is discarded; use --edit "18518"instead of --graft"18519msgstr ""18520"Der ursprüngliche Commit '%s' enthält Merge-Tag '%s', der verworfen\n"18521"wird; benutzen Sie --edit anstatt --graft"1852218523#: builtin/replace.c:46718524#, c-format18525msgid "the original commit '%s' has a gpg signature"18526msgstr "Der originale Commit '%s' hat eine GPG-Signatur."1852718528#: builtin/replace.c:46818529msgid "the signature will be removed in the replacement commit!"18530msgstr "Die Signatur wird in dem Ersetzungs-Commit entfernt!"1853118532#: builtin/replace.c:47818533#, c-format18534msgid "could not write replacement commit for: '%s'"18535msgstr "Konnte Ersetzungs-Commit für '%s' nicht schreiben"1853618537#: builtin/replace.c:48618538#, c-format18539msgid "graft for '%s' unnecessary"18540msgstr "Künstlicher Vorgänger (\"graft\") für '%s' nicht notwendig."1854118542#: builtin/replace.c:49018543#, c-format18544msgid "new commit is the same as the old one: '%s'"18545msgstr "Neuer Commit ist derselbe wie der alte: '%s'"1854618547#: builtin/replace.c:52518548#, c-format18549msgid ""18550"could not convert the following graft(s):\n"18551"%s"18552msgstr ""18553"Konnte die folgenden künstlichen Vorgänger (\"grafts\") nicht konvertieren:\n"18554"%s"1855518556#: builtin/replace.c:54618557msgid "list replace refs"18558msgstr "ersetzende Referenzen auflisten"1855918560#: builtin/replace.c:54718561msgid "delete replace refs"18562msgstr "ersetzende Referenzen löschen"1856318564#: builtin/replace.c:54818565msgid "edit existing object"18566msgstr "existierendes Objekt bearbeiten"1856718568#: builtin/replace.c:54918569msgid "change a commit's parents"18570msgstr "Eltern-Commits eines Commits ändern"1857118572#: builtin/replace.c:55018573msgid "convert existing graft file"18574msgstr "existierende Datei des künstlichen Vorgängers (\"graft\") konvertieren"1857518576#: builtin/replace.c:55118577msgid "replace the ref if it exists"18578msgstr "die Referenz ersetzen, wenn sie existiert"1857918580#: builtin/replace.c:55318581msgid "do not pretty-print contents for --edit"18582msgstr "keine ansprechende Anzeige des Objektinhaltes für --edit"1858318584#: builtin/replace.c:55418585msgid "use this format"18586msgstr "das angegebene Format benutzen"1858718588#: builtin/replace.c:56718589msgid "--format cannot be used when not listing"18590msgstr "--format kann nicht beim Auflisten verwendet werden."1859118592#: builtin/replace.c:57518593msgid "-f only makes sense when writing a replacement"18594msgstr "-f macht nur beim Schreiben einer Ersetzung Sinn."1859518596#: builtin/replace.c:57918597msgid "--raw only makes sense with --edit"18598msgstr "--raw macht nur mit --edit Sinn."1859918600#: builtin/replace.c:58518601msgid "-d needs at least one argument"18602msgstr "-d benötigt mindestens ein Argument."1860318604#: builtin/replace.c:59118605msgid "bad number of arguments"18606msgstr "Ungültige Anzahl von Argumenten."1860718608#: builtin/replace.c:59718609msgid "-e needs exactly one argument"18610msgstr "-e benötigt genau ein Argument."1861118612#: builtin/replace.c:60318613msgid "-g needs at least one argument"18614msgstr "-g benötigt mindestens ein Argument."1861518616#: builtin/replace.c:60918617msgid "--convert-graft-file takes no argument"18618msgstr "--convert-graft-file erwartet keine Argumente"1861918620#: builtin/replace.c:61518621msgid "only one pattern can be given with -l"18622msgstr "Mit -l kann nur ein Muster angegeben werden."1862318624#: builtin/rerere.c:1318625msgid "git rerere [clear | forget <path>... | status | remaining | diff | gc]"18626msgstr "git rerere [clean | forget <Pfad>... | status | remaining | diff | gc]"1862718628#: builtin/rerere.c:6018629msgid "register clean resolutions in index"18630msgstr "saubere Auflösungen im Index registrieren"1863118632#: builtin/rerere.c:7918633msgid "'git rerere forget' without paths is deprecated"18634msgstr "'git rerere forget' ohne Pfade ist veraltet."1863518636#: builtin/rerere.c:11318637#, c-format18638msgid "unable to generate diff for '%s'"18639msgstr "Konnte kein Diff für '%s' generieren."1864018641#: builtin/reset.c:3218642msgid ""18643"git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]"18644msgstr ""18645"git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<Commit>]"1864618647#: builtin/reset.c:3318648msgid "git reset [-q] [<tree-ish>] [--] <paths>..."18649msgstr "git reset [-q] [<Commit-Referenz>] [--] <Pfade>..."1865018651#: builtin/reset.c:3418652msgid "git reset --patch [<tree-ish>] [--] [<paths>...]"18653msgstr "git reset --patch [<Commit-Referenz>] [--] [<Pfade>...]"1865418655#: builtin/reset.c:4018656msgid "mixed"18657msgstr "mixed"1865818659#: builtin/reset.c:4018660msgid "soft"18661msgstr "soft"1866218663#: builtin/reset.c:4018664msgid "hard"18665msgstr "hard"1866618667#: builtin/reset.c:4018668msgid "merge"18669msgstr "zusammenführen"1867018671#: builtin/reset.c:4018672msgid "keep"18673msgstr "keep"1867418675#: builtin/reset.c:8118676msgid "You do not have a valid HEAD."18677msgstr "Sie haben keinen gültigen HEAD."1867818679#: builtin/reset.c:8318680msgid "Failed to find tree of HEAD."18681msgstr "Fehler beim Finden des \"Tree\"-Objektes von HEAD."1868218683#: builtin/reset.c:8918684#, c-format18685msgid "Failed to find tree of %s."18686msgstr "Fehler beim Finden des \"Tree\"-Objektes von %s."1868718688#: builtin/reset.c:19318689#, c-format18690msgid "Cannot do a %s reset in the middle of a merge."18691msgstr "Kann keinen '%s'-Reset durchführen, während ein Merge im Gange ist."1869218693#: builtin/reset.c:293 builtin/stash.c:514 builtin/stash.c:58918694#: builtin/stash.c:61318695msgid "be quiet, only report errors"18696msgstr "weniger Ausgaben, nur Fehler melden"1869718698#: builtin/reset.c:29518699msgid "reset HEAD and index"18700msgstr "HEAD und Index umsetzen"1870118702#: builtin/reset.c:29618703msgid "reset only HEAD"18704msgstr "nur HEAD umsetzen"1870518706#: builtin/reset.c:298 builtin/reset.c:30018707msgid "reset HEAD, index and working tree"18708msgstr "HEAD, Index und Arbeitsverzeichnis umsetzen"1870918710#: builtin/reset.c:30218711msgid "reset HEAD but keep local changes"18712msgstr "HEAD umsetzen, aber lokale Änderungen behalten"1871318714#: builtin/reset.c:30818715msgid "record only the fact that removed paths will be added later"18716msgstr "nur speichern, dass gelöschte Pfade später hinzugefügt werden sollen"1871718718#: builtin/reset.c:32618719#, c-format18720msgid "Failed to resolve '%s' as a valid revision."18721msgstr "Konnte '%s' nicht als gültigen Commit auflösen."1872218723#: builtin/reset.c:33418724#, c-format18725msgid "Failed to resolve '%s' as a valid tree."18726msgstr "Konnte '%s' nicht als gültiges \"Tree\"-Objekt auflösen."1872718728#: builtin/reset.c:34318729msgid "--patch is incompatible with --{hard,mixed,soft}"18730msgstr "--patch ist inkompatibel mit --{hard,mixed,soft}"1873118732#: builtin/reset.c:35318733msgid "--mixed with paths is deprecated; use 'git reset -- <paths>' instead."18734msgstr ""18735"--mixed mit Pfaden ist veraltet; benutzen Sie stattdessen 'git reset -- "18736"<Pfade>'."1873718738#: builtin/reset.c:35518739#, c-format18740msgid "Cannot do %s reset with paths."18741msgstr "Ein '%s'-Reset mit Pfaden ist nicht möglich."1874218743#: builtin/reset.c:37018744#, c-format18745msgid "%s reset is not allowed in a bare repository"18746msgstr "'%s'-Reset ist in einem Bare-Repository nicht erlaubt"1874718748#: builtin/reset.c:37418749msgid "-N can only be used with --mixed"18750msgstr "-N kann nur mit -mixed benutzt werden"1875118752#: builtin/reset.c:39518753msgid "Unstaged changes after reset:"18754msgstr "Nicht zum Commit vorgemerkte Änderungen nach Zurücksetzung:"1875518756#: builtin/reset.c:39818757#, c-format18758msgid ""18759"\n"18760"It took %.2f seconds to enumerate unstaged changes after reset. You can\n"18761"use '--quiet' to avoid this. Set the config setting reset.quiet to true\n"18762"to make this the default.\n"18763msgstr ""18764"\n"18765"Es dauerte %.2f Sekunden, um über die nach einem Reset nicht zum Commit\n"18766"vorgemerkten Änderungen zu zählen. Sie können '--quiet' benutzen, um\n"18767"das zu verhindern. Setzen Sie die Konfigurationseinstellung reset.quiet\n"18768"auf \"true\", um das zum Standard zu machen.\n"1876918770#: builtin/reset.c:40818771#, c-format18772msgid "Could not reset index file to revision '%s'."18773msgstr "Konnte Index-Datei nicht zu Commit '%s' setzen."1877418775#: builtin/reset.c:41218776msgid "Could not write new index file."18777msgstr "Konnte neue Index-Datei nicht schreiben."1877818779#: builtin/rev-list.c:40518780msgid "cannot combine --exclude-promisor-objects and --missing"18781msgstr ""18782"--exclude-promisor-objects und --missing können nicht kombiniert werden."1878318784#: builtin/rev-list.c:46618785msgid "object filtering requires --objects"18786msgstr "Das Filtern von Objekten erfordert --objects."1878718788#: builtin/rev-list.c:46918789#, c-format18790msgid "invalid sparse value '%s'"18791msgstr "Ungültiger \"sparse\"-Wert '%s'."1879218793#: builtin/rev-list.c:51018794msgid "rev-list does not support display of notes"18795msgstr "rev-list unterstützt keine Anzeige von Notizen"1879618797#: builtin/rev-list.c:51318798msgid "cannot combine --use-bitmap-index with object filtering"18799msgstr ""18800"--use-bitmap-index kann nicht mit dem Filtern von Objekten kombiniert werden."1880118802#: builtin/rev-parse.c:40818803msgid "git rev-parse --parseopt [<options>] -- [<args>...]"18804msgstr "git rev-parse --parseopt [<Optionen>] -- [<Argumente>...]"1880518806#: builtin/rev-parse.c:41318807msgid "keep the `--` passed as an arg"18808msgstr "`--` als Argument lassen"1880918810#: builtin/rev-parse.c:41518811msgid "stop parsing after the first non-option argument"18812msgstr "das Parsen nach dem ersten Argument, was keine Option ist, stoppen"1881318814#: builtin/rev-parse.c:41818815msgid "output in stuck long form"18816msgstr ""18817"Ausgabe in Langform mit Argumenten an den Optionen (getrennt durch '=')"1881818819#: builtin/rev-parse.c:55118820msgid ""18821"git rev-parse --parseopt [<options>] -- [<args>...]\n"18822" or: git rev-parse --sq-quote [<arg>...]\n"18823" or: git rev-parse [<options>] [<arg>...]\n"18824"\n"18825"Run \"git rev-parse --parseopt -h\" for more information on the first usage."18826msgstr ""18827"git rev-parse --parseopt [<Optionen>] -- [<Argumente>...]\n"18828" oder: git rev-parse --sq-quote [<Argumente>...]\n"18829" oder: git rev-parse [<Optionen>] [<Argumente>...]\n"18830"\n"18831"Führen Sie \"git rev-parse --parseopt -h\" für weitere Informationen bei "18832"erster Verwendung aus."1883318834#: builtin/revert.c:2418835msgid "git revert [<options>] <commit-ish>..."18836msgstr "git revert [<Optionen>] <Commit-Angabe>..."1883718838#: builtin/revert.c:2518839msgid "git revert <subcommand>"18840msgstr "git revert <Unterbefehl>"1884118842#: builtin/revert.c:3018843msgid "git cherry-pick [<options>] <commit-ish>..."18844msgstr "git cherry-pick [<Optionen>] <Commit-Angabe>..."1884518846#: builtin/revert.c:3118847msgid "git cherry-pick <subcommand>"18848msgstr "git cherry-pick <Unterbefehl>"1884918850#: builtin/revert.c:7218851#, c-format18852msgid "option `%s' expects a number greater than zero"18853msgstr "Option `%s' erwartet eine Nummer größer als 0."1885418855#: builtin/revert.c:9218856#, c-format18857msgid "%s: %s cannot be used with %s"18858msgstr "%s: %s kann nicht mit %s verwendet werden"1885918860#: builtin/revert.c:10218861msgid "end revert or cherry-pick sequence"18862msgstr "\"revert\" oder \"cherry-pick\" Ablauf beenden"1886318864#: builtin/revert.c:10318865msgid "resume revert or cherry-pick sequence"18866msgstr "\"revert\" oder \"cherry-pick\" Ablauf fortsetzen"1886718868#: builtin/revert.c:10418869msgid "cancel revert or cherry-pick sequence"18870msgstr "\"revert\" oder \"cherry-pick\" Ablauf abbrechen"1887118872#: builtin/revert.c:10618873msgid "don't automatically commit"18874msgstr "nicht automatisch committen"1887518876#: builtin/revert.c:10718877msgid "edit the commit message"18878msgstr "Commit-Beschreibung bearbeiten"1887918880#: builtin/revert.c:11018881msgid "parent-number"18882msgstr "Nummer des Elternteils"1888318884#: builtin/revert.c:11118885msgid "select mainline parent"18886msgstr "Elternteil der Hauptlinie auswählen"1888718888#: builtin/revert.c:11318889msgid "merge strategy"18890msgstr "Merge-Strategie"1889118892#: builtin/revert.c:11518893msgid "option for merge strategy"18894msgstr "Option für Merge-Strategie"1889518896#: builtin/revert.c:12418897msgid "append commit name"18898msgstr "Commit-Namen anhängen"1889918900#: builtin/revert.c:12618901msgid "preserve initially empty commits"18902msgstr "ursprüngliche, leere Commits erhalten"1890318904#: builtin/revert.c:12818905msgid "keep redundant, empty commits"18906msgstr "redundante, leere Commits behalten"1890718908#: builtin/revert.c:22718909msgid "revert failed"18910msgstr "\"revert\" fehlgeschlagen"1891118912#: builtin/revert.c:24018913msgid "cherry-pick failed"18914msgstr "\"cherry-pick\" fehlgeschlagen"1891518916#: builtin/rm.c:1918917msgid "git rm [<options>] [--] <file>..."18918msgstr "git rm [<Optionen>] [--] <Datei>..."1891918920#: builtin/rm.c:20718921msgid ""18922"the following file has staged content different from both the\n"18923"file and the HEAD:"18924msgid_plural ""18925"the following files have staged content different from both the\n"18926"file and the HEAD:"18927msgstr[0] ""18928"die folgende Datei hat zum Commit vorgemerkte Änderungen unterschiedlich\n"18929"zu der Datei und HEAD:"18930msgstr[1] ""18931"die folgenden Dateien haben zum Commit vorgemerkte Änderungen "18932"unterschiedlich\n"18933"zu der Datei und HEAD:"1893418935#: builtin/rm.c:21218936msgid ""18937"\n"18938"(use -f to force removal)"18939msgstr ""18940"\n"18941"(benutzen Sie -f, um die Löschung zu erzwingen)"1894218943#: builtin/rm.c:21618944msgid "the following file has changes staged in the index:"18945msgid_plural "the following files have changes staged in the index:"18946msgstr[0] "die folgende Datei hat zum Commit vorgemerkte Änderungen:"18947msgstr[1] "die folgenden Dateien haben zum Commit vorgemerkte Änderungen:"1894818949#: builtin/rm.c:220 builtin/rm.c:22918950msgid ""18951"\n"18952"(use --cached to keep the file, or -f to force removal)"18953msgstr ""18954"\n"18955"(benutzen Sie --cached, um die Datei zu behalten, oder -f, um das Entfernen "18956"zu erzwingen)"1895718958#: builtin/rm.c:22618959msgid "the following file has local modifications:"18960msgid_plural "the following files have local modifications:"18961msgstr[0] "die folgende Datei hat lokale Änderungen:"18962msgstr[1] "die folgenden Dateien haben lokale Änderungen:"1896318964#: builtin/rm.c:24218965msgid "do not list removed files"18966msgstr "keine gelöschten Dateien auflisten"1896718968#: builtin/rm.c:24318969msgid "only remove from the index"18970msgstr "nur aus dem Index entfernen"1897118972#: builtin/rm.c:24418973msgid "override the up-to-date check"18974msgstr "die \"up-to-date\" Prüfung überschreiben"1897518976#: builtin/rm.c:24518977msgid "allow recursive removal"18978msgstr "rekursives Entfernen erlauben"1897918980#: builtin/rm.c:24718981msgid "exit with a zero status even if nothing matched"18982msgstr "mit Rückgabewert 0 beenden, wenn keine Übereinstimmung gefunden wurde"1898318984#: builtin/rm.c:28918985msgid "please stage your changes to .gitmodules or stash them to proceed"18986msgstr ""18987"Bitte merken Sie Ihre Änderungen in .gitmodules zum Commit vor oder\n"18988"benutzen Sie \"stash\", um fortzufahren."1898918990#: builtin/rm.c:30718991#, c-format18992msgid "not removing '%s' recursively without -r"18993msgstr "'%s' wird nicht ohne -r rekursiv entfernt"1899418995#: builtin/rm.c:34618996#, c-format18997msgid "git rm: unable to remove %s"18998msgstr "git rm: konnte %s nicht löschen"1899919000#: builtin/send-pack.c:2019001msgid ""19002"git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-"19003"receive-pack>] [--verbose] [--thin] [--atomic] [<host>:]<directory> "19004"[<ref>...]\n"19005" --all and explicit <ref> specification are mutually exclusive."19006msgstr ""19007"git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-"19008"receive-pack>] [--verbose] [--thin] [--atomic] [<Host>:]<Verzeichnis> "19009"[<Referenz>...]\n"19010" --all und die explizite Angabe einer <Referenz> schließen sich gegenseitig "19011"aus."1901219013#: builtin/send-pack.c:16319014msgid "remote name"19015msgstr "Name des Remote-Repositories"1901619017#: builtin/send-pack.c:17719018msgid "use stateless RPC protocol"19019msgstr "zustandsloses RPC-Protokoll verwenden"1902019021#: builtin/send-pack.c:17819022msgid "read refs from stdin"19023msgstr "Referenzen von der Standard-Eingabe lesen"1902419025#: builtin/send-pack.c:17919026msgid "print status from remote helper"19027msgstr "Status des Remote-Helpers ausgeben"1902819029#: builtin/shortlog.c:1419030msgid "git shortlog [<options>] [<revision-range>] [[--] <path>...]"19031msgstr "git shortlog [<Optionen>] [<Commitbereich>] [[--] <Pfad>...]"1903219033#: builtin/shortlog.c:1519034msgid "git log --pretty=short | git shortlog [<options>]"19035msgstr "git log --pretty=short | git shortlog [<Optionen>]"1903619037#: builtin/shortlog.c:26419038msgid "Group by committer rather than author"19039msgstr "über Commit-Ersteller anstatt Autor gruppieren"1904019041#: builtin/shortlog.c:26619042msgid "sort output according to the number of commits per author"19043msgstr "die Ausgabe entsprechend der Anzahl von Commits pro Autor sortieren"1904419045#: builtin/shortlog.c:26819046msgid "Suppress commit descriptions, only provides commit count"19047msgstr "Commit-Beschreibungen unterdrücken, nur Anzahl der Commits liefern"1904819049#: builtin/shortlog.c:27019050msgid "Show the email address of each author"19051msgstr "die E-Mail-Adresse von jedem Autor anzeigen"1905219053#: builtin/shortlog.c:27119054msgid "<w>[,<i1>[,<i2>]]"19055msgstr "<w>[,<i1>[,<i2>]]"1905619057#: builtin/shortlog.c:27219058msgid "Linewrap output"19059msgstr "Ausgabe mit Zeilenumbrüchen"1906019061#: builtin/shortlog.c:30119062msgid "too many arguments given outside repository"19063msgstr "zu viele Argumente außerhalb des Repositories angegeben"1906419065#: builtin/show-branch.c:1319066msgid ""19067"git show-branch [-a | --all] [-r | --remotes] [--topo-order | --date-order]\n"19068"\t\t[--current] [--color[=<when>] | --no-color] [--sparse]\n"19069"\t\t[--more=<n> | --list | --independent | --merge-base]\n"19070"\t\t[--no-name | --sha1-name] [--topics] [(<rev> | <glob>)...]"19071msgstr ""19072"git show-branch [-a | --all] [-r | --remotes] [--topo-order | --date-order]\n"19073"\t\t[--current] [--color[=<Wann>] | --no-color] [--sparse]\n"19074"\t\t[--more=<n> | --list | --independent | --merge-base]\n"19075"\t\t[--no-name | --sha1-name] [--topics] [(<Commit> | <glob>)...]"1907619077#: builtin/show-branch.c:1719078msgid "git show-branch (-g | --reflog)[=<n>[,<base>]] [--list] [<ref>]"19079msgstr "git show-branch (-g | --reflog)[=<n>[,<Basis>]] [--list] [<Referenz>]"1908019081#: builtin/show-branch.c:39519082#, c-format19083msgid "ignoring %s; cannot handle more than %d ref"19084msgid_plural "ignoring %s; cannot handle more than %d refs"19085msgstr[0] "ignoriere %s; kann nicht mehr als %d Referenz behandeln"19086msgstr[1] "ignoriere %s; kann nicht mehr als %d Referenzen behandeln"1908719088#: builtin/show-branch.c:54919089#, c-format19090msgid "no matching refs with %s"19091msgstr "keine übereinstimmenden Referenzen mit %s"1909219093#: builtin/show-branch.c:64619094msgid "show remote-tracking and local branches"19095msgstr "Remote-Tracking und lokale Branches anzeigen"1909619097#: builtin/show-branch.c:64819098msgid "show remote-tracking branches"19099msgstr "Remote-Tracking-Branches anzeigen"1910019101#: builtin/show-branch.c:65019102msgid "color '*!+-' corresponding to the branch"19103msgstr "'*!+-' entsprechend des Branches einfärben"1910419105#: builtin/show-branch.c:65219106msgid "show <n> more commits after the common ancestor"19107msgstr "<n> weitere Commits nach dem gemeinsamen Vorgänger-Commit anzeigen"1910819109#: builtin/show-branch.c:65419110msgid "synonym to more=-1"19111msgstr "Synonym für more=-1"1911219113#: builtin/show-branch.c:65519114msgid "suppress naming strings"19115msgstr "Namen unterdrücken"1911619117#: builtin/show-branch.c:65719118msgid "include the current branch"19119msgstr "den aktuellen Branch einbeziehen"1912019121#: builtin/show-branch.c:65919122msgid "name commits with their object names"19123msgstr "Commits nach ihren Objektnamen benennen"1912419125#: builtin/show-branch.c:66119126msgid "show possible merge bases"19127msgstr "mögliche Merge-Basen anzeigen"1912819129#: builtin/show-branch.c:66319130msgid "show refs unreachable from any other ref"19131msgstr ""19132"Referenzen, die unerreichbar von allen anderen Referenzen sind, anzeigen"1913319134#: builtin/show-branch.c:66519135msgid "show commits in topological order"19136msgstr "Commits in topologischer Ordnung anzeigen"1913719138#: builtin/show-branch.c:66819139msgid "show only commits not on the first branch"19140msgstr "nur Commits anzeigen, die sich nicht im ersten Branch befinden"1914119142#: builtin/show-branch.c:67019143msgid "show merges reachable from only one tip"19144msgstr "Merges anzeigen, die nur von einem Branch aus erreichbar sind"1914519146#: builtin/show-branch.c:67219147msgid "topologically sort, maintaining date order where possible"19148msgstr "topologische Sortierung, Beibehaltung Datumsordnung wo möglich"1914919150#: builtin/show-branch.c:67519151msgid "<n>[,<base>]"19152msgstr "<n>[,<Basis>]"1915319154#: builtin/show-branch.c:67619155msgid "show <n> most recent ref-log entries starting at base"19156msgstr "die <n> jüngsten Einträge im Reflog, beginnend an der Basis, anzeigen"1915719158#: builtin/show-branch.c:71219159msgid ""19160"--reflog is incompatible with --all, --remotes, --independent or --merge-base"19161msgstr ""19162"--reflog ist inkompatibel mit --all, --remotes, --independent oder --merge-"19163"base"1916419165#: builtin/show-branch.c:73619166msgid "no branches given, and HEAD is not valid"19167msgstr "keine Branches angegeben, und HEAD ist ungültig"1916819169#: builtin/show-branch.c:73919170msgid "--reflog option needs one branch name"19171msgstr "Die Option --reflog benötigt einen Branchnamen."1917219173#: builtin/show-branch.c:74219174#, c-format19175msgid "only %d entry can be shown at one time."19176msgid_plural "only %d entries can be shown at one time."19177msgstr[0] "nur %d Eintrag kann zur selben Zeit angezeigt werden"19178msgstr[1] "nur %d Einträge können zur selben Zeit angezeigt werden"1917919180#: builtin/show-branch.c:74619181#, c-format19182msgid "no such ref %s"19183msgstr "Referenz nicht gefunden: %s"1918419185#: builtin/show-branch.c:83219186#, c-format19187msgid "cannot handle more than %d rev."19188msgid_plural "cannot handle more than %d revs."19189msgstr[0] "Kann nicht mehr als %d Commit behandeln."19190msgstr[1] "Kann nicht mehr als %d Commits behandeln."1919119192#: builtin/show-branch.c:83619193#, c-format19194msgid "'%s' is not a valid ref."19195msgstr "'%s' ist keine gültige Referenz."1919619197#: builtin/show-branch.c:83919198#, c-format19199msgid "cannot find commit %s (%s)"19200msgstr "kann Commit %s (%s) nicht finden"1920119202#: builtin/show-ref.c:1219203msgid ""19204"git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --"19205"hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<pattern>...]"19206msgstr ""19207"git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --"19208"hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<Muster>...] "1920919210#: builtin/show-ref.c:1319211msgid "git show-ref --exclude-existing[=<pattern>]"19212msgstr "git show-ref --exclude-existing[=<Muster>]"1921319214#: builtin/show-ref.c:16219215msgid "only show tags (can be combined with heads)"19216msgstr "nur Tags anzeigen (kann mit \"heads\" kombiniert werden)"1921719218#: builtin/show-ref.c:16319219msgid "only show heads (can be combined with tags)"19220msgstr "nur Branches anzeigen (kann mit \"tags\" kombiniert werden)"1922119222#: builtin/show-ref.c:16419223msgid "stricter reference checking, requires exact ref path"19224msgstr "strengere Referenzprüfung, erfordert exakten Referenzpfad"1922519226#: builtin/show-ref.c:167 builtin/show-ref.c:16919227msgid "show the HEAD reference, even if it would be filtered out"19228msgstr ""19229"die HEAD-Referenz anzeigen, selbst wenn diese ausgefiltert werden würde"1923019231#: builtin/show-ref.c:17119232msgid "dereference tags into object IDs"19233msgstr "Tags in Objekt-Identifikationen dereferenzieren"1923419235#: builtin/show-ref.c:17319236msgid "only show SHA1 hash using <n> digits"19237msgstr "nur SHA1 Hash mit <n> Ziffern anzeigen"1923819239#: builtin/show-ref.c:17719240msgid "do not print results to stdout (useful with --verify)"19241msgstr ""19242"keine Ausgabe der Ergebnisse in die Standard-Ausgabe (nützlich mit --verify)"1924319244#: builtin/show-ref.c:17919245msgid "show refs from stdin that aren't in local repository"19246msgstr ""19247"Referenzen von der Standard-Eingabe anzeigen, die sich nicht im lokalen "19248"Repository befinden"1924919250#: builtin/stash.c:22 builtin/stash.c:3719251msgid "git stash list [<options>]"19252msgstr "git stash list [<Optionen>]"1925319254#: builtin/stash.c:23 builtin/stash.c:4219255msgid "git stash show [<options>] [<stash>]"19256msgstr "git stash show [<Optionen>] [<Stash>]"1925719258#: builtin/stash.c:24 builtin/stash.c:4719259msgid "git stash drop [-q|--quiet] [<stash>]"19260msgstr "git stash drop [-q|--quiet] [<Stash>]"1926119262#: builtin/stash.c:2519263msgid "git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]"19264msgstr "git stash ( pop | apply ) [--index] [-q|--quiet] [<Stash>]"1926519266#: builtin/stash.c:26 builtin/stash.c:6219267msgid "git stash branch <branchname> [<stash>]"19268msgstr "git stash branch <Branch> [<Stash>]"1926919270#: builtin/stash.c:27 builtin/stash.c:6719271msgid "git stash clear"19272msgstr "git stash clear"1927319274#: builtin/stash.c:28 builtin/stash.c:7719275msgid ""19276"git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"19277" [-u|--include-untracked] [-a|--all] [-m|--message <message>]\n"19278" [--] [<pathspec>...]]"19279msgstr ""19280"git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"19281" [-u|--include-untracked] [-a|--all] [-m|--message <Nachricht>]\n"19282" [--] [<Pfadspezifikation>...]]"1928319284#: builtin/stash.c:31 builtin/stash.c:8419285msgid ""19286"git stash save [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"19287" [-u|--include-untracked] [-a|--all] [<message>]"19288msgstr ""19289"git stash save [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"19290" [-u|--include-untracked] [-a|--all] [<Nachricht>]"1929119292#: builtin/stash.c:5219293msgid "git stash pop [--index] [-q|--quiet] [<stash>]"19294msgstr "git stash pop [--index] [-q|--quiet] [<Stash>]"1929519296#: builtin/stash.c:5719297msgid "git stash apply [--index] [-q|--quiet] [<stash>]"19298msgstr "git stash apply [--index] [-q|--quiet] [<Stash>]"1929919300#: builtin/stash.c:7219301msgid "git stash store [-m|--message <message>] [-q|--quiet] <commit>"19302msgstr "git stash store [-m|--message <Nachricht>] [-q|--quiet] <Commit>"1930319304#: builtin/stash.c:12719305#, c-format19306msgid "'%s' is not a stash-like commit"19307msgstr "'%s' ist kein \"stash\"-artiger Commit"1930819309#: builtin/stash.c:14719310#, c-format19311msgid "Too many revisions specified:%s"19312msgstr "Zu viele Commits angegeben:%s"1931319314#: builtin/stash.c:161 git-legacy-stash.sh:54819315msgid "No stash entries found."19316msgstr "Keine Stash-Einträge gefunden."1931719318#: builtin/stash.c:17519319#, c-format19320msgid "%s is not a valid reference"19321msgstr "'%s' ist kein gültiger Referenzname."1932219323#: builtin/stash.c:224 git-legacy-stash.sh:7519324msgid "git stash clear with parameters is unimplemented"19325msgstr "git stash clear mit Parametern ist nicht implementiert"1932619327#: builtin/stash.c:40319328msgid "cannot apply a stash in the middle of a merge"19329msgstr "Kann Stash nicht anwenden, solange ein Merge im Gange ist"1933019331#: builtin/stash.c:41419332#, c-format19333msgid "could not generate diff %s^!."19334msgstr "Konnte keinen Diff erzeugen %s^!."1933519336#: builtin/stash.c:42119337msgid "conflicts in index.Try without --index."19338msgstr "Konflikte im Index. Versuchen Sie es ohne --index."1933919340#: builtin/stash.c:42719341msgid "could not save index tree"19342msgstr "Konnte Index-Verzeichnis nicht speichern"1934319344#: builtin/stash.c:43419345msgid "could not restore untracked files from stash"19346msgstr "Konnte unversionierte Dateien vom Stash nicht wiederherstellen."1934719348#: builtin/stash.c:44819349#, c-format19350msgid "Merging %s with %s"19351msgstr "Führe %s mit %s zusammen"1935219353#: builtin/stash.c:458 git-legacy-stash.sh:68019354msgid "Index was not unstashed."19355msgstr "Index wurde nicht aus dem Stash zurückgeladen."1935619357#: builtin/stash.c:516 builtin/stash.c:61519358msgid "attempt to recreate the index"19359msgstr "Versuche Index wiederherzustellen."1936019361#: builtin/stash.c:54919362#, c-format19363msgid "Dropped %s (%s)"19364msgstr "%s (%s) gelöscht"1936519366#: builtin/stash.c:55219367#, c-format19368msgid "%s: Could not drop stash entry"19369msgstr "%s: Konnte Stash-Eintrag nicht löschen"1937019371#: builtin/stash.c:57719372#, c-format19373msgid "'%s' is not a stash reference"19374msgstr "'%s' ist keine Stash-Referenz"1937519376#: builtin/stash.c:627 git-legacy-stash.sh:69419377msgid "The stash entry is kept in case you need it again."19378msgstr ""19379"Der Stash-Eintrag wird für den Fall behalten, dass Sie diesen nochmal "19380"benötigen."1938119382#: builtin/stash.c:650 git-legacy-stash.sh:71219383msgid "No branch name specified"19384msgstr "Kein Branchname spezifiziert"1938519386#: builtin/stash.c:789 builtin/stash.c:82619387#, c-format19388msgid "Cannot update %s with %s"19389msgstr "Kann nicht %s mit %s aktualisieren."1939019391#: builtin/stash.c:807 builtin/stash.c:1474 builtin/stash.c:151019392msgid "stash message"19393msgstr "Stash-Beschreibung"1939419395#: builtin/stash.c:81719396msgid "\"git stash store\" requires one <commit> argument"19397msgstr "\"git stash store\" erwartet ein Argument <Commit>"1939819399#: builtin/stash.c:1039 git-legacy-stash.sh:21719400msgid "No changes selected"19401msgstr "Keine Änderungen ausgewählt"1940219403#: builtin/stash.c:1135 git-legacy-stash.sh:15019404msgid "You do not have the initial commit yet"19405msgstr "Sie haben bisher noch keinen initialen Commit"1940619407#: builtin/stash.c:1162 git-legacy-stash.sh:16519408msgid "Cannot save the current index state"19409msgstr "Kann den aktuellen Zustand des Index nicht speichern"1941019411#: builtin/stash.c:1171 git-legacy-stash.sh:18019412msgid "Cannot save the untracked files"19413msgstr "Kann die unversionierten Dateien nicht speichern"1941419415#: builtin/stash.c:1182 builtin/stash.c:1191 git-legacy-stash.sh:20019416#: git-legacy-stash.sh:21319417msgid "Cannot save the current worktree state"19418msgstr "Kann den aktuellen Zustand des Arbeitsverzeichnisses nicht speichern"1941919420#: builtin/stash.c:1219 git-legacy-stash.sh:23319421msgid "Cannot record working tree state"19422msgstr "Kann Zustand des Arbeitsverzeichnisses nicht aufzeichnen"1942319424#: builtin/stash.c:1268 git-legacy-stash.sh:33719425msgid "Can't use --patch and --include-untracked or --all at the same time"19426msgstr ""19427"Kann nicht gleichzeitig --patch und --include-untracked oder --all verwenden"1942819429#: builtin/stash.c:128419430msgid "Did you forget to 'git add'?"19431msgstr "Haben Sie vielleicht 'git add' vergessen?"1943219433#: builtin/stash.c:1299 git-legacy-stash.sh:34519434msgid "No local changes to save"19435msgstr "Keine lokalen Änderungen zum Speichern"1943619437#: builtin/stash.c:1306 git-legacy-stash.sh:35019438msgid "Cannot initialize stash"19439msgstr "Kann \"stash\" nicht initialisieren"1944019441#: builtin/stash.c:1321 git-legacy-stash.sh:35419442msgid "Cannot save the current status"19443msgstr "Kann den aktuellen Status nicht speichern"1944419445#: builtin/stash.c:132619446#, c-format19447msgid "Saved working directory and index state %s"19448msgstr "Arbeitsverzeichnis und Index-Status %s gespeichert."1944919450#: builtin/stash.c:1430 git-legacy-stash.sh:38419451msgid "Cannot remove worktree changes"19452msgstr "Kann Änderungen im Arbeitsverzeichnis nicht löschen"1945319454#: builtin/stash.c:1465 builtin/stash.c:150119455msgid "keep index"19456msgstr "behalte Index"1945719458#: builtin/stash.c:1467 builtin/stash.c:150319459msgid "stash in patch mode"19460msgstr "Stash in Patch-Modus"1946119462#: builtin/stash.c:1468 builtin/stash.c:150419463msgid "quiet mode"19464msgstr "weniger Ausgaben"1946519466#: builtin/stash.c:1470 builtin/stash.c:150619467msgid "include untracked files in stash"19468msgstr "unversionierte Dateien in Stash einbeziehen"1946919470#: builtin/stash.c:1472 builtin/stash.c:150819471msgid "include ignore files"19472msgstr "ignorierte Dateien einbeziehen"1947319474#: builtin/stash.c:156819475#, c-format19476msgid "could not exec %s"19477msgstr "Konnte 'exec %s' nicht ausführen."1947819479#: builtin/stripspace.c:1819480msgid "git stripspace [-s | --strip-comments]"19481msgstr "git stripspace [-s | --strip-comments]"1948219483#: builtin/stripspace.c:1919484msgid "git stripspace [-c | --comment-lines]"19485msgstr "git stripspace [-c | --comment-lines]"1948619487#: builtin/stripspace.c:3719488msgid "skip and remove all lines starting with comment character"19489msgstr ""19490"alle Zeilen, die mit dem Kommentarzeichen beginnen, überspringen und "19491"entfernen"1949219493#: builtin/stripspace.c:4019494msgid "prepend comment character and space to each line"19495msgstr "Kommentarzeichen mit Leerzeichen an jede Zeile voranstellen"1949619497#: builtin/submodule--helper.c:45 builtin/submodule--helper.c:194219498#, c-format19499msgid "Expecting a full ref name, got %s"19500msgstr "Vollständiger Referenzname erwartet, %s erhalten"1950119502#: builtin/submodule--helper.c:6219503msgid "submodule--helper print-default-remote takes no arguments"19504msgstr "'submodule--helper print-default-remote' erwartet keine Argumente."1950519506#: builtin/submodule--helper.c:10019507#, c-format19508msgid "cannot strip one component off url '%s'"19509msgstr "Kann eine Komponente von URL '%s' nicht extrahieren"1951019511#: builtin/submodule--helper.c:408 builtin/submodule--helper.c:136719512msgid "alternative anchor for relative paths"19513msgstr "Alternativer Anker für relative Pfade"1951419515#: builtin/submodule--helper.c:41319516msgid "git submodule--helper list [--prefix=<path>] [<path>...]"19517msgstr "git submodule--helper list [--prefix=<Pfad>] [<Pfad>...]"1951819519#: builtin/submodule--helper.c:470 builtin/submodule--helper.c:62719520#: builtin/submodule--helper.c:65019521#, c-format19522msgid "No url found for submodule path '%s' in .gitmodules"19523msgstr "Keine URL für Submodul-Pfad '%s' in .gitmodules gefunden"1952419525#: builtin/submodule--helper.c:52219526#, c-format19527msgid "Entering '%s'\n"19528msgstr "Betrete '%s'\n"1952919530#: builtin/submodule--helper.c:52519531#, c-format19532msgid ""19533"run_command returned non-zero status for %s\n"19534"."19535msgstr ""19536"run_command gab nicht-Null Status für '%s' zurück.\n"19537"."1953819539#: builtin/submodule--helper.c:54619540#, c-format19541msgid ""19542"run_command returned non-zero status while recursing in the nested "19543"submodules of %s\n"19544"."19545msgstr ""19546"run_command gab während der Rekursion in verschachtelte Submodule von %s "19547"einen\n"19548"nicht-Null Status zurück.\n"19549"."1955019551#: builtin/submodule--helper.c:56219552msgid "Suppress output of entering each submodule command"19553msgstr ""19554"Ausgaben beim Betreten und der Befehlsausführung in einem Submodul "19555"unterdrücken"1955619557#: builtin/submodule--helper.c:564 builtin/submodule--helper.c:104919558msgid "Recurse into nested submodules"19559msgstr "Rekursion in verschachtelte Submodule durchführen"1956019561#: builtin/submodule--helper.c:56919562msgid "git submodule--helper foreach [--quiet] [--recursive] [--] <command>"19563msgstr "git submodule--helper foreach [--quiet] [--recursive] [--] <Befehl>"1956419565#: builtin/submodule--helper.c:59619566#, c-format19567msgid ""19568"could not look up configuration '%s'. Assuming this repository is its own "19569"authoritative upstream."19570msgstr ""19571"Konnte Konfiguration '%s' nicht nachschlagen. Nehme an, dass dieses\n"19572"Repository sein eigenes verbindliches Upstream-Repository ist."1957319574#: builtin/submodule--helper.c:66419575#, c-format19576msgid "Failed to register url for submodule path '%s'"19577msgstr ""19578"Fehler beim Eintragen der URL für Submodul-Pfad '%s' in die Konfiguration."1957919580#: builtin/submodule--helper.c:66819581#, c-format19582msgid "Submodule '%s' (%s) registered for path '%s'\n"19583msgstr "Submodul '%s' (%s) für Pfad '%s' in die Konfiguration eingetragen.\n"1958419585#: builtin/submodule--helper.c:67819586#, c-format19587msgid "warning: command update mode suggested for submodule '%s'\n"19588msgstr "Warnung: 'update'-Modus für Submodul '%s' vorgeschlagen\n"1958919590#: builtin/submodule--helper.c:68519591#, c-format19592msgid "Failed to register update mode for submodule path '%s'"19593msgstr ""19594"Fehler bei Änderung des Aktualisierungsmodus für Submodul-Pfad '%s' in der\n"19595"Konfiguration."1959619597#: builtin/submodule--helper.c:70719598msgid "Suppress output for initializing a submodule"19599msgstr "Ausgaben bei Initialisierung eines Submoduls unterdrücken"1960019601#: builtin/submodule--helper.c:71219602msgid "git submodule--helper init [<options>] [<path>]"19603msgstr "git submodule--helper init [<Optionen>] [<Pfad>]"1960419605#: builtin/submodule--helper.c:784 builtin/submodule--helper.c:91019606#, c-format19607msgid "no submodule mapping found in .gitmodules for path '%s'"19608msgstr "Keine Submodul-Zuordnung in .gitmodules für Pfad '%s' gefunden"1960919610#: builtin/submodule--helper.c:82319611#, c-format19612msgid "could not resolve HEAD ref inside the submodule '%s'"19613msgstr "Konnte HEAD-Referenz nicht innerhalb des Submodul-Pfads '%s' auflösen."1961419615#: builtin/submodule--helper.c:850 builtin/submodule--helper.c:101919616#, c-format19617msgid "failed to recurse into submodule '%s'"19618msgstr "Fehler bei Rekursion in Submodul '%s'."1961919620#: builtin/submodule--helper.c:874 builtin/submodule--helper.c:118519621msgid "Suppress submodule status output"19622msgstr "Ausgabe über Submodul-Status unterdrücken"1962319624#: builtin/submodule--helper.c:87519625msgid ""19626"Use commit stored in the index instead of the one stored in the submodule "19627"HEAD"19628msgstr ""19629"Benutze den Commit, der im Index gespeichert ist, statt den im Submodul HEAD"1963019631#: builtin/submodule--helper.c:87619632msgid "recurse into nested submodules"19633msgstr "Rekursion in verschachtelte Submodule durchführen"1963419635#: builtin/submodule--helper.c:88119636msgid "git submodule status [--quiet] [--cached] [--recursive] [<path>...]"19637msgstr "git submodule status [--quiet] [--cached] [--recursive] [<Pfad>...]"1963819639#: builtin/submodule--helper.c:90519640msgid "git submodule--helper name <path>"19641msgstr "git submodule--helper name <Pfad>"1964219643#: builtin/submodule--helper.c:96919644#, c-format19645msgid "Synchronizing submodule url for '%s'\n"19646msgstr "Synchronisiere Submodul-URL für '%s'\n"1964719648#: builtin/submodule--helper.c:97519649#, c-format19650msgid "failed to register url for submodule path '%s'"19651msgstr "Fehler beim Registrieren der URL für Submodul-Pfad '%s'."1965219653#: builtin/submodule--helper.c:98919654#, c-format19655msgid "failed to get the default remote for submodule '%s'"19656msgstr "Fehler beim Lesen des Standard-Remote-Repositories für Submodul '%s'."1965719658#: builtin/submodule--helper.c:100019659#, c-format19660msgid "failed to update remote for submodule '%s'"19661msgstr "Fehler beim Aktualisieren des Remote-Repositories für Submodul '%s'."1966219663#: builtin/submodule--helper.c:104719664msgid "Suppress output of synchronizing submodule url"19665msgstr "Ausgaben bei der Synchronisierung der Submodul-URLs unterdrücken"1966619667#: builtin/submodule--helper.c:105419668msgid "git submodule--helper sync [--quiet] [--recursive] [<path>]"19669msgstr "git submodule--helper sync [--quiet] [--recursive] [<Pfad>]"1967019671#: builtin/submodule--helper.c:110819672#, c-format19673msgid ""19674"Submodule work tree '%s' contains a .git directory (use 'rm -rf' if you "19675"really want to remove it including all of its history)"19676msgstr ""19677"Arbeitsverzeichnis von Submodul in '%s' enthält ein .git-Verzeichnis\n"19678"(benutzen Sie 'rm -rf', wenn Sie dieses wirklich mitsamt seiner Historie\n"19679"löschen möchten)"1968019681#: builtin/submodule--helper.c:112019682#, c-format19683msgid ""19684"Submodule work tree '%s' contains local modifications; use '-f' to discard "19685"them"19686msgstr ""19687"Arbeitsverzeichnis von Submodul in '%s' enthält lokale Änderungen;\n"19688"verwenden Sie '-f', um diese zu verwerfen."1968919690#: builtin/submodule--helper.c:112819691#, c-format19692msgid "Cleared directory '%s'\n"19693msgstr "Verzeichnis '%s' bereinigt.\n"1969419695#: builtin/submodule--helper.c:113019696#, c-format19697msgid "Could not remove submodule work tree '%s'\n"19698msgstr "Konnte Arbeitsverzeichnis des Submoduls in '%s' nicht löschen.\n"1969919700#: builtin/submodule--helper.c:114119701#, c-format19702msgid "could not create empty submodule directory %s"19703msgstr "Konnte kein leeres Verzeichnis für Submodul in '%s' erstellen."1970419705#: builtin/submodule--helper.c:115719706#, c-format19707msgid "Submodule '%s' (%s) unregistered for path '%s'\n"19708msgstr "Submodul '%s' (%s) für Pfad '%s' ausgetragen.\n"1970919710#: builtin/submodule--helper.c:118619711msgid "Remove submodule working trees even if they contain local changes"19712msgstr ""19713"Arbeitsverzeichnisse von Submodulen löschen, auch wenn lokale Änderungen "19714"vorliegen"1971519716#: builtin/submodule--helper.c:118719717msgid "Unregister all submodules"19718msgstr "alle Submodule austragen"1971919720#: builtin/submodule--helper.c:119219721msgid ""19722"git submodule deinit [--quiet] [-f | --force] [--all | [--] [<path>...]]"19723msgstr ""19724"git submodule deinit [--quiet] [-f | --force] [--all | [--] [<Pfad>...]]"1972519726#: builtin/submodule--helper.c:120619727msgid "Use '--all' if you really want to deinitialize all submodules"19728msgstr ""19729"Verwenden Sie '--all', wenn Sie wirklich alle Submodule deinitialisieren\n"19730"möchten."1973119732#: builtin/submodule--helper.c:1301 builtin/submodule--helper.c:130419733#, c-format19734msgid "submodule '%s' cannot add alternate: %s"19735msgstr "Submodul '%s' kann Alternative nicht hinzufügen: %s"1973619737#: builtin/submodule--helper.c:134019738#, c-format19739msgid "Value '%s' for submodule.alternateErrorStrategy is not recognized"19740msgstr "Wert '%s' für submodule.alternateErrorStrategy wird nicht erkannt"1974119742#: builtin/submodule--helper.c:134719743#, c-format19744msgid "Value '%s' for submodule.alternateLocation is not recognized"19745msgstr "Wert '%s' für submodule.alternateLocation wird nicht erkannt."1974619747#: builtin/submodule--helper.c:137019748msgid "where the new submodule will be cloned to"19749msgstr "Pfad für neues Submodul"1975019751#: builtin/submodule--helper.c:137319752msgid "name of the new submodule"19753msgstr "Name des neuen Submoduls"1975419755#: builtin/submodule--helper.c:137619756msgid "url where to clone the submodule from"19757msgstr "URL von der das Submodul geklont wird"1975819759#: builtin/submodule--helper.c:138419760msgid "depth for shallow clones"19761msgstr "Tiefe des Klons mit unvollständiger Historie (shallow)"1976219763#: builtin/submodule--helper.c:1387 builtin/submodule--helper.c:187119764msgid "force cloning progress"19765msgstr "Fortschrittsanzeige beim Klonen erzwingen"1976619767#: builtin/submodule--helper.c:139219768msgid ""19769"git submodule--helper clone [--prefix=<path>] [--quiet] [--reference "19770"<repository>] [--name <name>] [--depth <depth>] --url <url> --path <path>"19771msgstr ""19772"git submodule--helper clone [--prefix=<Pfad>] [--quiet] [--reference "19773"<Repository>] [--name <Name>] [--url <URL>] [--name <Name>] [--depth "19774"<Tiefe>] --url <URL> --path <Pfad>"1977519776#: builtin/submodule--helper.c:142319777#, c-format19778msgid "clone of '%s' into submodule path '%s' failed"19779msgstr "Klonen von '%s' in Submodul-Pfad '%s' fehlgeschlagen"1978019781#: builtin/submodule--helper.c:143719782#, c-format19783msgid "could not get submodule directory for '%s'"19784msgstr "Konnte Submodul-Verzeichnis '%s' nicht finden."1978519786#: builtin/submodule--helper.c:147319787#, c-format19788msgid "Invalid update mode '%s' for submodule path '%s'"19789msgstr "Ungültiger Aktualisierungsmodus '%s' für Submodul-Pfad '%s'."1979019791#: builtin/submodule--helper.c:147719792#, c-format19793msgid "Invalid update mode '%s' configured for submodule path '%s'"19794msgstr ""19795"Ungültiger Aktualisierungsmodus '%s' für Submodul-Pfad '%s' konfiguriert."1979619797#: builtin/submodule--helper.c:157019798#, c-format19799msgid "Submodule path '%s' not initialized"19800msgstr "Submodul-Pfad '%s' nicht initialisiert"1980119802#: builtin/submodule--helper.c:157419803msgid "Maybe you want to use 'update --init'?"19804msgstr "Meinten Sie vielleicht 'update --init'?"1980519806#: builtin/submodule--helper.c:160419807#, c-format19808msgid "Skipping unmerged submodule %s"19809msgstr "Überspringe nicht zusammengeführtes Submodul %s"1981019811#: builtin/submodule--helper.c:163319812#, c-format19813msgid "Skipping submodule '%s'"19814msgstr "Überspringe Submodul '%s'"1981519816#: builtin/submodule--helper.c:177719817#, c-format19818msgid "Failed to clone '%s'. Retry scheduled"19819msgstr "Fehler beim Klonen von '%s'. Weiterer Versuch geplant"1982019821#: builtin/submodule--helper.c:178819822#, c-format19823msgid "Failed to clone '%s' a second time, aborting"19824msgstr "Zweiter Versuch '%s' zu klonen fehlgeschlagen, breche ab."1982519826#: builtin/submodule--helper.c:1850 builtin/submodule--helper.c:209219827msgid "path into the working tree"19828msgstr "Pfad zum Arbeitsverzeichnis"1982919830#: builtin/submodule--helper.c:185319831msgid "path into the working tree, across nested submodule boundaries"19832msgstr ""19833"Pfad zum Arbeitsverzeichnis, über verschachtelte Submodul-Grenzen hinweg"1983419835#: builtin/submodule--helper.c:185719836msgid "rebase, merge, checkout or none"19837msgstr "rebase, merge, checkout oder none"1983819839#: builtin/submodule--helper.c:186319840msgid "Create a shallow clone truncated to the specified number of revisions"19841msgstr ""19842"Erstellung eines Klons mit unvollständiger Historie (shallow), abgeschnitten "19843"bei\n"19844"der angegebenen Anzahl von Commits."1984519846#: builtin/submodule--helper.c:186619847msgid "parallel jobs"19848msgstr "Parallele Ausführungen"1984919850#: builtin/submodule--helper.c:186819851msgid "whether the initial clone should follow the shallow recommendation"19852msgstr ""19853"ob das initiale Klonen den Empfehlungen für eine unvollständige\n"19854"Historie (shallow) folgen soll"1985519856#: builtin/submodule--helper.c:186919857msgid "don't print cloning progress"19858msgstr "keine Fortschrittsanzeige beim Klonen"1985919860#: builtin/submodule--helper.c:187619861msgid "git submodule--helper update_clone [--prefix=<path>] [<path>...]"19862msgstr "git submodule--helper update_clone [--prefix=<Pfad>] [<Pfad>...]"1986319864#: builtin/submodule--helper.c:188919865msgid "bad value for update parameter"19866msgstr "Fehlerhafter Wert für --update Parameter"1986719868#: builtin/submodule--helper.c:193719869#, c-format19870msgid ""19871"Submodule (%s) branch configured to inherit branch from superproject, but "19872"the superproject is not on any branch"19873msgstr ""19874"Branch von Submodul (%s) ist konfiguriert, den Branch des Hauptprojektes\n"19875"zu erben, aber das Hauptprojekt befindet sich auf keinem Branch."1987619877#: builtin/submodule--helper.c:206019878#, c-format19879msgid "could not get a repository handle for submodule '%s'"19880msgstr "Konnte kein Repository-Handle für Submodul '%s' erhalten."1988119882#: builtin/submodule--helper.c:209319883msgid "recurse into submodules"19884msgstr "Rekursion in Submodule durchführen"1988519886#: builtin/submodule--helper.c:209919887msgid "git submodule--helper absorb-git-dirs [<options>] [<path>...]"19888msgstr "git submodule--helper absorb-git-dirs [<Optionen>] [<Pfad>...]"1988919890#: builtin/submodule--helper.c:215619891msgid "check if it is safe to write to the .gitmodules file"19892msgstr "prüfen, ob es sicher ist, in die Datei .gitmodules zu schreiben"1989319894#: builtin/submodule--helper.c:215919895msgid "unset the config in the .gitmodules file"19896msgstr "Konfiguration in der .gitmodules-Datei entfernen"1989719898#: builtin/submodule--helper.c:216419899msgid "git submodule--helper config <name> [<value>]"19900msgstr "git submodule--helper config <name> [<Wert>]"1990119902#: builtin/submodule--helper.c:216519903msgid "git submodule--helper config --unset <name>"19904msgstr "git submodule--helper config --unset <Name>"1990519906#: builtin/submodule--helper.c:216619907msgid "git submodule--helper config --check-writeable"19908msgstr "git submodule--helper config --check-writeable"1990919910#: builtin/submodule--helper.c:2185 git-submodule.sh:17119911#, sh-format19912msgid "please make sure that the .gitmodules file is in the working tree"19913msgstr ""19914"Bitte stellen Sie sicher, dass sich die Datei .gitmodules im "19915"Arbeitsverzeichnis befindet."1991619917#: builtin/submodule--helper.c:2235 git.c:433 git.c:68519918#, c-format19919msgid "%s doesn't support --super-prefix"19920msgstr "%s unterstützt kein --super-prefix"1992119922#: builtin/submodule--helper.c:224119923#, c-format19924msgid "'%s' is not a valid submodule--helper subcommand"19925msgstr "'%s' ist kein gültiger Unterbefehl von submodule--helper"1992619927#: builtin/symbolic-ref.c:819928msgid "git symbolic-ref [<options>] <name> [<ref>]"19929msgstr "git symbolic-ref [<Optionen>] <Name> [<Referenz>]"1993019931#: builtin/symbolic-ref.c:919932msgid "git symbolic-ref -d [-q] <name>"19933msgstr "git symbolic-ref -d [-q] <Name>"1993419935#: builtin/symbolic-ref.c:4019936msgid "suppress error message for non-symbolic (detached) refs"19937msgstr ""19938"Fehlermeldungen für nicht-symbolische (losgelöste) Referenzen unterdrücken"1993919940#: builtin/symbolic-ref.c:4119941msgid "delete symbolic ref"19942msgstr "symbolische Referenzen löschen"1994319944#: builtin/symbolic-ref.c:4219945msgid "shorten ref output"19946msgstr "verkürzte Ausgabe der Referenzen"1994719948#: builtin/symbolic-ref.c:43 builtin/update-ref.c:36319949msgid "reason"19950msgstr "Grund"1995119952#: builtin/symbolic-ref.c:43 builtin/update-ref.c:36319953msgid "reason of the update"19954msgstr "Grund für die Aktualisierung"1995519956#: builtin/tag.c:2519957msgid ""19958"git tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>]\n"19959"\t\t<tagname> [<head>]"19960msgstr ""19961"git tag [-a | -s | -u <Schlüssel-id>] [-f] [-m <Beschreibung> | -F <Datei>]\n"19962"\t\t<Tagname> [<Commit>]"1996319964#: builtin/tag.c:2719965msgid "git tag -d <tagname>..."19966msgstr "git tag -d <Tagname>..."1996719968#: builtin/tag.c:2819969msgid ""19970"git tag -l [-n[<num>]] [--contains <commit>] [--no-contains <commit>] [--"19971"points-at <object>]\n"19972"\t\t[--format=<format>] [--[no-]merged [<commit>]] [<pattern>...]"19973msgstr ""19974"git tag -l [-n[<Nummer>]] [--contains <Commit>] [--no-contains <Commit>] [--"19975"points-at <Objekt>]\n"19976"\t\t[--format=<Muster>] [--[no-]merged [<Commit>]] [<Muster>...]"1997719978#: builtin/tag.c:3019979msgid "git tag -v [--format=<format>] <tagname>..."19980msgstr "git tag -v [--format=<Format>] <Tagname>..."1998119982#: builtin/tag.c:8819983#, c-format19984msgid "tag '%s' not found."19985msgstr "Tag '%s' nicht gefunden."1998619987#: builtin/tag.c:10419988#, c-format19989msgid "Deleted tag '%s' (was %s)\n"19990msgstr "Tag '%s' gelöscht (war %s)\n"1999119992#: builtin/tag.c:13419993#, c-format19994msgid ""19995"\n"19996"Write a message for tag:\n"19997" %s\n"19998"Lines starting with '%c' will be ignored.\n"19999msgstr ""20000"\n"20001"Geben Sie eine Beschreibung für Tag\n"20002" %s\n"20003"ein. Zeilen, die mit '%c' beginnen, werden ignoriert.\n"2000420005#: builtin/tag.c:13820006#, c-format20007msgid ""20008"\n"20009"Write a message for tag:\n"20010" %s\n"20011"Lines starting with '%c' will be kept; you may remove them yourself if you "20012"want to.\n"20013msgstr ""20014"\n"20015"Geben Sie eine Beschreibung für Tag\n"20016" %s\n"20017"ein. Zeilen, die mit '%c' beginnen, werden behalten; Sie dürfen diese\n"20018"selbst entfernen wenn Sie möchten.\n"2001920020#: builtin/tag.c:19220021msgid "unable to sign the tag"20022msgstr "konnte Tag nicht signieren"2002320024#: builtin/tag.c:19420025msgid "unable to write tag file"20026msgstr "konnte Tag-Datei nicht schreiben"2002720028#: builtin/tag.c:21020029#, c-format20030msgid ""20031"You have created a nested tag. The object referred to by your new tag is\n"20032"already a tag. If you meant to tag the object that it points to, use:\n"20033"\n"20034"\tgit tag -f %s %s^{}"20035msgstr ""20036"Sie haben einen verschachtelten Tag erzeugt. Das Objekt, auf welches Ihr\n"20037"neues Tag referenziert, ist bereits ein Tag. Wenn Sie das Objekt taggen\n"20038"wollten, worauf dieses zeigt, nutzen Sie:\n"20039"\n"20040"\tgit tag -f %s %s^{}"2004120042#: builtin/tag.c:22620043msgid "bad object type."20044msgstr "ungültiger Objekt-Typ"2004520046#: builtin/tag.c:27820047msgid "no tag message?"20048msgstr "keine Tag-Beschreibung?"2004920050#: builtin/tag.c:28520051#, c-format20052msgid "The tag message has been left in %s\n"20053msgstr "Die Tag-Beschreibung wurde in %s gelassen\n"2005420055#: builtin/tag.c:39620056msgid "list tag names"20057msgstr "Tagnamen auflisten"2005820059#: builtin/tag.c:39820060msgid "print <n> lines of each tag message"20061msgstr "<n> Zeilen jeder Tag-Beschreibung anzeigen"2006220063#: builtin/tag.c:40020064msgid "delete tags"20065msgstr "Tags löschen"2006620067#: builtin/tag.c:40120068msgid "verify tags"20069msgstr "Tags überprüfen"2007020071#: builtin/tag.c:40320072msgid "Tag creation options"20073msgstr "Optionen für Erstellung von Tags"2007420075#: builtin/tag.c:40520076msgid "annotated tag, needs a message"20077msgstr "annotiertes Tag, benötigt eine Beschreibung"2007820079#: builtin/tag.c:40720080msgid "tag message"20081msgstr "Tag-Beschreibung"2008220083#: builtin/tag.c:40920084msgid "force edit of tag message"20085msgstr "Bearbeitung der Tag-Beschreibung erzwingen"2008620087#: builtin/tag.c:41020088msgid "annotated and GPG-signed tag"20089msgstr "annotiertes und GPG-signiertes Tag"2009020091#: builtin/tag.c:41320092msgid "use another key to sign the tag"20093msgstr "einen anderen Schlüssel verwenden, um das Tag zu signieren"2009420095#: builtin/tag.c:41420096msgid "replace the tag if exists"20097msgstr "das Tag ersetzen, wenn es existiert"2009820099#: builtin/tag.c:415 builtin/update-ref.c:36920100msgid "create a reflog"20101msgstr "Reflog erstellen"2010220103#: builtin/tag.c:41720104msgid "Tag listing options"20105msgstr "Optionen für Auflistung der Tags"2010620107#: builtin/tag.c:41820108msgid "show tag list in columns"20109msgstr "Liste der Tags in Spalten anzeigen"2011020111#: builtin/tag.c:419 builtin/tag.c:42120112msgid "print only tags that contain the commit"20113msgstr "nur Tags ausgeben, die diesen Commit beinhalten"2011420115#: builtin/tag.c:420 builtin/tag.c:42220116msgid "print only tags that don't contain the commit"20117msgstr "nur Tags ausgeben, die diesen Commit nicht enthalten"2011820119#: builtin/tag.c:42320120msgid "print only tags that are merged"20121msgstr "nur Tags ausgeben, die gemerged wurden"2012220123#: builtin/tag.c:42420124msgid "print only tags that are not merged"20125msgstr "nur Tags ausgeben, die nicht gemerged wurden"2012620127#: builtin/tag.c:42820128msgid "print only tags of the object"20129msgstr "nur Tags von dem Objekt ausgeben"2013020131#: builtin/tag.c:47220132msgid "--column and -n are incompatible"20133msgstr "--column und -n sind inkompatibel"2013420135#: builtin/tag.c:49420136msgid "-n option is only allowed in list mode"20137msgstr "Die Option -n ist nur im Listenmodus erlaubt."2013820139#: builtin/tag.c:49620140msgid "--contains option is only allowed in list mode"20141msgstr "Die Option --contains ist nur im Listenmodus erlaubt."2014220143#: builtin/tag.c:49820144msgid "--no-contains option is only allowed in list mode"20145msgstr "Die Option --no-contains ist nur im Listenmodus erlaubt."2014620147#: builtin/tag.c:50020148msgid "--points-at option is only allowed in list mode"20149msgstr "Die Option --points-at ist nur im Listenmodus erlaubt."2015020151#: builtin/tag.c:50220152msgid "--merged and --no-merged options are only allowed in list mode"20153msgstr "Die Optionen --merged und --no-merged sind nur im Listenmodus erlaubt."2015420155#: builtin/tag.c:51320156msgid "only one -F or -m option is allowed."20157msgstr "nur eine -F oder -m Option ist erlaubt."2015820159#: builtin/tag.c:53220160msgid "too many params"20161msgstr "zu viele Parameter"2016220163#: builtin/tag.c:53820164#, c-format20165msgid "'%s' is not a valid tag name."20166msgstr "'%s' ist kein gültiger Tagname."2016720168#: builtin/tag.c:54320169#, c-format20170msgid "tag '%s' already exists"20171msgstr "Tag '%s' existiert bereits"2017220173#: builtin/tag.c:57420174#, c-format20175msgid "Updated tag '%s' (was %s)\n"20176msgstr "Tag '%s' aktualisiert (war %s)\n"2017720178#: builtin/unpack-objects.c:50020179msgid "Unpacking objects"20180msgstr "Entpacke Objekte"2018120182#: builtin/update-index.c:8320183#, c-format20184msgid "failed to create directory %s"20185msgstr "Fehler beim Erstellen von Verzeichnis '%s'"2018620187#: builtin/update-index.c:9920188#, c-format20189msgid "failed to create file %s"20190msgstr "Konnte Datei '%s' nicht erstellen"2019120192#: builtin/update-index.c:10720193#, c-format20194msgid "failed to delete file %s"20195msgstr "Konnte Datei '%s' nicht löschen"2019620197#: builtin/update-index.c:114 builtin/update-index.c:22020198#, c-format20199msgid "failed to delete directory %s"20200msgstr "Konnte Verzeichnis '%s' nicht löschen"2020120202#: builtin/update-index.c:13920203#, c-format20204msgid "Testing mtime in '%s' "20205msgstr "Prüfe mtime in '%s' "2020620207#: builtin/update-index.c:15320208msgid "directory stat info does not change after adding a new file"20209msgstr ""20210"Verzeichnisinformationen haben sich nach Hinzufügen einer neuen Datei nicht "20211"geändert"2021220213#: builtin/update-index.c:16620214msgid "directory stat info does not change after adding a new directory"20215msgstr ""20216"Verzeichnisinformationen haben sich nach Hinzufügen eines neuen "20217"Verzeichnisses nicht geändert"2021820219#: builtin/update-index.c:17920220msgid "directory stat info changes after updating a file"20221msgstr ""20222"Verzeichnisinformationen haben sich nach Aktualisierung einer Datei geändert"2022320224#: builtin/update-index.c:19020225msgid "directory stat info changes after adding a file inside subdirectory"20226msgstr ""20227"Verzeichnisinformationen haben sich nach Hinzufügen einer Datei in ein "20228"Unterverzeichnis geändert"2022920230#: builtin/update-index.c:20120231msgid "directory stat info does not change after deleting a file"20232msgstr ""20233"Verzeichnisinformationen haben sich nach dem Löschen einer Datei nicht "20234"geändert"2023520236#: builtin/update-index.c:21420237msgid "directory stat info does not change after deleting a directory"20238msgstr ""20239"Verzeichnisinformationen haben sich nach dem Löschen eines Verzeichnisses "20240"nicht geändert"2024120242#: builtin/update-index.c:22120243msgid " OK"20244msgstr " OK"2024520246#: builtin/update-index.c:58920247msgid "git update-index [<options>] [--] [<file>...]"20248msgstr "git update-index [<Optionen>] [--] [<Datei>...]"2024920250#: builtin/update-index.c:97120251msgid "continue refresh even when index needs update"20252msgstr ""20253"Aktualisierung fortsetzen, auch wenn der Index aktualisiert werden muss"2025420255#: builtin/update-index.c:97420256msgid "refresh: ignore submodules"20257msgstr "Aktualisierung: ignoriert Submodule"2025820259#: builtin/update-index.c:97720260msgid "do not ignore new files"20261msgstr "keine neuen Dateien ignorieren"2026220263#: builtin/update-index.c:97920264msgid "let files replace directories and vice-versa"20265msgstr "Dateien Verzeichnisse ersetzen lassen, und umgedreht"2026620267#: builtin/update-index.c:98120268msgid "notice files missing from worktree"20269msgstr "fehlende Dateien im Arbeitsverzeichnis beachten"2027020271#: builtin/update-index.c:98320272msgid "refresh even if index contains unmerged entries"20273msgstr ""20274"aktualisieren, auch wenn der Index nicht zusammengeführte Einträge beinhaltet"2027520276#: builtin/update-index.c:98620277msgid "refresh stat information"20278msgstr "Dateiinformationen aktualisieren"2027920280#: builtin/update-index.c:99020281msgid "like --refresh, but ignore assume-unchanged setting"20282msgstr "wie --refresh, ignoriert aber \"assume-unchanged\" Einstellung"2028320284#: builtin/update-index.c:99420285msgid "<mode>,<object>,<path>"20286msgstr "<Modus>,<Objekt>,<Pfad>"2028720288#: builtin/update-index.c:99520289msgid "add the specified entry to the index"20290msgstr "den angegebenen Eintrag zum Commit vormerken"2029120292#: builtin/update-index.c:100520293msgid "mark files as \"not changing\""20294msgstr "diese Datei immer als unverändert betrachten"2029520296#: builtin/update-index.c:100820297msgid "clear assumed-unchanged bit"20298msgstr "\"assumed-unchanged\"-Bit löschen"2029920300#: builtin/update-index.c:101120301msgid "mark files as \"index-only\""20302msgstr "Dateien als \"index-only\" markieren"2030320304#: builtin/update-index.c:101420305msgid "clear skip-worktree bit"20306msgstr "\"skip-worktree\"-Bit löschen"2030720308#: builtin/update-index.c:101720309msgid "add to index only; do not add content to object database"20310msgstr ""20311"die Änderungen nur zum Commit vormerken; Inhalt wird nicht der Objekt-"20312"Datenbank hinzugefügt"2031320314#: builtin/update-index.c:101920315msgid "remove named paths even if present in worktree"20316msgstr ""20317"benannte Pfade löschen, auch wenn sie sich im Arbeitsverzeichnis befinden"2031820319#: builtin/update-index.c:102120320msgid "with --stdin: input lines are terminated by null bytes"20321msgstr "mit --stdin: eingegebene Zeilen sind durch NUL-Bytes abgeschlossen"2032220323#: builtin/update-index.c:102320324msgid "read list of paths to be updated from standard input"20325msgstr "Liste der zu aktualisierenden Pfade von der Standard-Eingabe lesen"2032620327#: builtin/update-index.c:102720328msgid "add entries from standard input to the index"20329msgstr "Einträge von der Standard-Eingabe zum Commit vormerken"2033020331#: builtin/update-index.c:103120332msgid "repopulate stages #2 and #3 for the listed paths"20333msgstr ""20334"wiederholtes Einpflegen der Zustände #2 und #3 für die aufgelisteten Pfade"2033520336#: builtin/update-index.c:103520337msgid "only update entries that differ from HEAD"20338msgstr "nur Einträge aktualisieren, die unterschiedlich zu HEAD sind"2033920340#: builtin/update-index.c:103920341msgid "ignore files missing from worktree"20342msgstr "fehlende Dateien im Arbeitsverzeichnis ignorieren"2034320344#: builtin/update-index.c:104220345msgid "report actions to standard output"20346msgstr "die Aktionen in der Standard-Ausgabe ausgeben"2034720348#: builtin/update-index.c:104420349msgid "(for porcelains) forget saved unresolved conflicts"20350msgstr "(für Fremdprogramme) keine gespeicherten, nicht aufgelöste Konflikte"2035120352#: builtin/update-index.c:104820353msgid "write index in this format"20354msgstr "Index-Datei in diesem Format schreiben"2035520356#: builtin/update-index.c:105020357msgid "enable or disable split index"20358msgstr "Splitting des Index aktivieren oder deaktivieren"2035920360#: builtin/update-index.c:105220361msgid "enable/disable untracked cache"20362msgstr "Cache für unversionierte Dateien aktivieren oder deaktivieren"2036320364#: builtin/update-index.c:105420365msgid "test if the filesystem supports untracked cache"20366msgstr ""20367"prüfen, ob das Dateisystem einen Cache für unversionierte Dateien unterstützt"2036820369#: builtin/update-index.c:105620370msgid "enable untracked cache without testing the filesystem"20371msgstr ""20372"Cache für unversionierte Dateien ohne Prüfung des Dateisystems aktivieren"2037320374#: builtin/update-index.c:105820375msgid "write out the index even if is not flagged as changed"20376msgstr "Index rausschreiben, auch wenn dieser nicht als geändert markiert ist"2037720378#: builtin/update-index.c:106020379msgid "enable or disable file system monitor"20380msgstr "Dateisystem-Monitor aktivieren oder deaktivieren"2038120382#: builtin/update-index.c:106220383msgid "mark files as fsmonitor valid"20384msgstr "Dateien als \"fsmonitor valid\" markieren"2038520386#: builtin/update-index.c:106520387msgid "clear fsmonitor valid bit"20388msgstr "\"fsmonitor valid\"-Bit löschen"2038920390#: builtin/update-index.c:116820391msgid ""20392"core.splitIndex is set to false; remove or change it, if you really want to "20393"enable split index"20394msgstr ""20395"core.splitIndex ist auf 'false' gesetzt. Entfernen oder ändern Sie dies,\n"20396"wenn sie wirklich das Splitting des Index aktivieren möchten."2039720398#: builtin/update-index.c:117720399msgid ""20400"core.splitIndex is set to true; remove or change it, if you really want to "20401"disable split index"20402msgstr ""20403"core.splitIndex ist auf 'true' gesetzt. Entfernen oder ändern Sie dies,\n"20404"wenn Sie wirklich das Splitting des Index deaktivieren möchten."2040520406#: builtin/update-index.c:118820407msgid ""20408"core.untrackedCache is set to true; remove or change it, if you really want "20409"to disable the untracked cache"20410msgstr ""20411"core.untrackedCache ist auf 'true' gesetzt. Entfernen oder ändern Sie dies,\n"20412"wenn Sie wirklich den Cache für unversionierte Dateien deaktivieren möchten."2041320414#: builtin/update-index.c:119220415msgid "Untracked cache disabled"20416msgstr "Cache für unversionierte Dateien deaktiviert"2041720418#: builtin/update-index.c:120020419msgid ""20420"core.untrackedCache is set to false; remove or change it, if you really want "20421"to enable the untracked cache"20422msgstr ""20423"core.untrackedCache ist auf 'false' gesetzt. Entfernen oder ändern Sie "20424"dies,\n"20425"wenn sie wirklich den Cache für unversionierte Dateien aktivieren möchten."2042620427#: builtin/update-index.c:120420428#, c-format20429msgid "Untracked cache enabled for '%s'"20430msgstr "Cache für unversionierte Dateien für '%s' aktiviert"2043120432#: builtin/update-index.c:121220433msgid "core.fsmonitor is unset; set it if you really want to enable fsmonitor"20434msgstr ""20435"core.fsmonitor nicht gesetzt. Setzen Sie es, wenn Sie den Dateisystem-"20436"Monitor\n"20437"wirklich aktivieren möchten."2043820439#: builtin/update-index.c:121620440msgid "fsmonitor enabled"20441msgstr "Dateisystem-Monitor aktiviert"2044220443#: builtin/update-index.c:121920444msgid ""20445"core.fsmonitor is set; remove it if you really want to disable fsmonitor"20446msgstr ""20447"core.fsmonitor ist gesetzt. Löschen Sie es, wenn Sie den Dateisystem-"20448"Monitor\n"20449"wirklich deaktivieren möchten."2045020451#: builtin/update-index.c:122320452msgid "fsmonitor disabled"20453msgstr "Dateisystem-Monitor deaktiviert"2045420455#: builtin/update-ref.c:1020456msgid "git update-ref [<options>] -d <refname> [<old-val>]"20457msgstr "git update-ref [<Optionen>] -d <Referenzname> [<alter-Wert>]"2045820459#: builtin/update-ref.c:1120460msgid "git update-ref [<options>] <refname> <new-val> [<old-val>]"20461msgstr ""20462"git update-ref [<Optionen>] <Referenzname> <neuer-Wert> [<alter-Wert>]"2046320464#: builtin/update-ref.c:1220465msgid "git update-ref [<options>] --stdin [-z]"20466msgstr "git update-ref [<Optionen>] --stdin [-z]"2046720468#: builtin/update-ref.c:36420469msgid "delete the reference"20470msgstr "diese Referenz löschen"2047120472#: builtin/update-ref.c:36620473msgid "update <refname> not the one it points to"20474msgstr "<Referenzname> aktualisieren, nicht den Verweis"2047520476#: builtin/update-ref.c:36720477msgid "stdin has NUL-terminated arguments"20478msgstr "Standard-Eingabe hat durch NUL-Zeichen abgeschlossene Argumente"2047920480#: builtin/update-ref.c:36820481msgid "read updates from stdin"20482msgstr "Aktualisierungen von der Standard-Eingabe lesen"2048320484#: builtin/update-server-info.c:720485msgid "git update-server-info [--force]"20486msgstr "git update-server-info [--force]"2048720488#: builtin/update-server-info.c:1520489msgid "update the info files from scratch"20490msgstr "die Informationsdateien von Grund auf aktualisieren"2049120492#: builtin/upload-pack.c:1120493msgid "git upload-pack [<options>] <dir>"20494msgstr "git upload-pack [<Optionen>] <Verzeichnis>"2049520496#: builtin/upload-pack.c:23 t/helper/test-serve-v2.c:1720497msgid "quit after a single request/response exchange"20498msgstr "nach einem einzigen Request/Response-Austausch beenden"2049920500#: builtin/upload-pack.c:2520501msgid "exit immediately after initial ref advertisement"20502msgstr "direkt nach der initialen Angabe der Commits beenden"2050320504#: builtin/upload-pack.c:2720505msgid "do not try <directory>/.git/ if <directory> is no Git directory"20506msgstr ""20507"kein Versuch in <Verzeichnis>/.git/ wenn <Verzeichnis> kein Git-Verzeichnis "20508"ist"2050920510#: builtin/upload-pack.c:2920511msgid "interrupt transfer after <n> seconds of inactivity"20512msgstr "Übertragung nach <n> Sekunden Inaktivität unterbrechen"2051320514#: builtin/verify-commit.c:2020515msgid "git verify-commit [-v | --verbose] <commit>..."20516msgstr "git verify-commit [-v | --verbose] <Commit>..."2051720518#: builtin/verify-commit.c:7620519msgid "print commit contents"20520msgstr "Commit-Inhalte ausgeben"2052120522#: builtin/verify-commit.c:77 builtin/verify-tag.c:3820523msgid "print raw gpg status output"20524msgstr "unbearbeitete Ausgabe des Status von gpg ausgeben"2052520526#: builtin/verify-pack.c:5520527msgid "git verify-pack [-v | --verbose] [-s | --stat-only] <pack>..."20528msgstr "git verify-pack [-v | --verbose] [-s | --stat-only] <Paket>..."2052920530#: builtin/verify-pack.c:6520531msgid "verbose"20532msgstr "erweiterte Ausgaben"2053320534#: builtin/verify-pack.c:6720535msgid "show statistics only"20536msgstr "nur Statistiken anzeigen"2053720538#: builtin/verify-tag.c:1920539msgid "git verify-tag [-v | --verbose] [--format=<format>] <tag>..."20540msgstr "git verify-tag [-v | --verbose] [--format=<Format>] <Tag>..."2054120542#: builtin/verify-tag.c:3720543msgid "print tag contents"20544msgstr "Tag-Inhalte ausgeben"2054520546#: builtin/worktree.c:1820547msgid "git worktree add [<options>] <path> [<commit-ish>]"20548msgstr "git worktree add [<Optionen>] <Pfad> [<Commit-Angabe>]"2054920550#: builtin/worktree.c:1920551msgid "git worktree list [<options>]"20552msgstr "git worktree list [<Optionen>]"2055320554#: builtin/worktree.c:2020555msgid "git worktree lock [<options>] <path>"20556msgstr "git worktree lock [<Optionen>] <Pfad>"2055720558#: builtin/worktree.c:2120559msgid "git worktree move <worktree> <new-path>"20560msgstr "git worktree move <Arbeitsverzeichnis> <neuer-Pfad>"2056120562#: builtin/worktree.c:2220563msgid "git worktree prune [<options>]"20564msgstr "git worktree prune [<Optionen>]"2056520566#: builtin/worktree.c:2320567msgid "git worktree remove [<options>] <worktree>"20568msgstr "git worktree remove [<Optionen>] <Arbeitsverzeichnis>"2056920570#: builtin/worktree.c:2420571msgid "git worktree unlock <path>"20572msgstr "git worktree unlock <Pfad>"2057320574#: builtin/worktree.c:61 builtin/worktree.c:89120575#, c-format20576msgid "failed to delete '%s'"20577msgstr "Fehler beim Löschen von '%s'"2057820579#: builtin/worktree.c:8020580#, c-format20581msgid "Removing worktrees/%s: not a valid directory"20582msgstr "Lösche worktrees/%s: kein gültiges Verzeichnis"2058320584#: builtin/worktree.c:8620585#, c-format20586msgid "Removing worktrees/%s: gitdir file does not exist"20587msgstr "Lösche worktrees/%s: gitdir-Datei existiert nicht"2058820589#: builtin/worktree.c:91 builtin/worktree.c:10020590#, c-format20591msgid "Removing worktrees/%s: unable to read gitdir file (%s)"20592msgstr "Lösche worktrees/%s: konnte gitdir-Datei (%s) nicht lesen"2059320594#: builtin/worktree.c:11020595#, c-format20596msgid ""20597"Removing worktrees/%s: short read (expected %<PRIuMAX> bytes, read "20598"%<PRIuMAX>)"20599msgstr ""20600"Lösche worktrees/%s: read() zu kurz (%<PRIuMAX> Bytes erwartet, %<PRIuMAX> "20601"gelesen)"2060220603#: builtin/worktree.c:11820604#, c-format20605msgid "Removing worktrees/%s: invalid gitdir file"20606msgstr "Lösche worktrees/%s: ungültige gitdir-Datei"2060720608#: builtin/worktree.c:12720609#, c-format20610msgid "Removing worktrees/%s: gitdir file points to non-existent location"20611msgstr "Lösche worktrees/%s: gitdir-Datei verweist auf nicht existierenden Ort"2061220613#: builtin/worktree.c:16620614msgid "report pruned working trees"20615msgstr "entfernte Arbeitsverzeichnisse ausgeben"2061620617#: builtin/worktree.c:16820618msgid "expire working trees older than <time>"20619msgstr "Arbeitsverzeichnisse älter als <Zeit> verfallen lassen"2062020621#: builtin/worktree.c:23520622#, c-format20623msgid "'%s' already exists"20624msgstr "'%s' existiert bereits"2062520626#: builtin/worktree.c:25220627#, c-format20628msgid "unable to re-add worktree '%s'"20629msgstr "Konnte Arbeitsverzeichnis '%s' nicht neu hinzufügen."2063020631#: builtin/worktree.c:25720632#, c-format20633msgid ""20634"'%s' is a missing but locked worktree;\n"20635"use 'add -f -f' to override, or 'unlock' and 'prune' or 'remove' to clear"20636msgstr ""20637"'%s' ist ein fehlendes, aber gesperrtes Arbeitsverzeichnis;\n"20638"Benutzen Sie 'add -f -f' zum Überschrieben, oder 'unlock' und 'prune'\n"20639"oder 'remove' zum Löschen."2064020641#: builtin/worktree.c:25920642#, c-format20643msgid ""20644"'%s' is a missing but already registered worktree;\n"20645"use 'add -f' to override, or 'prune' or 'remove' to clear"20646msgstr ""20647"'%s' ist ein fehlendes, aber bereits registriertes Arbeitsverzeichnis;\n"20648"Benutzen Sie 'add -f' zum Überschreiben, oder 'prune' oder 'remove' zum\n"20649"Löschen."2065020651#: builtin/worktree.c:30220652#, c-format20653msgid "could not create directory of '%s'"20654msgstr "Konnte Verzeichnis '%s' nicht erstellen."2065520656#: builtin/worktree.c:432 builtin/worktree.c:43820657#, c-format20658msgid "Preparing worktree (new branch '%s')"20659msgstr "Bereite Arbeitsverzeichnis vor (neuer Branch '%s')"2066020661#: builtin/worktree.c:43420662#, c-format20663msgid "Preparing worktree (resetting branch '%s'; was at %s)"20664msgstr "Bereite Arbeitsverzeichnis vor (setze Branch '%s' um; war bei %s)"2066520666#: builtin/worktree.c:44320667#, c-format20668msgid "Preparing worktree (checking out '%s')"20669msgstr "Bereite Arbeitsverzeichnis vor (checke '%s' aus)"2067020671#: builtin/worktree.c:44920672#, c-format20673msgid "Preparing worktree (detached HEAD %s)"20674msgstr "Bereite Arbeitsverzeichnis vor (losgelöster HEAD %s)"2067520676#: builtin/worktree.c:49020677msgid "checkout <branch> even if already checked out in other worktree"20678msgstr ""20679"<Branch> auschecken, auch wenn dieser bereits in einem anderen "20680"Arbeitsverzeichnis ausgecheckt ist"2068120682#: builtin/worktree.c:49320683msgid "create a new branch"20684msgstr "neuen Branch erstellen"2068520686#: builtin/worktree.c:49520687msgid "create or reset a branch"20688msgstr "Branch erstellen oder umsetzen"2068920690#: builtin/worktree.c:49720691msgid "populate the new working tree"20692msgstr "das neue Arbeitsverzeichnis auschecken"2069320694#: builtin/worktree.c:49820695msgid "keep the new working tree locked"20696msgstr "das neue Arbeitsverzeichnis gesperrt lassen"2069720698#: builtin/worktree.c:50120699msgid "set up tracking mode (see git-branch(1))"20700msgstr "Modus zum Folgen von Branches einstellen (siehe git-branch(1))"2070120702#: builtin/worktree.c:50420703msgid "try to match the new branch name with a remote-tracking branch"20704msgstr ""20705"versuchen, eine Übereinstimmung des Branch-Namens mit einem\n"20706"Remote-Tracking-Branch herzustellen"2070720708#: builtin/worktree.c:51220709msgid "-b, -B, and --detach are mutually exclusive"20710msgstr "-b, -B und --detach schließen sich gegenseitig aus"2071120712#: builtin/worktree.c:57320713msgid "--[no-]track can only be used if a new branch is created"20714msgstr ""20715"--[no]-track kann nur verwendet werden, wenn ein neuer Branch erstellt wird."2071620717#: builtin/worktree.c:67320718msgid "reason for locking"20719msgstr "Sperrgrund"2072020721#: builtin/worktree.c:685 builtin/worktree.c:718 builtin/worktree.c:79220722#: builtin/worktree.c:91920723#, c-format20724msgid "'%s' is not a working tree"20725msgstr "'%s' ist kein Arbeitsverzeichnis"2072620727#: builtin/worktree.c:687 builtin/worktree.c:72020728msgid "The main working tree cannot be locked or unlocked"20729msgstr "Das Hauptarbeitsverzeichnis kann nicht gesperrt oder entsperrt werden."2073020731#: builtin/worktree.c:69220732#, c-format20733msgid "'%s' is already locked, reason: %s"20734msgstr "'%s' ist bereits gesperrt, Grund: %s"2073520736#: builtin/worktree.c:69420737#, c-format20738msgid "'%s' is already locked"20739msgstr "'%s' ist bereits gesperrt"2074020741#: builtin/worktree.c:72220742#, c-format20743msgid "'%s' is not locked"20744msgstr "'%s' ist nicht gesperrt"2074520746#: builtin/worktree.c:76320747msgid "working trees containing submodules cannot be moved or removed"20748msgstr ""20749"Arbeitsverzeichnisse, die Submodule enthalten, können nicht verschoben oder\n"20750"entfernt werden."2075120752#: builtin/worktree.c:77120753msgid "force move even if worktree is dirty or locked"20754msgstr ""20755"Verschieben erzwingen, auch wenn das Arbeitsverzeichnis geändert oder "20756"gesperrt ist"2075720758#: builtin/worktree.c:794 builtin/worktree.c:92120759#, c-format20760msgid "'%s' is a main working tree"20761msgstr "'%s' ist ein Hauptarbeitsverzeichnis"2076220763#: builtin/worktree.c:79920764#, c-format20765msgid "could not figure out destination name from '%s'"20766msgstr "Konnte Zielname aus '%s' nicht bestimmen."2076720768#: builtin/worktree.c:80520769#, c-format20770msgid "target '%s' already exists"20771msgstr "Ziel '%s' existiert bereits."2077220773#: builtin/worktree.c:81320774#, c-format20775msgid ""20776"cannot move a locked working tree, lock reason: %s\n"20777"use 'move -f -f' to override or unlock first"20778msgstr ""20779"Kann kein gesperrtes Arbeitsverzeichnis verschieben, Sperrgrund: %s\n"20780"Benutzen Sie 'move -f -f' zum Überschreiben oder entsperren Sie zuerst\n"20781"das Arbeitsverzeichnis."2078220783#: builtin/worktree.c:81520784msgid ""20785"cannot move a locked working tree;\n"20786"use 'move -f -f' to override or unlock first"20787msgstr ""20788"Kann kein gesperrtes Arbeitsverzeichnis verschieben.\n"20789"Benutzen Sie 'move -f -f' zum Überschreiben oder entsperren Sie zuerst\n"20790"das Arbeitsverzeichnis."2079120792#: builtin/worktree.c:81820793#, c-format20794msgid "validation failed, cannot move working tree: %s"20795msgstr "Validierung fehlgeschlagen, kann Arbeitszeichnis nicht verschieben: %s"2079620797#: builtin/worktree.c:82320798#, c-format20799msgid "failed to move '%s' to '%s'"20800msgstr "Fehler beim Verschieben von '%s' nach '%s'"2080120802#: builtin/worktree.c:87120803#, c-format20804msgid "failed to run 'git status' on '%s'"20805msgstr "Fehler beim Ausführen von 'git status' auf '%s'"2080620807#: builtin/worktree.c:87520808#, c-format20809msgid "'%s' is dirty, use --force to delete it"20810msgstr "'%s' ist verändert, benutzen Sie --force zum Löschen"2081120812#: builtin/worktree.c:88020813#, c-format20814msgid "failed to run 'git status' on '%s', code %d"20815msgstr "Fehler beim Ausführen von 'git status' auf '%s'. Code: %d"2081620817#: builtin/worktree.c:90320818msgid "force removal even if worktree is dirty or locked"20819msgstr ""20820"Löschen erzwingen, auch wenn das Arbeitsverzeichnis geändert oder gesperrt "20821"ist"2082220823#: builtin/worktree.c:92620824#, c-format20825msgid ""20826"cannot remove a locked working tree, lock reason: %s\n"20827"use 'remove -f -f' to override or unlock first"20828msgstr ""20829"Kann kein gesperrtes Arbeitsverzeichnis löschen, Sperrgrund: %s\n"20830"Benutzen Sie 'remove -f -f' zum Überschreiben oder entsperren Sie zuerst\n"20831"das Arbeitsverzeichnis."2083220833#: builtin/worktree.c:92820834msgid ""20835"cannot remove a locked working tree;\n"20836"use 'remove -f -f' to override or unlock first"20837msgstr ""20838"Kann kein gesperrtes Arbeitsverzeichnis löschen.\n"20839"Benutzen Sie 'remove -f -f' zum Überschreiben oder entsperren Sie zuerst\n"20840"das Arbeitsverzeichnis."2084120842#: builtin/worktree.c:93120843#, c-format20844msgid "validation failed, cannot remove working tree: %s"20845msgstr "Validierung fehlgeschlagen, kann Arbeitsverzeichnis nicht löschen: %s"2084620847#: builtin/write-tree.c:1520848msgid "git write-tree [--missing-ok] [--prefix=<prefix>/]"20849msgstr "git write-tree [--missing-ok] [--prefix=<Präfix>/]"2085020851#: builtin/write-tree.c:2820852msgid "<prefix>/"20853msgstr "<Präfix>/"2085420855#: builtin/write-tree.c:2920856msgid "write tree object for a subdirectory <prefix>"20857msgstr "das Tree-Objekt für ein Unterverzeichnis <Präfix> schreiben"2085820859#: builtin/write-tree.c:3120860msgid "only useful for debugging"20861msgstr "nur nützlich für Fehlersuche"2086220863#: credential-cache--daemon.c:22320864#, c-format20865msgid ""20866"The permissions on your socket directory are too loose; other\n"20867"users may be able to read your cached credentials. Consider running:\n"20868"\n"20869"\tchmod 0700 %s"20870msgstr ""20871"Die Berechtigungen auf Ihr Socket-Verzeichnis sind zu schwach; andere\n"20872"Nutzer könnten Ihre zwischengespeicherten Anmeldeinformationen lesen.\n"20873"Ziehen Sie in Betracht\n"20874"\n"20875"\tchmod 0700 %s\n"20876"\n"20877"auszuführen."2087820879#: credential-cache--daemon.c:27220880msgid "print debugging messages to stderr"20881msgstr "Meldungen zur Fehlersuche in Standard-Fehlerausgabe ausgeben"2088220883#: t/helper/test-reach.c:15220884#, c-format20885msgid "commit %s is not marked reachable"20886msgstr "Commit %s ist nicht als erreichbar gekennzeichnet."2088720888#: t/helper/test-reach.c:16220889msgid "too many commits marked reachable"20890msgstr "Zu viele Commits als erreichbar gekennzeichnet."2089120892#: t/helper/test-serve-v2.c:720893msgid "test-tool serve-v2 [<options>]"20894msgstr "test-tool serve-v2 [<Optionen>]"2089520896#: t/helper/test-serve-v2.c:1920897msgid "exit immediately after advertising capabilities"20898msgstr "direkt nach Anzeige der angebotenen Fähigkeiten beenden"2089920900#: git.c:2720901msgid ""20902"git [--version] [--help] [-C <path>] [-c <name>=<value>]\n"20903" [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"20904" [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--"20905"bare]\n"20906" [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"20907" <command> [<args>]"20908msgstr ""20909"git [--version] [--help] [-C <Pfad>] [-c <Name>=<Wert>]\n"20910" [--exec-path[=<Pfad>]] [--html-path] [--man-path] [--info-path]\n"20911" [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--"20912"bare]\n"20913" [--git-dir=<Pfad>] [--work-tree=<Pfad>] [--namespace=<Name>]\n"20914" <Befehl> [<Argumente>]"2091520916#: git.c:3420917msgid ""20918"'git help -a' and 'git help -g' list available subcommands and some\n"20919"concept guides. See 'git help <command>' or 'git help <concept>'\n"20920"to read about a specific subcommand or concept."20921msgstr ""20922"'git help -a' und 'git help -g' listet verfügbare Unterbefehle und\n"20923"einige Anleitungen zu Git-Konzepten auf. Benutzen Sie 'git help <Befehl>'\n"20924"oder 'git help <Konzept>', um mehr über einen spezifischen Befehl oder\n"20925"Konzept zu erfahren."2092620927#: git.c:18520928#, c-format20929msgid "no directory given for --git-dir\n"20930msgstr "Kein Verzeichnis für --git-dir angegeben.\n"2093120932#: git.c:19920933#, c-format20934msgid "no namespace given for --namespace\n"20935msgstr "Kein Namespace für --namespace angegeben.\n"2093620937#: git.c:21320938#, c-format20939msgid "no directory given for --work-tree\n"20940msgstr "Kein Verzeichnis für --work-tree angegeben.\n"2094120942#: git.c:22720943#, c-format20944msgid "no prefix given for --super-prefix\n"20945msgstr "Kein Präfix für --super-prefix angegeben.\n"2094620947#: git.c:24920948#, c-format20949msgid "-c expects a configuration string\n"20950msgstr "-c erwartet einen Konfigurationsstring.\n"2095120952#: git.c:28720953#, c-format20954msgid "no directory given for -C\n"20955msgstr "Kein Verzeichnis für -C angegeben.\n"2095620957#: git.c:31320958#, c-format20959msgid "unknown option: %s\n"20960msgstr "Unbekannte Option: %s\n"2096120962#: git.c:35920963#, c-format20964msgid "while expanding alias '%s': '%s'"20965msgstr "beim Erweitern von Alias '%s': '%s'"2096620967#: git.c:36820968#, c-format20969msgid ""20970"alias '%s' changes environment variables.\n"20971"You can use '!git' in the alias to do this"20972msgstr ""20973"Alias '%s' ändert Umgebungsvariablen.\n"20974"Sie können '!git' im Alias benutzen, um dies zu tun."2097520976#: git.c:37620977#, c-format20978msgid "empty alias for %s"20979msgstr "leerer Alias für %s"2098020981#: git.c:37920982#, c-format20983msgid "recursive alias: %s"20984msgstr "rekursiver Alias: %s"2098520986#: git.c:45920987msgid "write failure on standard output"20988msgstr "Fehler beim Schreiben in die Standard-Ausgabe."2098920990#: git.c:46120991msgid "unknown write failure on standard output"20992msgstr "Unbekannter Fehler beim Schreiben in die Standard-Ausgabe."2099320994#: git.c:46320995msgid "close failed on standard output"20996msgstr "Fehler beim Schließen der Standard-Ausgabe."2099720998#: git.c:79720999#, c-format21000msgid "alias loop detected: expansion of '%s' does not terminate:%s"21001msgstr "Alias-Schleife erkannt: Erweiterung von '%s' schließt nicht ab:%s"2100221003#: git.c:84721004#, c-format21005msgid "cannot handle %s as a builtin"21006msgstr "Kann %s nicht als eingebauten Befehl behandeln."2100721008#: git.c:86021009#, c-format21010msgid ""21011"usage: %s\n"21012"\n"21013msgstr ""21014"Verwendung: %s\n"21015"\n"2101621017#: git.c:88021018#, c-format21019msgid "expansion of alias '%s' failed; '%s' is not a git command\n"21020msgstr "Erweiterung von Alias '%s' fehlgeschlagen; '%s' ist kein Git-Befehl.\n"2102121022#: git.c:89221023#, c-format21024msgid "failed to run command '%s': %s\n"21025msgstr "Fehler beim Ausführen von Befehl '%s': %s\n"2102621027#: http.c:37821028#, c-format21029msgid "negative value for http.postbuffer; defaulting to %d"21030msgstr "negativer Wert für http.postbuffer; benutze Standardwert %d"2103121032#: http.c:39921033msgid "Delegation control is not supported with cURL < 7.22.0"21034msgstr "Kontrolle über Delegation wird mit cURL < 7.22.0 nicht unterstützt"2103521036#: http.c:40821037msgid "Public key pinning not supported with cURL < 7.44.0"21038msgstr ""21039"Das Anheften des öffentlichen Schlüssels wird mit cURL < 7.44.0\n"21040"nicht unterstützt."2104121042#: http.c:87621043msgid "CURLSSLOPT_NO_REVOKE not supported with cURL < 7.44.0"21044msgstr "CURLSSLOPT_NO_REVOKE wird mit cURL < 7.44.0 nicht unterstützt."2104521046#: http.c:94921047msgid "Protocol restrictions not supported with cURL < 7.19.4"21048msgstr "Protokollbeschränkungen werden mit cURL < 7.19.4 nicht unterstützt."2104921050#: http.c:108521051#, c-format21052msgid "Unsupported SSL backend '%s'. Supported SSL backends:"21053msgstr "Nicht unterstütztes SSL-Backend '%s'. Unterstützte SSL-Backends:"2105421055#: http.c:109221056#, c-format21057msgid "Could not set SSL backend to '%s': cURL was built without SSL backends"21058msgstr ""21059"Konnte SSL-Backend nicht zu '%s' setzen: cURL wurde ohne SSL-Backends gebaut."2106021061#: http.c:109621062#, c-format21063msgid "Could not set SSL backend to '%s': already set"21064msgstr "Konnte SSL-Backend nicht zu '%s' setzen: bereits gesetzt"2106521066#: http.c:196521067#, c-format21068msgid ""21069"unable to update url base from redirection:\n"21070" asked for: %s\n"21071" redirect: %s"21072msgstr ""21073"Konnte Basis-URL nicht durch Umleitung aktualisieren:\n"21074" gefragt nach: %s\n"21075" umgeleitet: %s"2107621077#: remote-curl.c:15721078#, c-format21079msgid "invalid quoting in push-option value: '%s'"21080msgstr "Ungültiges Quoting beim \"push-option\"-Wert: '%s'"2108121082#: remote-curl.c:25421083#, c-format21084msgid "%sinfo/refs not valid: is this a git repository?"21085msgstr "%sinfo/refs nicht gültig: Ist das ein Git-Repository?"2108621087#: remote-curl.c:35521088msgid "invalid server response; expected service, got flush packet"21089msgstr "Ungültige Antwort des Servers. Service erwartet, Flush-Paket bekommen"2109021091#: remote-curl.c:38621092#, c-format21093msgid "invalid server response; got '%s'"21094msgstr "Ungültige Serverantwort; '%s' bekommen"2109521096#: remote-curl.c:44621097#, c-format21098msgid "repository '%s' not found"21099msgstr "Repository '%s' nicht gefunden."2110021101#: remote-curl.c:45021102#, c-format21103msgid "Authentication failed for '%s'"21104msgstr "Authentifizierung fehlgeschlagen für '%s'"2110521106#: remote-curl.c:45421107#, c-format21108msgid "unable to access '%s': %s"21109msgstr "konnte nicht auf '%s' zugreifen: %s"2111021111#: remote-curl.c:46021112#, c-format21113msgid "redirecting to %s"21114msgstr "Leite nach %s um"2111521116#: remote-curl.c:58421117msgid "shouldn't have EOF when not gentle on EOF"21118msgstr "sollte kein EOF haben, wenn nicht behutsam mit EOF"2111921120#: remote-curl.c:66421121msgid "unable to rewind rpc post data - try increasing http.postBuffer"21122msgstr ""21123"Konnte nicht RPC-POST-Daten zurückspulen - Versuchen Sie http.postBuffer zu "21124"erhöhen"2112521126#: remote-curl.c:72421127#, c-format21128msgid "RPC failed; %s"21129msgstr "RPC fehlgeschlagen; %s"2113021131#: remote-curl.c:76421132msgid "cannot handle pushes this big"21133msgstr "Kann solche großen Übertragungen nicht verarbeiten."2113421135#: remote-curl.c:87921136#, c-format21137msgid "cannot deflate request; zlib deflate error %d"21138msgstr "Kann Request nicht komprimieren; \"zlib deflate\"-Fehler %d"2113921140#: remote-curl.c:88321141#, c-format21142msgid "cannot deflate request; zlib end error %d"21143msgstr "Kann Request nicht komprimieren; \"zlib end\"-Fehler %d"2114421145#: remote-curl.c:101421146msgid "dumb http transport does not support shallow capabilities"21147msgstr "Dumb HTTP-Transport unterstützt keine shallow-Funktionen"2114821149#: remote-curl.c:102821150msgid "fetch failed."21151msgstr "\"fetch\" fehlgeschlagen."2115221153#: remote-curl.c:107621154msgid "cannot fetch by sha1 over smart http"21155msgstr "Kann SHA-1 nicht über Smart-HTTP anfordern"2115621157#: remote-curl.c:1120 remote-curl.c:112621158#, c-format21159msgid "protocol error: expected sha/ref, got '%s'"21160msgstr "Protokollfehler: SHA-1/Referenz erwartet, '%s' bekommen"2116121162#: remote-curl.c:1138 remote-curl.c:125221163#, c-format21164msgid "http transport does not support %s"21165msgstr "HTTP-Transport unterstützt nicht %s"2116621167#: remote-curl.c:117421168msgid "git-http-push failed"21169msgstr "\"git-http-push\" fehlgeschlagen"2117021171#: remote-curl.c:136021172msgid "remote-curl: usage: git remote-curl <remote> [<url>]"21173msgstr "remote-curl: Verwendung: git remote-curl <Remote-Repository> [<URL>]"2117421175#: remote-curl.c:139221176msgid "remote-curl: error reading command stream from git"21177msgstr "remote-curl: Fehler beim Lesen des Kommando-Streams von Git"2117821179#: remote-curl.c:139921180msgid "remote-curl: fetch attempted without a local repo"21181msgstr "remote-curl: \"fetch\" ohne lokales Repository versucht"2118221183#: remote-curl.c:143921184#, c-format21185msgid "remote-curl: unknown command '%s' from git"21186msgstr "remote-curl: Unbekannter Befehl '%s' von Git"2118721188#: list-objects-filter-options.h:6121189msgid "args"21190msgstr "Argumente"2119121192#: list-objects-filter-options.h:6221193msgid "object filtering"21194msgstr "Filtern nach Objekten"2119521196#: parse-options.h:17021197msgid "expiry-date"21198msgstr "Verfallsdatum"2119921200#: parse-options.h:18421201msgid "no-op (backward compatibility)"21202msgstr "Kein Effekt (Rückwärtskompatibilität)"2120321204#: parse-options.h:30421205msgid "be more verbose"21206msgstr "erweiterte Ausgaben"2120721208#: parse-options.h:30621209msgid "be more quiet"21210msgstr "weniger Ausgaben"2121121212#: parse-options.h:31221213msgid "use <n> digits to display SHA-1s"21214msgstr "benutze <n> Ziffern zur Anzeige von SHA-1s"2121521216#: parse-options.h:33121217msgid "how to strip spaces and #comments from message"21218msgstr ""21219"wie Leerzeichen und #Kommentare von der Beschreibung getrennt werden sollen"2122021221#: ref-filter.h:10121222msgid "key"21223msgstr "Schüssel"2122421225#: ref-filter.h:10121226msgid "field name to sort on"21227msgstr "sortiere nach diesem Feld"2122821229#: rerere.h:4421230msgid "update the index with reused conflict resolution if possible"21231msgstr ""21232"Index, wenn möglich, mit wiederverwendeter Konfliktauflösung aktualisieren"2123321234#: command-list.h:5021235msgid "Add file contents to the index"21236msgstr "Dateiinhalte zum Commit vormerken"2123721238#: command-list.h:5121239msgid "Apply a series of patches from a mailbox"21240msgstr "eine Serie von Patches von einer Mailbox anwenden"2124121242#: command-list.h:5221243msgid "Annotate file lines with commit information"21244msgstr "Zeilen der Datei mit Commit-Informationen versehen und anzeigen"2124521246#: command-list.h:5321247msgid "Apply a patch to files and/or to the index"21248msgstr "einen Patch auf Dateien und/oder den Index anwenden"2124921250#: command-list.h:5421251msgid "Import a GNU Arch repository into Git"21252msgstr "ein GNU Arch Repository in Git importieren"2125321254#: command-list.h:5521255msgid "Create an archive of files from a named tree"21256msgstr "Dateiarchiv von angegebenem Verzeichnis erstellen"2125721258#: command-list.h:5621259msgid "Use binary search to find the commit that introduced a bug"21260msgstr ""21261"Binärsuche verwenden, um den Commit zu finden, der einen Fehler verursacht "21262"hat"2126321264#: command-list.h:5721265msgid "Show what revision and author last modified each line of a file"21266msgstr ""21267"Anzeigen, durch welchen Commit und Autor die jeweiligen Zeilen\n"21268"einer Datei zuletzt geändert wurden"2126921270#: command-list.h:5821271msgid "List, create, or delete branches"21272msgstr "Branches anzeigen, erstellen oder entfernen"2127321274#: command-list.h:5921275msgid "Move objects and refs by archive"21276msgstr "Objekte und Referenzen über ein Archiv verteilen"2127721278#: command-list.h:6021279msgid "Provide content or type and size information for repository objects"21280msgstr ""21281"Inhalt oder Informationen zu Typ und Größe für Repository-Objekte "21282"bereitstellen"2128321284#: command-list.h:6121285msgid "Display gitattributes information"21286msgstr "gitattributes Informationen darstellen"2128721288#: command-list.h:6221289msgid "Debug gitignore / exclude files"21290msgstr "Fehlersuche in gitignore / exclude Dateien"2129121292#: command-list.h:6321293msgid "Show canonical names and email addresses of contacts"21294msgstr "Name und E-Mail-Adresse von Kontakten anzeigen"2129521296#: command-list.h:6421297msgid "Switch branches or restore working tree files"21298msgstr "Branches wechseln oder Dateien im Arbeitsverzeichnis wiederherstellen"2129921300#: command-list.h:6521301msgid "Copy files from the index to the working tree"21302msgstr "Dateien von dem Index ins Arbeitsverzeichnis kopieren"2130321304#: command-list.h:6621305msgid "Ensures that a reference name is well formed"21306msgstr "Sicherstellen, dass ein Referenzname wohlgeformt ist"2130721308#: command-list.h:6721309msgid "Find commits yet to be applied to upstream"21310msgstr ""21311"Commits finden, die noch auf dem Upstream-Branch angewendet werden müssen"2131221313#: command-list.h:6821314msgid "Apply the changes introduced by some existing commits"21315msgstr "Änderungen eines existierenden Commits anwenden"2131621317#: command-list.h:6921318msgid "Graphical alternative to git-commit"21319msgstr "grafische Alternative zu git-commit"2132021321#: command-list.h:7021322msgid "Remove untracked files from the working tree"21323msgstr "unversionierte Dateien vom Arbeitsverzeichnis entfernen"2132421325#: command-list.h:7121326msgid "Clone a repository into a new directory"21327msgstr "ein Repository in einem neuen Verzeichnis klonen"2132821329#: command-list.h:7221330msgid "Display data in columns"21331msgstr "Daten in Spalten anzeigen"2133221333#: command-list.h:7321334msgid "Record changes to the repository"21335msgstr "Änderungen in das Repository eintragen"2133621337#: command-list.h:7421338msgid "Write and verify Git commit-graph files"21339msgstr "Git Commit-Graph-Dateien schreiben und überprüfen"2134021341#: command-list.h:7521342msgid "Create a new commit object"21343msgstr "ein neues Commit-Objekt erstellen"2134421345#: command-list.h:7621346msgid "Get and set repository or global options"21347msgstr "repositoryweite oder globale Optionen lesen oder setzen"2134821349#: command-list.h:7721350msgid "Count unpacked number of objects and their disk consumption"21351msgstr "Anzahl und Speicherverbrauch ungepackter Objekte zählen"2135221353#: command-list.h:7821354msgid "Retrieve and store user credentials"21355msgstr "Zugangsdaten des Benutzers empfangen und speichern"2135621357#: command-list.h:7921358msgid "Helper to temporarily store passwords in memory"21359msgstr ""21360"Hilfsprogramm zum temporären Speichern von Zugangsdaten im Hauptspeicher"2136121362#: command-list.h:8021363msgid "Helper to store credentials on disk"21364msgstr "Hilfsprogramm zum Speichern von Zugangsdaten auf der Festplatte"2136521366#: command-list.h:8121367msgid "Export a single commit to a CVS checkout"21368msgstr "einzelnen Commit zu einem ausgecheckten CSV-Repository exportieren"2136921370#: command-list.h:8221371msgid "Salvage your data out of another SCM people love to hate"21372msgstr "Ihre Daten aus einem anderen SCM übernehmen"2137321374#: command-list.h:8321375msgid "A CVS server emulator for Git"21376msgstr "ein CSV Server Emulator für Git"2137721378#: command-list.h:8421379msgid "A really simple server for Git repositories"21380msgstr "ein wirklich einfacher Server für Git Repositories"2138121382#: command-list.h:8521383msgid "Give an object a human readable name based on an available ref"21384msgstr ""21385"einem Objekt einen für Menschen lesbaren Namen basierend auf\n"21386"einer verfügbaren Referenz geben"2138721388#: command-list.h:8621389msgid "Show changes between commits, commit and working tree, etc"21390msgstr ""21391"Änderungen zwischen Commits, Commit und Arbeitsverzeichnis, etc. anzeigen"2139221393#: command-list.h:8721394msgid "Compares files in the working tree and the index"21395msgstr "Dateien von dem Arbeitsverzeichnis und dem Index vergleichen"2139621397#: command-list.h:8821398msgid "Compare a tree to the working tree or index"21399msgstr "ein Verzeichnis von dem Arbeitsverzeichnis und dem Index vergleichen"2140021401#: command-list.h:8921402msgid "Compares the content and mode of blobs found via two tree objects"21403msgstr ""21404"den Inhalt und Modus von Blobs aus zwei Verzeichnisobjekten vergleichen"2140521406#: command-list.h:9021407msgid "Show changes using common diff tools"21408msgstr "Änderungen mittels den allgemeinen Diff-Tools anzeigen"2140921410#: command-list.h:9121411msgid "Git data exporter"21412msgstr "Export Tool für Git Daten"2141321414#: command-list.h:9221415msgid "Backend for fast Git data importers"21416msgstr "Backend für schnelle Git Daten Import Tools"2141721418#: command-list.h:9321419msgid "Download objects and refs from another repository"21420msgstr "Objekte und Referenzen von einem anderen Repository herunterladen"2142121422#: command-list.h:9421423msgid "Receive missing objects from another repository"21424msgstr "fehlende Objekte von einem anderen Repository empfangen"2142521426#: command-list.h:9521427msgid "Rewrite branches"21428msgstr "Branches umschreiben"2142921430#: command-list.h:9621431msgid "Produce a merge commit message"21432msgstr "Beschreibung eines Merge-Commits erzeugen"2143321434#: command-list.h:9721435msgid "Output information on each ref"21436msgstr "Informationen für jede Referenz ausgeben"2143721438#: command-list.h:9821439msgid "Prepare patches for e-mail submission"21440msgstr "Patches für E-Mail-Versand vorbereiten"2144121442#: command-list.h:9921443msgid "Verifies the connectivity and validity of the objects in the database"21444msgstr ""21445"stellt die Verbundenheit und Gültigkeit der Objekte in der Datenbank sicher"2144621447#: command-list.h:10021448msgid "Cleanup unnecessary files and optimize the local repository"21449msgstr "nicht benötigte Dateien entfernen und das lokale Repository optimieren"2145021451#: command-list.h:10121452msgid "Extract commit ID from an archive created using git-archive"21453msgstr ""21454"Commit-ID eines Archivs extrahieren, welches mit git-archive erstellt wurde"2145521456#: command-list.h:10221457msgid "Print lines matching a pattern"21458msgstr "Zeilen darstellen, die einem Muster entsprechen"2145921460#: command-list.h:10321461msgid "A portable graphical interface to Git"21462msgstr "eine portable grafische Schnittstelle zu Git"2146321464#: command-list.h:10421465msgid "Compute object ID and optionally creates a blob from a file"21466msgstr ""21467"von einer Datei die Objekt-ID berechnen und optional ein Blob erstellen"2146821469#: command-list.h:10521470msgid "Display help information about Git"21471msgstr "Hilfsinformationen über Git anzeigen"2147221473#: command-list.h:10621474msgid "Server side implementation of Git over HTTP"21475msgstr "serverseitige Implementierung von Git über HTTP"2147621477#: command-list.h:10721478msgid "Download from a remote Git repository via HTTP"21479msgstr "von einem Remote-Git-Repository über HTTP herunterladen"2148021481#: command-list.h:10821482msgid "Push objects over HTTP/DAV to another repository"21483msgstr "Objekte über HTTP/DAV zu einem anderen Repository übertragen"2148421485#: command-list.h:10921486msgid "Send a collection of patches from stdin to an IMAP folder"21487msgstr ""21488"eine Sammlung von Patches von der Standard-Eingabe zu einem IMAP-Ordner "21489"senden"2149021491#: command-list.h:11021492msgid "Build pack index file for an existing packed archive"21493msgstr "Pack-Index-Datei für ein existierendes gepacktes Archiv erzeugen"2149421495#: command-list.h:11121496msgid "Create an empty Git repository or reinitialize an existing one"21497msgstr ""21498"ein leeres Git-Repository erstellen oder ein bestehendes neuinitialisieren"2149921500#: command-list.h:11221501msgid "Instantly browse your working repository in gitweb"21502msgstr "Ihr aktuelles Repository sofort in gitweb betrachten"2150321504#: command-list.h:11321505msgid "Add or parse structured information in commit messages"21506msgstr ""21507"Strukturierte Informationen in Commit-Beschreibungen hinzufügen oder parsen"2150821509#: command-list.h:11421510msgid "The Git repository browser"21511msgstr "der Git-Repository-Browser"2151221513#: command-list.h:11521514msgid "Show commit logs"21515msgstr "Commit-Historie anzeigen"2151621517#: command-list.h:11621518msgid "Show information about files in the index and the working tree"21519msgstr ""21520"Informationen über Dateien in dem Index und im Arbeitsverzeichnis anzeigen"2152121522#: command-list.h:11721523msgid "List references in a remote repository"21524msgstr "Referenzen in einem Remote-Repository auflisten"2152521526#: command-list.h:11821527msgid "List the contents of a tree object"21528msgstr "Inhalte eines Tree-Objektes auflisten"2152921530#: command-list.h:11921531msgid "Extracts patch and authorship from a single e-mail message"21532msgstr ""21533"Patch und Urheberschaft von einer einzelnen E-Mail-Nachricht extrahieren"2153421535#: command-list.h:12021536msgid "Simple UNIX mbox splitter program"21537msgstr "einfaches UNIX mbox Splitter-Programm"2153821539#: command-list.h:12121540msgid "Join two or more development histories together"21541msgstr "zwei oder mehr Entwicklungszweige zusammenführen"2154221543#: command-list.h:12221544msgid "Find as good common ancestors as possible for a merge"21545msgstr "möglichst besten gemeinsamen Vorgänger-Commit für einen Merge finden"2154621547#: command-list.h:12321548msgid "Run a three-way file merge"21549msgstr "einen 3-Wege-Datei-Merge ausführen"2155021551#: command-list.h:12421552msgid "Run a merge for files needing merging"21553msgstr "einen Merge für zusammenzuführende Dateien ausführen"2155421555#: command-list.h:12521556msgid "The standard helper program to use with git-merge-index"21557msgstr "das Standard-Hilfsprogramm für die Verwendung mit git-merge-index"2155821559#: command-list.h:12621560msgid "Run merge conflict resolution tools to resolve merge conflicts"21561msgstr ""21562"Ausführen von Tools zur Auflösung von Merge-Konflikten zur Behebung dieser"2156321564#: command-list.h:12721565msgid "Show three-way merge without touching index"21566msgstr "3-Wege-Merge anzeigen ohne den Index zu verändern"2156721568#: command-list.h:12821569msgid "Write and verify multi-pack-indexes"21570msgstr "multi-pack-indexes schreiben und überprüfen"2157121572#: command-list.h:12921573msgid "Creates a tag object"21574msgstr "ein Tag-Objekt erstellen"2157521576#: command-list.h:13021577msgid "Build a tree-object from ls-tree formatted text"21578msgstr "Tree-Objekt aus ls-tree formattiertem Text erzeugen"2157921580#: command-list.h:13121581msgid "Move or rename a file, a directory, or a symlink"21582msgstr ""21583"eine Datei, ein Verzeichnis, oder eine symbolische Verknüpfung verschieben "21584"oder umbenennen"2158521586#: command-list.h:13221587msgid "Find symbolic names for given revs"21588msgstr "symbolische Namen für die gegebenen Commits finden"2158921590#: command-list.h:13321591msgid "Add or inspect object notes"21592msgstr "Objekt-Notizen hinzufügen oder überprüfen"2159321594#: command-list.h:13421595msgid "Import from and submit to Perforce repositories"21596msgstr "von Perforce Repositories importieren und nach diese senden"2159721598#: command-list.h:13521599msgid "Create a packed archive of objects"21600msgstr "ein gepacktes Archiv von Objekten erstellen"2160121602#: command-list.h:13621603msgid "Find redundant pack files"21604msgstr "redundante Paketdateien finden"2160521606#: command-list.h:13721607msgid "Pack heads and tags for efficient repository access"21608msgstr "Branches und Tags für effizienten Zugriff auf das Repository packen"2160921610#: command-list.h:13821611msgid "Routines to help parsing remote repository access parameters"21612msgstr ""21613"Routinen als Hilfe zum Parsen von Zugriffsparametern von Remote-Repositories"2161421615#: command-list.h:13921616msgid "Compute unique ID for a patch"21617msgstr "eindeutige ID für einen Patch berechnen"2161821619#: command-list.h:14021620msgid "Prune all unreachable objects from the object database"21621msgstr "alle nicht erreichbaren Objekte von der Objektdatenbank entfernen"2162221623#: command-list.h:14121624msgid "Remove extra objects that are already in pack files"21625msgstr ""21626"zusätzliche Objekte, die sich bereits in Paketdateien befinden, entfernen"2162721628#: command-list.h:14221629msgid "Fetch from and integrate with another repository or a local branch"21630msgstr ""21631"Objekte von einem externen Repository anfordern und sie mit einem anderen "21632"Repository oder einem lokalen Branch zusammenführen"2163321634#: command-list.h:14321635msgid "Update remote refs along with associated objects"21636msgstr "Remote-Referenzen mitsamt den verbundenen Objekten aktualisieren"2163721638#: command-list.h:14421639msgid "Applies a quilt patchset onto the current branch"21640msgstr "Patches aus quilt auf aktuellen Branch anwenden"2164121642#: command-list.h:14521643msgid "Compare two commit ranges (e.g. two versions of a branch)"21644msgstr "zwei Commit-Bereiche vergleichen (zwei Versionen eines Branches)"2164521646#: command-list.h:14621647msgid "Reads tree information into the index"21648msgstr "Verzeichnisinformationen in den Index einlesen"2164921650#: command-list.h:14721651msgid "Reapply commits on top of another base tip"21652msgstr "Wiederholtes Anwenden von Commits auf anderem Basis-Commit"2165321654#: command-list.h:14821655msgid "Receive what is pushed into the repository"21656msgstr "Empfangen was in das Repository übertragen wurde"2165721658#: command-list.h:14921659msgid "Manage reflog information"21660msgstr "Reflog Informationen verwalten"2166121662#: command-list.h:15021663msgid "Manage set of tracked repositories"21664msgstr "Menge von hinterlegten Repositories verwalten"2166521666#: command-list.h:15121667msgid "Pack unpacked objects in a repository"21668msgstr "ungepackte Objekte in einem Repository packen"2166921670#: command-list.h:15221671msgid "Create, list, delete refs to replace objects"21672msgstr "Referenzen für ersetzende Objekte erstellen, auflisten, löschen"2167321674#: command-list.h:15321675msgid "Generates a summary of pending changes"21676msgstr "eine Übersicht über ausstehende Änderungen generieren"2167721678#: command-list.h:15421679msgid "Reuse recorded resolution of conflicted merges"21680msgstr "aufgezeichnete Auflösung von Merge-Konflikten wiederverwenden"2168121682#: command-list.h:15521683msgid "Reset current HEAD to the specified state"21684msgstr "aktuellen HEAD zu einem spezifizierten Zustand setzen"2168521686#: command-list.h:15621687msgid "Revert some existing commits"21688msgstr "einige bestehende Commits rückgängig machen"2168921690#: command-list.h:15721691msgid "Lists commit objects in reverse chronological order"21692msgstr "Commit-Objekte in umgekehrter chronologischer Ordnung auflisten"2169321694#: command-list.h:15821695msgid "Pick out and massage parameters"21696msgstr "Parameter herauspicken und ändern"2169721698#: command-list.h:15921699msgid "Remove files from the working tree and from the index"21700msgstr "Dateien im Arbeitsverzeichnis und vom Index löschen"2170121702#: command-list.h:16021703msgid "Send a collection of patches as emails"21704msgstr "eine Sammlung von Patches als E-Mails versenden"2170521706#: command-list.h:16121707msgid "Push objects over Git protocol to another repository"21708msgstr "Objekte über das Git Protokoll zu einem anderen Repository übertragen"2170921710#: command-list.h:16221711msgid "Restricted login shell for Git-only SSH access"21712msgstr "Login-Shell beschränkt für Nur-Git SSH-Zugriff"2171321714#: command-list.h:16321715msgid "Summarize 'git log' output"21716msgstr "Ausgabe von 'git log' zusammenfassen"2171721718#: command-list.h:16421719msgid "Show various types of objects"21720msgstr "verschiedene Arten von Objekten anzeigen"2172121722#: command-list.h:16521723msgid "Show branches and their commits"21724msgstr "Branches und ihre Commits ausgeben"2172521726#: command-list.h:16621727msgid "Show packed archive index"21728msgstr "gepackten Archiv-Index anzeigen"2172921730#: command-list.h:16721731msgid "List references in a local repository"21732msgstr "Referenzen in einem lokales Repository auflisten"2173321734#: command-list.h:16821735msgid "Git's i18n setup code for shell scripts"21736msgstr "Git's i18n-Konfigurationscode für Shell-Skripte"2173721738#: command-list.h:16921739msgid "Common Git shell script setup code"21740msgstr "allgemeiner Git Shell-Skript Konfigurationscode"2174121742#: command-list.h:17021743msgid "Stash the changes in a dirty working directory away"21744msgstr "Änderungen in einem Arbeitsverzeichnis aufbewahren"2174521746#: command-list.h:17121747msgid "Add file contents to the staging area"21748msgstr "Dateiinhalte der Staging-Area hinzufügen"2174921750#: command-list.h:17221751msgid "Show the working tree status"21752msgstr "den Zustand des Arbeitsverzeichnisses anzeigen"2175321754#: command-list.h:17321755msgid "Remove unnecessary whitespace"21756msgstr "nicht erforderlichen Whitespace entfernen"2175721758#: command-list.h:17421759msgid "Initialize, update or inspect submodules"21760msgstr "Submodule initialisieren, aktualisieren oder inspizieren"2176121762#: command-list.h:17521763msgid "Bidirectional operation between a Subversion repository and Git"21764msgstr ""21765"Bidirektionale Operationen zwischen einem Subversion Repository und Git"2176621767#: command-list.h:17621768msgid "Read, modify and delete symbolic refs"21769msgstr "symbolische Referenzen lesen, ändern und löschen"2177021771#: command-list.h:17721772msgid "Create, list, delete or verify a tag object signed with GPG"21773msgstr ""21774"ein mit GPG signiertes Tag-Objekt erzeugen, auflisten, löschen oder "21775"verifizieren."2177621777#: command-list.h:17821778msgid "Creates a temporary file with a blob's contents"21779msgstr "eine temporäre Datei mit den Inhalten eines Blobs erstellen"2178021781#: command-list.h:17921782msgid "Unpack objects from a packed archive"21783msgstr "Objekte von einem gepackten Archiv entpacken"2178421785#: command-list.h:18021786msgid "Register file contents in the working tree to the index"21787msgstr "Dateiinhalte aus dem Arbeitsverzeichnis im Index registrieren"2178821789#: command-list.h:18121790msgid "Update the object name stored in a ref safely"21791msgstr ""21792"den Objektnamen, der in einer Referenz gespeichert ist, sicher aktualisieren"2179321794#: command-list.h:18221795msgid "Update auxiliary info file to help dumb servers"21796msgstr "Hilfsinformationsdatei zur Hilfe von einfachen Servern aktualisieren"2179721798#: command-list.h:18321799msgid "Send archive back to git-archive"21800msgstr "Archiv zurück zu git-archive senden"2180121802#: command-list.h:18421803msgid "Send objects packed back to git-fetch-pack"21804msgstr "Objekte gepackt zurück an git-fetch-pack senden"2180521806#: command-list.h:18521807msgid "Show a Git logical variable"21808msgstr "eine logische Variable von Git anzeigen"2180921810#: command-list.h:18621811msgid "Check the GPG signature of commits"21812msgstr "die GPG-Signatur von Commits prüfen"2181321814#: command-list.h:18721815msgid "Validate packed Git archive files"21816msgstr "gepackte Git-Archivdateien validieren"2181721818#: command-list.h:18821819msgid "Check the GPG signature of tags"21820msgstr "die GPG-Signatur von Tags prüfen"2182121822#: command-list.h:18921823msgid "Git web interface (web frontend to Git repositories)"21824msgstr "Git Web Interface (Web-Frontend für Git-Repositories)"2182521826#: command-list.h:19021827msgid "Show logs with difference each commit introduces"21828msgstr "Logs mit dem Unterschied, den jeder Commit einführt, anzeigen"2182921830#: command-list.h:19121831msgid "Manage multiple working trees"21832msgstr "mehrere Arbeitsverzeichnisse verwalten"2183321834#: command-list.h:19221835msgid "Create a tree object from the current index"21836msgstr "Tree-Objekt vom aktuellen Index erstellen"2183721838#: command-list.h:19321839msgid "Defining attributes per path"21840msgstr "Definition von Attributen pro Pfad"2184121842#: command-list.h:19421843msgid "Git command-line interface and conventions"21844msgstr "Git Kommandozeilenschnittstelle und Konventionen"2184521846#: command-list.h:19521847msgid "A Git core tutorial for developers"21848msgstr "eine Git Anleitung für Entwickler"2184921850#: command-list.h:19621851msgid "Git for CVS users"21852msgstr "Git für CVS Benutzer"2185321854#: command-list.h:19721855msgid "Tweaking diff output"21856msgstr "Diff-Ausgabe optimieren"2185721858#: command-list.h:19821859msgid "A useful minimum set of commands for Everyday Git"21860msgstr ""21861"ein kleine, nützliche Menge von Befehlen für die tägliche Verwendung von Git"2186221863#: command-list.h:19921864msgid "A Git Glossary"21865msgstr "ein Git-Glossar"2186621867#: command-list.h:20021868msgid "Hooks used by Git"21869msgstr "von Git verwendete Hooks"2187021871#: command-list.h:20121872msgid "Specifies intentionally untracked files to ignore"21873msgstr "Spezifikation von bewusst ignorierten, unversionierten Dateien"2187421875#: command-list.h:20221876msgid "Defining submodule properties"21877msgstr "Definition von Submodul-Eigenschaften"2187821879#: command-list.h:20321880msgid "Git namespaces"21881msgstr "Git Namensbereiche"2188221883#: command-list.h:20421884msgid "Git Repository Layout"21885msgstr "Git Repository Aufbau"2188621887#: command-list.h:20521888msgid "Specifying revisions and ranges for Git"21889msgstr "Spezifikation von Commits und Bereichen für Git"2189021891#: command-list.h:20621892msgid "A tutorial introduction to Git: part two"21893msgstr "eine einführende Anleitung zu Git: Teil zwei"2189421895#: command-list.h:20721896msgid "A tutorial introduction to Git"21897msgstr "eine einführende Anleitung zu Git"2189821899#: command-list.h:20821900msgid "An overview of recommended workflows with Git"21901msgstr "Eine Übersicht über empfohlene Arbeitsabläufe mit Git"2190221903#: git-bisect.sh:5421904msgid "You need to start by \"git bisect start\""21905msgstr "Sie müssen mit \"git bisect start\" beginnen."2190621907#. TRANSLATORS: Make sure to include [Y] and [n] in your21908#. translation. The program will only accept English input21909#. at this point.21910#: git-bisect.sh:6021911msgid "Do you want me to do it for you [Y/n]? "21912msgstr "Wollen Sie, dass ich es für Sie mache [Y/n]? "2191321914#: git-bisect.sh:10121915#, sh-format21916msgid "Bad rev input: $arg"21917msgstr "Ungültige Referenz-Eingabe: $arg"2191821919#: git-bisect.sh:12121920#, sh-format21921msgid "Bad rev input: $bisected_head"21922msgstr "Ungültige Referenz-Eingabe: $bisected_head"2192321924#: git-bisect.sh:13021925#, sh-format21926msgid "Bad rev input: $rev"21927msgstr "Ungültige Referenz-Eingabe: $rev"2192821929#: git-bisect.sh:13921930#, sh-format21931msgid "'git bisect $TERM_BAD' can take only one argument."21932msgstr "'git bisect $TERM_BAD' kann nur ein Argument entgegennehmen."2193321934#: git-bisect.sh:20921935msgid "No logfile given"21936msgstr "Keine Log-Datei gegeben"2193721938#: git-bisect.sh:21021939#, sh-format21940msgid "cannot read $file for replaying"21941msgstr "kann $file nicht für das Abspielen lesen"2194221943#: git-bisect.sh:23221944msgid "?? what are you talking about?"21945msgstr "?? Was reden Sie da?"2194621947#: git-bisect.sh:24121948msgid "bisect run failed: no command provided."21949msgstr "'bisect run' fehlgeschlagen: kein Befehl angegeben."2195021951#: git-bisect.sh:24621952#, sh-format21953msgid "running $command"21954msgstr "führe $command aus"2195521956#: git-bisect.sh:25321957#, sh-format21958msgid ""21959"bisect run failed:\n"21960"exit code $res from '$command' is < 0 or >= 128"21961msgstr ""21962"'bisect run' fehlgeschlagen:\n"21963"Rückkehrwert $res von '$command' ist < 0 oder >= 128"2196421965#: git-bisect.sh:27921966msgid "bisect run cannot continue any more"21967msgstr "'bisect run' kann nicht mehr fortgesetzt werden"2196821969#: git-bisect.sh:28521970#, sh-format21971msgid ""21972"bisect run failed:\n"21973"'bisect_state $state' exited with error code $res"21974msgstr ""21975"'bisect run' fehlgeschlagen:\n"21976"'bisect_state $state' wurde mit Fehlerwert $res beendet"2197721978#: git-bisect.sh:29221979msgid "bisect run success"21980msgstr "'bisect run' erfolgreich ausgeführt"2198121982#: git-bisect.sh:30021983msgid "We are not bisecting."21984msgstr "keine binäre Suche im Gange"2198521986#: git-merge-octopus.sh:4621987msgid ""21988"Error: Your local changes to the following files would be overwritten by "21989"merge"21990msgstr ""21991"Fehler: Ihre lokalen Änderungen in den folgenden Dateien würden durch den "21992"Merge\n"21993"überschrieben werden"2199421995#: git-merge-octopus.sh:6121996msgid "Automated merge did not work."21997msgstr "Automatischer Merge hat nicht funktioniert."2199821999#: git-merge-octopus.sh:6222000msgid "Should not be doing an octopus."22001msgstr "Sollte keinen Octopus-Merge ausführen."2200222003#: git-merge-octopus.sh:7322004#, sh-format22005msgid "Unable to find common commit with $pretty_name"22006msgstr "Konnte keinen gemeinsamen Commit mit $pretty_name finden."2200722008#: git-merge-octopus.sh:7722009#, sh-format22010msgid "Already up to date with $pretty_name"22011msgstr "Bereits aktuell mit $pretty_name"2201222013#: git-merge-octopus.sh:8922014#, sh-format22015msgid "Fast-forwarding to: $pretty_name"22016msgstr "Spule vor zu: $pretty_name"2201722018#: git-merge-octopus.sh:9722019#, sh-format22020msgid "Trying simple merge with $pretty_name"22021msgstr "Versuche einfachen Merge mit $pretty_name"2202222023#: git-merge-octopus.sh:10222024msgid "Simple merge did not work, trying automatic merge."22025msgstr "Einfacher Merge hat nicht funktioniert, versuche automatischen Merge."2202622027#: git-legacy-stash.sh:22022028msgid "Cannot remove temporary index (can't happen)"22029msgstr "Kann temporären Index nicht löschen (kann nicht passieren)"2203022031#: git-legacy-stash.sh:27122032#, sh-format22033msgid "Cannot update $ref_stash with $w_commit"22034msgstr "Kann $ref_stash nicht mit $w_commit aktualisieren."2203522036#: git-legacy-stash.sh:32322037#, sh-format22038msgid "error: unknown option for 'stash push': $option"22039msgstr "Fehler: unbekannte Option für 'stash push': $option"2204022041#: git-legacy-stash.sh:35522042#, sh-format22043msgid "Saved working directory and index state $stash_msg"22044msgstr "Speicherte Arbeitsverzeichnis und Index-Status $stash_msg"2204522046#: git-legacy-stash.sh:53522047#, sh-format22048msgid "unknown option: $opt"22049msgstr "unbekannte Option: $opt"2205022051#: git-legacy-stash.sh:55522052#, sh-format22053msgid "Too many revisions specified: $REV"22054msgstr "Zu viele Commits angegeben: $REV"2205522056#: git-legacy-stash.sh:57022057#, sh-format22058msgid "$reference is not a valid reference"22059msgstr "$reference ist keine gültige Referenz"2206022061#: git-legacy-stash.sh:59822062#, sh-format22063msgid "'$args' is not a stash-like commit"22064msgstr "'$args' ist kein \"stash\"-artiger Commit"2206522066#: git-legacy-stash.sh:60922067#, sh-format22068msgid "'$args' is not a stash reference"22069msgstr "'$args' ist keine \"stash\"-Referenz"2207022071#: git-legacy-stash.sh:61722072msgid "unable to refresh index"22073msgstr "Konnte den Index nicht aktualisieren."2207422075#: git-legacy-stash.sh:62122076msgid "Cannot apply a stash in the middle of a merge"22077msgstr "Kann \"stash\" nicht anwenden, solange ein Merge im Gange ist"2207822079#: git-legacy-stash.sh:62922080msgid "Conflicts in index. Try without --index."22081msgstr "Konflikte im Index. Versuchen Sie es ohne --index."2208222083#: git-legacy-stash.sh:63122084msgid "Could not save index tree"22085msgstr "Konnte Index-Verzeichnis nicht speichern"2208622087#: git-legacy-stash.sh:64022088msgid "Could not restore untracked files from stash entry"22089msgstr ""22090"Konnte unversionierte Dateien vom Stash-Eintrag nicht wiederherstellen."2209122092#: git-legacy-stash.sh:66522093msgid "Cannot unstage modified files"22094msgstr "Kann geänderte Dateien nicht aus dem Index entfernen"2209522096#: git-legacy-stash.sh:70322097#, sh-format22098msgid "Dropped ${REV} ($s)"22099msgstr "${REV} ($s) gelöscht"2210022101#: git-legacy-stash.sh:70422102#, sh-format22103msgid "${REV}: Could not drop stash entry"22104msgstr "${REV}: Konnte \"stash\"-Eintrag nicht löschen"2210522106#: git-legacy-stash.sh:79122107msgid "(To restore them type \"git stash apply\")"22108msgstr "(Zur Wiederherstellung geben Sie \"git stash apply\" ein)"2210922110#: git-submodule.sh:20022111msgid "Relative path can only be used from the toplevel of the working tree"22112msgstr ""22113"Relative Pfade können nur von der obersten Ebene des Arbeitsverzeichnisses "22114"benutzt werden."2211522116#: git-submodule.sh:21022117#, sh-format22118msgid "repo URL: '$repo' must be absolute or begin with ./|../"22119msgstr "repo URL: '$repo' muss absolut sein oder mit ./|../ beginnen"2212022121#: git-submodule.sh:22922122#, sh-format22123msgid "'$sm_path' already exists in the index"22124msgstr "'$sm_path' ist bereits zum Commit vorgemerkt"2212522126#: git-submodule.sh:23222127#, sh-format22128msgid "'$sm_path' already exists in the index and is not a submodule"22129msgstr "'$sm_path' ist bereits zum Commit vorgemerkt und ist kein Submodul"2213022131#: git-submodule.sh:23922132#, sh-format22133msgid "'$sm_path' does not have a commit checked out"22134msgstr "'$sm_path' hat keinen Commit ausgecheckt"2213522136#: git-submodule.sh:24522137#, sh-format22138msgid ""22139"The following path is ignored by one of your .gitignore files:\n"22140"$sm_path\n"22141"Use -f if you really want to add it."22142msgstr ""22143"Der folgende Pfad wird durch eine Ihrer \".gitignore\" Dateien ignoriert:\n"22144"$sm_path\n"22145"Benutzen Sie -f wenn Sie diesen wirklich hinzufügen möchten."2214622147#: git-submodule.sh:26822148#, sh-format22149msgid "Adding existing repo at '$sm_path' to the index"22150msgstr "Füge existierendes Repository in '$sm_path' dem Index hinzu."2215122152#: git-submodule.sh:27022153#, sh-format22154msgid "'$sm_path' already exists and is not a valid git repo"22155msgstr "'$sm_path' existiert bereits und ist kein gültiges Git-Repository"2215622157#: git-submodule.sh:27822158#, sh-format22159msgid "A git directory for '$sm_name' is found locally with remote(s):"22160msgstr ""22161"Ein Git-Verzeichnis für '$sm_name' wurde lokal gefunden mit den Remote-"22162"Repositories:"2216322164#: git-submodule.sh:28022165#, sh-format22166msgid ""22167"If you want to reuse this local git directory instead of cloning again from\n"22168" $realrepo\n"22169"use the '--force' option. If the local git directory is not the correct "22170"repo\n"22171"or you are unsure what this means choose another name with the '--name' "22172"option."22173msgstr ""22174"Wenn Sie das lokale Git-Verzeichnis wiederverwenden wollen, anstatt erneut "22175"von\n"22176" $realrepo\n"22177"zu klonen, benutzen Sie die Option '--force'. Wenn das lokale Git-"22178"Verzeichnis\n"22179"nicht das korrekte Repository ist oder Sie unsicher sind, was das bedeutet,\n"22180"wählen Sie einen anderen Namen mit der Option '--name'."2218122182#: git-submodule.sh:28622183#, sh-format22184msgid "Reactivating local git directory for submodule '$sm_name'."22185msgstr "Reaktiviere lokales Git-Verzeichnis für Submodul '$sm_name'."2218622187#: git-submodule.sh:29822188#, sh-format22189msgid "Unable to checkout submodule '$sm_path'"22190msgstr "Kann Submodul '$sm_path' nicht auschecken"2219122192#: git-submodule.sh:30322193#, sh-format22194msgid "Failed to add submodule '$sm_path'"22195msgstr "Hinzufügen von Submodul '$sm_path' fehlgeschlagen"2219622197#: git-submodule.sh:31222198#, sh-format22199msgid "Failed to register submodule '$sm_path'"22200msgstr "Fehler beim Eintragen von Submodul '$sm_path' in die Konfiguration."2220122202#: git-submodule.sh:57322203#, sh-format22204msgid "Unable to find current revision in submodule path '$displaypath'"22205msgstr "Konnte aktuellen Commit in Submodul-Pfad '$displaypath' nicht finden."2220622207#: git-submodule.sh:58322208#, sh-format22209msgid "Unable to fetch in submodule path '$sm_path'"22210msgstr "Konnte \"fetch\" in Submodul-Pfad '$sm_path' nicht ausführen"2221122212#: git-submodule.sh:58822213#, sh-format22214msgid ""22215"Unable to find current ${remote_name}/${branch} revision in submodule path "22216"'$sm_path'"22217msgstr ""22218"Konnte aktuellen Commit von ${remote_name}/${branch} in Submodul-Pfad\n"22219"'$sm_path' nicht finden."2222022221#: git-submodule.sh:60622222#, sh-format22223msgid ""22224"Unable to fetch in submodule path '$displaypath'; trying to directly fetch "22225"$sha1:"22226msgstr ""22227"Konnte \"fetch\" in Submodul-Pfad '$displaypath' nicht ausführen. Versuche "22228"$sha1 direkt anzufordern:"2222922230#: git-submodule.sh:61222231#, sh-format22232msgid ""22233"Fetched in submodule path '$displaypath', but it did not contain $sha1. "22234"Direct fetching of that commit failed."22235msgstr ""22236"\"fetch\" in Submodul-Pfad '$displaypath' ausgeführt, aber $sha1 nicht\n"22237"enthalten. Direktes Anfordern dieses Commits ist fehlgeschlagen."2223822239#: git-submodule.sh:61922240#, sh-format22241msgid "Unable to checkout '$sha1' in submodule path '$displaypath'"22242msgstr "Konnte '$sha1' in Submodul-Pfad '$displaypath' nicht auschecken."2224322244#: git-submodule.sh:62022245#, sh-format22246msgid "Submodule path '$displaypath': checked out '$sha1'"22247msgstr "Submodul-Pfad: '$displaypath': '$sha1' ausgecheckt"2224822249#: git-submodule.sh:62422250#, sh-format22251msgid "Unable to rebase '$sha1' in submodule path '$displaypath'"22252msgstr "Rebase auf '$sha1' in Submodul-Pfad '$displaypath' nicht möglich"2225322254#: git-submodule.sh:62522255#, sh-format22256msgid "Submodule path '$displaypath': rebased into '$sha1'"22257msgstr "Submodul-Pfad '$displaypath': Rebase auf '$sha1'"2225822259#: git-submodule.sh:63022260#, sh-format22261msgid "Unable to merge '$sha1' in submodule path '$displaypath'"22262msgstr "Merge von '$sha1' in Submodul-Pfad '$displaypath' fehlgeschlagen"2226322264#: git-submodule.sh:63122265#, sh-format22266msgid "Submodule path '$displaypath': merged in '$sha1'"22267msgstr "Submodul-Pfad '$displaypath': zusammengeführt in '$sha1'"2226822269#: git-submodule.sh:63622270#, sh-format22271msgid "Execution of '$command $sha1' failed in submodule path '$displaypath'"22272msgstr ""22273"Ausführung von '$command $sha1' in Submodul-Pfad '$displaypath' "22274"fehlgeschlagen"2227522276#: git-submodule.sh:63722277#, sh-format22278msgid "Submodule path '$displaypath': '$command $sha1'"22279msgstr "Submodul-Pfad '$displaypath': '$command $sha1'"2228022281#: git-submodule.sh:66822282#, sh-format22283msgid "Failed to recurse into submodule path '$displaypath'"22284msgstr "Fehler bei Rekursion in Submodul-Pfad '$displaypath'"2228522286#: git-submodule.sh:83022287msgid "The --cached option cannot be used with the --files option"22288msgstr ""22289"Die Optionen --cached und --files können nicht gemeinsam verwendet werden."2229022291#: git-submodule.sh:88222292#, sh-format22293msgid "unexpected mode $mod_dst"22294msgstr "unerwarteter Modus $mod_dst"2229522296#: git-submodule.sh:90222297#, sh-format22298msgid " Warn: $display_name doesn't contain commit $sha1_src"22299msgstr " Warnung: $display_name beinhaltet nicht Commit $sha1_src"2230022301#: git-submodule.sh:90522302#, sh-format22303msgid " Warn: $display_name doesn't contain commit $sha1_dst"22304msgstr " Warnung: $display_name beinhaltet nicht Commit $sha1_dst"2230522306#: git-submodule.sh:90822307#, sh-format22308msgid " Warn: $display_name doesn't contain commits $sha1_src and $sha1_dst"22309msgstr ""22310" Warnung: $display_name beinhaltet nicht die Commits $sha1_src und $sha1_dst"2231122312#: git-parse-remote.sh:8922313#, sh-format22314msgid "See git-${cmd}(1) for details."22315msgstr "Siehe git-${cmd}(1) für weitere Details."2231622317#: git-rebase--preserve-merges.sh:13622318#, sh-format22319msgid "Rebasing ($new_count/$total)"22320msgstr "Führe Rebase aus ($new_count/$total)"2232122322#: git-rebase--preserve-merges.sh:15222323msgid ""22324"\n"22325"Commands:\n"22326"p, pick <commit> = use commit\n"22327"r, reword <commit> = use commit, but edit the commit message\n"22328"e, edit <commit> = use commit, but stop for amending\n"22329"s, squash <commit> = use commit, but meld into previous commit\n"22330"f, fixup <commit> = like \"squash\", but discard this commit's log message\n"22331"x, exec <commit> = run command (the rest of the line) using shell\n"22332"d, drop <commit> = remove commit\n"22333"l, label <label> = label current HEAD with a name\n"22334"t, reset <label> = reset HEAD to a label\n"22335"m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]\n"22336". create a merge commit using the original merge commit's\n"22337". message (or the oneline, if no original merge commit was\n"22338". specified). Use -c <commit> to reword the commit message.\n"22339"\n"22340"These lines can be re-ordered; they are executed from top to bottom.\n"22341msgstr ""22342"\n"22343"Befehle:\n"22344"p, pick <Commit> = Commit verwenden\n"22345"r, reword <Commit> = Commit verwenden, aber Commit-Beschreibung bearbeiten\n"22346"e, edit <Commit> = Commit verwenden, aber zum Nachbessern anhalten\n"22347"s, squash <Commit> = Commit verwenden, aber mit vorherigem Commit vereinen\n"22348"f, fixup <Commit> = wie \"squash\", aber diese Commit-Beschreibung "22349"verwerfen\n"22350"x, exec <Commit> = Befehl (Rest der Zeile) mittels Shell ausführen\n"22351"d, drop <Commit> = Commit entfernen\n"22352"l, label <Label> = aktuellen HEAD mit Label versehen\n"22353"t, reset <Label> = HEAD zu einem Label umsetzen\n"22354"m, merge [-C <Commit> | -c <Commit>] <Label> [# <eineZeile>]\n"22355". Merge-Commit mit der originalen Merge-Commit-Beschreibung erstellen\n"22356". (oder die eine Zeile, wenn keine originale Merge-Commit-"22357"Beschreibung\n"22358". spezifiziert ist). Benutzen Sie -c <Commit> zum Bearbeiten der\n"22359". Commit-Beschreibung.\n"22360"\n"22361"Diese Zeilen können umsortiert werden; Sie werden von oben nach unten\n"22362"ausgeführt.\n"2236322364#: git-rebase--preserve-merges.sh:21522365#, sh-format22366msgid ""22367"You can amend the commit now, with\n"22368"\n"22369"\tgit commit --amend $gpg_sign_opt_quoted\n"22370"\n"22371"Once you are satisfied with your changes, run\n"22372"\n"22373"\tgit rebase --continue"22374msgstr ""22375"Sie können den Commit nun nachbessern mit:\n"22376"\n"22377"\tgit commit --amend $gpg_sign_opt_quoted\n"22378"\n"22379"Sobald Sie mit Ihren Änderungen zufrieden sind, führen Sie aus:\n"22380"\n"22381"\tgit rebase --continue"2238222383#: git-rebase--preserve-merges.sh:24022384#, sh-format22385msgid "$sha1: not a commit that can be picked"22386msgstr "$sha1: kein Commit der gepickt werden kann"2238722388#: git-rebase--preserve-merges.sh:27922389#, sh-format22390msgid "Invalid commit name: $sha1"22391msgstr "Ungültiger Commit-Name: $sha1"2239222393#: git-rebase--preserve-merges.sh:30922394msgid "Cannot write current commit's replacement sha1"22395msgstr "Kann ersetzenden SHA-1 des aktuellen Commits nicht schreiben"2239622397#: git-rebase--preserve-merges.sh:36022398#, sh-format22399msgid "Fast-forward to $sha1"22400msgstr "Spule vor zu $sha1"2240122402#: git-rebase--preserve-merges.sh:36222403#, sh-format22404msgid "Cannot fast-forward to $sha1"22405msgstr "Kann nicht zu $sha1 vorspulen"2240622407#: git-rebase--preserve-merges.sh:37122408#, sh-format22409msgid "Cannot move HEAD to $first_parent"22410msgstr "Kann HEAD nicht auf $first_parent setzen"2241122412#: git-rebase--preserve-merges.sh:37622413#, sh-format22414msgid "Refusing to squash a merge: $sha1"22415msgstr "\"squash\" eines Merges ($sha1) zurückgewiesen."2241622417#: git-rebase--preserve-merges.sh:39422418#, sh-format22419msgid "Error redoing merge $sha1"22420msgstr "Fehler beim Wiederholen des Merges von $sha1"2242122422#: git-rebase--preserve-merges.sh:40322423#, sh-format22424msgid "Could not pick $sha1"22425msgstr "Konnte $sha1 nicht picken"2242622427#: git-rebase--preserve-merges.sh:41222428#, sh-format22429msgid "This is the commit message #${n}:"22430msgstr "Das ist Commit-Beschreibung #${n}:"2243122432#: git-rebase--preserve-merges.sh:41722433#, sh-format22434msgid "The commit message #${n} will be skipped:"22435msgstr "Commit-Beschreibung #${n} wird ausgelassen:"2243622437#: git-rebase--preserve-merges.sh:42822438#, sh-format22439msgid "This is a combination of $count commit."22440msgid_plural "This is a combination of $count commits."22441msgstr[0] "Das ist eine Kombination aus $count Commit."22442msgstr[1] "Das ist eine Kombination aus $count Commits."2244322444#: git-rebase--preserve-merges.sh:43722445#, sh-format22446msgid "Cannot write $fixup_msg"22447msgstr "Kann $fixup_msg nicht schreiben"2244822449#: git-rebase--preserve-merges.sh:44022450msgid "This is a combination of 2 commits."22451msgstr "Das ist eine Kombination aus 2 Commits."2245222453#: git-rebase--preserve-merges.sh:481 git-rebase--preserve-merges.sh:52422454#: git-rebase--preserve-merges.sh:52722455#, sh-format22456msgid "Could not apply $sha1... $rest"22457msgstr "Konnte $sha1... ($rest) nicht anwenden"2245822459#: git-rebase--preserve-merges.sh:55622460#, sh-format22461msgid ""22462"Could not amend commit after successfully picking $sha1... $rest\n"22463"This is most likely due to an empty commit message, or the pre-commit hook\n"22464"failed. If the pre-commit hook failed, you may need to resolve the issue "22465"before\n"22466"you are able to reword the commit."22467msgstr ""22468"Konnte Commit nicht nachbessern, nachdem dieser verwendet wurde: $sha1... "22469"$rest\n"22470"Das passierte sehr wahrscheinlich wegen einer leeren Commit-Beschreibung, "22471"oder\n"22472"weil der pre-commit Hook fehlschlug. Falls der pre-commit Hook fehlschlug,\n"22473"sollten Sie das Problem beheben, bevor Sie die Commit-Beschreibung ändern "22474"können."2247522476#: git-rebase--preserve-merges.sh:57122477#, sh-format22478msgid "Stopped at $sha1_abbrev... $rest"22479msgstr "Angehalten bei $sha1_abbrev... $rest"2248022481#: git-rebase--preserve-merges.sh:58622482#, sh-format22483msgid "Cannot '$squash_style' without a previous commit"22484msgstr "Kann nicht '$squash_style' ohne vorherigen Commit"2248522486#: git-rebase--preserve-merges.sh:62822487#, sh-format22488msgid "Executing: $rest"22489msgstr "Führe aus: $rest"2249022491#: git-rebase--preserve-merges.sh:63622492#, sh-format22493msgid "Execution failed: $rest"22494msgstr "Ausführung fehlgeschlagen: $rest"2249522496#: git-rebase--preserve-merges.sh:63822497msgid "and made changes to the index and/or the working tree"22498msgstr "Der Index und/oder das Arbeitsverzeichnis wurde geändert."2249922500#: git-rebase--preserve-merges.sh:64022501msgid ""22502"You can fix the problem, and then run\n"22503"\n"22504"\tgit rebase --continue"22505msgstr ""22506"Sie können das Problem beheben, und dann\n"22507"\n"22508"\tgit rebase --continue\n"22509"\n"22510"ausführen."2251122512#. TRANSLATORS: after these lines is a command to be issued by the user22513#: git-rebase--preserve-merges.sh:65322514#, sh-format22515msgid ""22516"Execution succeeded: $rest\n"22517"but left changes to the index and/or the working tree\n"22518"Commit or stash your changes, and then run\n"22519"\n"22520"\tgit rebase --continue"22521msgstr ""22522"Ausführung erfolgreich: $rest\n"22523"Aber Änderungen in Index oder Arbeitsverzeichnis verblieben.\n"22524"Committen Sie Ihre Änderungen oder benutzen Sie \"stash\".\n"22525"Führen Sie dann aus:\n"22526"\n"22527"\tgit rebase --continue"2252822529#: git-rebase--preserve-merges.sh:66422530#, sh-format22531msgid "Unknown command: $command $sha1 $rest"22532msgstr "Unbekannter Befehl: $command $sha1 $rest"2253322534#: git-rebase--preserve-merges.sh:66522535msgid "Please fix this using 'git rebase --edit-todo'."22536msgstr "Bitte beheben Sie das, indem Sie 'git rebase --edit-todo' ausführen."2253722538#: git-rebase--preserve-merges.sh:70022539#, sh-format22540msgid "Successfully rebased and updated $head_name."22541msgstr "Erfolgreich Rebase ausgeführt und $head_name aktualisiert."2254222543#: git-rebase--preserve-merges.sh:75722544msgid "Could not remove CHERRY_PICK_HEAD"22545msgstr "Konnte CHERRY_PICK_HEAD nicht löschen"2254622547#: git-rebase--preserve-merges.sh:76222548#, sh-format22549msgid ""22550"You have staged changes in your working tree.\n"22551"If these changes are meant to be\n"22552"squashed into the previous commit, run:\n"22553"\n"22554" git commit --amend $gpg_sign_opt_quoted\n"22555"\n"22556"If they are meant to go into a new commit, run:\n"22557"\n"22558" git commit $gpg_sign_opt_quoted\n"22559"\n"22560"In both cases, once you're done, continue with:\n"22561"\n"22562" git rebase --continue\n"22563msgstr ""22564"Es befinden sich zum Commit vorgemerkte Änderungen in Ihrem "22565"Arbeitsverzeichnis.\n"22566"Wenn diese Änderungen in den vorherigen Commit aufgenommen werden sollen,\n"22567"führen Sie aus:\n"22568"\n"22569" git commit --amend $gpg_sign_opt_quoted\n"22570"\n"22571"Wenn daraus ein neuer Commit erzeugt werden soll, führen Sie aus:\n"22572"\n"22573" git commit $gpg_sign_opt_quoted\n"22574"\n"22575"Im Anschluss führen Sie zum Fortfahren aus:\n"22576"\n"22577" git rebase --continue\n"2257822579#: git-rebase--preserve-merges.sh:77922580msgid "Error trying to find the author identity to amend commit"22581msgstr ""22582"Fehler beim Versuch die Identität des Authors zum Verbessern des Commits zu\n"22583"finden"2258422585#: git-rebase--preserve-merges.sh:78422586msgid ""22587"You have uncommitted changes in your working tree. Please commit them\n"22588"first and then run 'git rebase --continue' again."22589msgstr ""22590"Sie haben nicht committete Änderungen in Ihrem Arbeitsverzeichnis. Bitte\n"22591"committen Sie diese zuerst und führen Sie dann 'git rebase --continue' "22592"erneut\n"22593"aus."2259422595#: git-rebase--preserve-merges.sh:789 git-rebase--preserve-merges.sh:79322596msgid "Could not commit staged changes."22597msgstr "Konnte Änderungen aus der Staging-Area nicht committen."2259822599#: git-rebase--preserve-merges.sh:824 git-rebase--preserve-merges.sh:91022600msgid "Could not execute editor"22601msgstr "Konnte Editor nicht ausführen."2260222603#: git-rebase--preserve-merges.sh:84522604#, sh-format22605msgid "Could not checkout $switch_to"22606msgstr "Konnte $switch_to nicht auschecken."2260722608#: git-rebase--preserve-merges.sh:85222609msgid "No HEAD?"22610msgstr "Kein HEAD?"2261122612#: git-rebase--preserve-merges.sh:85322613#, sh-format22614msgid "Could not create temporary $state_dir"22615msgstr "Konnte temporäres Verzeichnis $state_dir nicht erstellen."2261622617#: git-rebase--preserve-merges.sh:85622618msgid "Could not mark as interactive"22619msgstr "Konnte nicht als interaktiven Rebase markieren."2262022621#: git-rebase--preserve-merges.sh:88822622#, sh-format22623msgid "Rebase $shortrevisions onto $shortonto ($todocount command)"22624msgid_plural "Rebase $shortrevisions onto $shortonto ($todocount commands)"22625msgstr[0] "Rebase von $shortrevisions auf $shortonto ($todocount Kommando)"22626msgstr[1] "Rebase von $shortrevisions auf $shortonto ($todocount Kommandos)"2262722628#: git-rebase--preserve-merges.sh:942 git-rebase--preserve-merges.sh:94722629msgid "Could not init rewritten commits"22630msgstr "Konnte neu geschriebene Commits nicht initialisieren."2263122632#: git-sh-setup.sh:89 git-sh-setup.sh:9422633#, sh-format22634msgid "usage: $dashless $USAGE"22635msgstr "Verwendung: $dashless $USAGE"2263622637#: git-sh-setup.sh:19122638#, sh-format22639msgid "Cannot chdir to $cdup, the toplevel of the working tree"22640msgstr ""22641"Konnte nicht in Verzeichnis $cdup wechseln, der obersten Ebene des\n"22642"Arbeitsverzeichnisses."2264322644#: git-sh-setup.sh:200 git-sh-setup.sh:20722645#, sh-format22646msgid "fatal: $program_name cannot be used without a working tree."22647msgstr ""22648"fatal: $program_name kann ohne ein Arbeitsverzeichnis nicht verwendet werden."2264922650#: git-sh-setup.sh:22122651msgid "Cannot rebase: You have unstaged changes."22652msgstr ""22653"Rebase nicht möglich: Sie haben Änderungen, die nicht zum Commit vorgemerkt "22654"sind."2265522656#: git-sh-setup.sh:22422657msgid "Cannot rewrite branches: You have unstaged changes."22658msgstr ""22659"Kann Branches nicht neu schreiben: Sie haben Änderungen, die nicht zum "22660"Commit\n"22661"vorgemerkt sind."2266222663#: git-sh-setup.sh:22722664msgid "Cannot pull with rebase: You have unstaged changes."22665msgstr ""22666"Kann \"pull\" mit \"rebase\" nicht ausführen: Sie haben Änderungen, die "22667"nicht zum Commit vorgemerkt sind."2266822669#: git-sh-setup.sh:23022670#, sh-format22671msgid "Cannot $action: You have unstaged changes."22672msgstr ""22673"Kann $action nicht ausführen: Sie haben Änderungen, die nicht zum Commit\n"22674"vorgemerkt sind."2267522676#: git-sh-setup.sh:24322677msgid "Cannot rebase: Your index contains uncommitted changes."22678msgstr ""22679"Rebase nicht möglich: Die Staging-Area beinhaltet nicht committete "22680"Änderungen."2268122682#: git-sh-setup.sh:24622683msgid "Cannot pull with rebase: Your index contains uncommitted changes."22684msgstr ""22685"Kann \"pull\" mit \"rebase\" nicht ausführen: Die Staging-Area beinhaltet "22686"nicht committete Änderungen."2268722688#: git-sh-setup.sh:24922689#, sh-format22690msgid "Cannot $action: Your index contains uncommitted changes."22691msgstr ""22692"Kann $action nicht ausführen: Die Staging-Area beinhaltet nicht committete\n"22693"Änderungen."2269422695#: git-sh-setup.sh:25322696msgid "Additionally, your index contains uncommitted changes."22697msgstr "Zusätzlich beinhaltet die Staging-Area nicht committete Änderungen."2269822699#: git-sh-setup.sh:37322700msgid "You need to run this command from the toplevel of the working tree."22701msgstr ""22702"Sie müssen den Befehl von der obersten Ebene des Arbeitsverzeichnisses "22703"ausführen."2270422705#: git-sh-setup.sh:37822706msgid "Unable to determine absolute path of git directory"22707msgstr "Konnte absoluten Pfad des Git-Verzeichnisses nicht bestimmen."2270822709#. TRANSLATORS: you can adjust this to align "git add -i" status menu22710#: git-add--interactive.perl:19622711#, perl-format22712msgid "%12s %12s %s"22713msgstr "%28s %25s %s"2271422715#: git-add--interactive.perl:19722716msgid "staged"22717msgstr "zur Staging-Area hinzugefügt"2271822719#: git-add--interactive.perl:19722720msgid "unstaged"22721msgstr "aus Staging-Area entfernt"2272222723#: git-add--interactive.perl:253 git-add--interactive.perl:27822724msgid "binary"22725msgstr "Binär"2272622727#: git-add--interactive.perl:262 git-add--interactive.perl:31622728msgid "nothing"22729msgstr "Nichts"2273022731#: git-add--interactive.perl:298 git-add--interactive.perl:31322732msgid "unchanged"22733msgstr "unverändert"2273422735#: git-add--interactive.perl:60922736#, perl-format22737msgid "added %d path\n"22738msgid_plural "added %d paths\n"22739msgstr[0] "%d Pfad hinzugefügt\n"22740msgstr[1] "%d Pfade hinzugefügt\n"2274122742#: git-add--interactive.perl:61222743#, perl-format22744msgid "updated %d path\n"22745msgid_plural "updated %d paths\n"22746msgstr[0] "%d Pfad aktualisiert\n"22747msgstr[1] "%d Pfade aktualisiert\n"2274822749#: git-add--interactive.perl:61522750#, perl-format22751msgid "reverted %d path\n"22752msgid_plural "reverted %d paths\n"22753msgstr[0] "%d Pfad wiederhergestellt\n"22754msgstr[1] "%d Pfade wiederhergestellt\n"2275522756#: git-add--interactive.perl:61822757#, perl-format22758msgid "touched %d path\n"22759msgid_plural "touched %d paths\n"22760msgstr[0] "%d Pfad angefasst\n"22761msgstr[1] "%d Pfade angefasst\n"2276222763#: git-add--interactive.perl:62722764msgid "Update"22765msgstr "Aktualisieren"2276622767#: git-add--interactive.perl:63922768msgid "Revert"22769msgstr "Revert"2277022771#: git-add--interactive.perl:66222772#, perl-format22773msgid "note: %s is untracked now.\n"22774msgstr "Hinweis: %s ist nun unversioniert.\n"2277522776#: git-add--interactive.perl:67322777msgid "Add untracked"22778msgstr "unversionierte Dateien hinzufügen"2277922780#: git-add--interactive.perl:67922781msgid "No untracked files.\n"22782msgstr "Keine unversionierten Dateien.\n"2278322784#: git-add--interactive.perl:103322785msgid ""22786"If the patch applies cleanly, the edited hunk will immediately be\n"22787"marked for staging."22788msgstr ""22789"Wenn der Patch sauber angewendet werden kann, wird der bearbeitete Patch-"22790"Block\n"22791"direkt als zum Hinzufügen zur Staging-Area markiert."2279222793#: git-add--interactive.perl:103622794msgid ""22795"If the patch applies cleanly, the edited hunk will immediately be\n"22796"marked for stashing."22797msgstr ""22798"Wenn der Patch sauber angewendet werden kann, wird der bearbeitete Patch-"22799"Block\n"22800"direkt als zum Hinzufügen zum Stash markiert."2280122802#: git-add--interactive.perl:103922803msgid ""22804"If the patch applies cleanly, the edited hunk will immediately be\n"22805"marked for unstaging."22806msgstr ""22807"Wenn der Patch sauber angewendet werden kann, wird der bearbeitete Patch-"22808"Block\n"22809"direkt als zum Entfernen aus der Staging-Area markiert."2281022811#: git-add--interactive.perl:1042 git-add--interactive.perl:105122812msgid ""22813"If the patch applies cleanly, the edited hunk will immediately be\n"22814"marked for applying."22815msgstr ""22816"Wenn der Patch sauber angewendet werden kann, wird der bearbeitete Patch-"22817"Block\n"22818"direkt als zum Anwenden markiert."2281922820#: git-add--interactive.perl:1045 git-add--interactive.perl:104822821msgid ""22822"If the patch applies cleanly, the edited hunk will immediately be\n"22823"marked for discarding."22824msgstr ""22825"Wenn der Patch sauber angewendet werden kann, wird der bearbeitete Patch-"22826"Block\n"22827"direkt als zum Verwerfen markiert."2282822829#: git-add--interactive.perl:108522830#, perl-format22831msgid "failed to open hunk edit file for writing: %s"22832msgstr ""22833"Fehler beim Öffnen von Editier-Datei eines Patch-Blocks zum Schreiben: %s"2283422835#: git-add--interactive.perl:108622836msgid "Manual hunk edit mode -- see bottom for a quick guide.\n"22837msgstr ""22838"Manueller Editiermodus für Patch-Blöcke -- siehe nach unten für eine\n"22839"Kurzanleitung.\n"2284022841#: git-add--interactive.perl:109222842#, perl-format22843msgid ""22844"---\n"22845"To remove '%s' lines, make them ' ' lines (context).\n"22846"To remove '%s' lines, delete them.\n"22847"Lines starting with %s will be removed.\n"22848msgstr ""22849"---\n"22850"Um '%s' Zeilen zu entfernen, machen Sie aus diesen ' ' Zeilen (Kontext).\n"22851"Um '%s' Zeilen zu entfernen, löschen Sie diese.\n"22852"Zeilen, die mit %s beginnen, werden entfernt.\n"2285322854#. TRANSLATORS: 'it' refers to the patch mentioned in the previous messages.22855#: git-add--interactive.perl:110022856msgid ""22857"If it does not apply cleanly, you will be given an opportunity to\n"22858"edit again. If all lines of the hunk are removed, then the edit is\n"22859"aborted and the hunk is left unchanged.\n"22860msgstr ""22861"Wenn das nicht sauber angewendet werden kann, haben Sie die Möglichkeit\n"22862"einer erneuten Bearbeitung. Wenn alle Zeilen des Patch-Blocks entfernt "22863"werden,\n"22864"wird die Bearbeitung abgebrochen und der Patch-Block bleibt unverändert.\n"2286522866#: git-add--interactive.perl:111422867#, perl-format22868msgid "failed to open hunk edit file for reading: %s"22869msgstr "Fehler beim Öffnen von Editier-Datei eines Patch-Blocks zum Lesen: %s"2287022871#. TRANSLATORS: do not translate [y/n]22872#. The program will only accept that input22873#. at this point.22874#. Consider translating (saying "no" discards!) as22875#. (saying "n" for "no" discards!) if the translation22876#. of the word "no" does not start with n.22877#: git-add--interactive.perl:121322878msgid ""22879"Your edited hunk does not apply. Edit again (saying \"no\" discards!) [y/n]? "22880msgstr ""22881"Ihr bearbeiteter Patch-Block kann nicht angewendet werden.\n"22882"Erneut bearbeiten? (\"n\" verwirft Bearbeitung!) [y/n]?"2288322884#: git-add--interactive.perl:122222885msgid ""22886"y - stage this hunk\n"22887"n - do not stage this hunk\n"22888"q - quit; do not stage this hunk or any of the remaining ones\n"22889"a - stage this hunk and all later hunks in the file\n"22890"d - do not stage this hunk or any of the later hunks in the file"22891msgstr ""22892"y - diesen Patch-Block zum Commit vormerken\n"22893"n - diesen Patch-Block nicht zum Commit vormerken\n"22894"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht zum Commit "22895"vormerken\n"22896"a - diesen und alle weiteren Patch-Blöcke dieser Datei zum Commit vormerken\n"22897"d - diesen oder alle weiteren Patch-Blöcke in dieser Datei nicht zum Commit "22898"vormerken"2289922900#: git-add--interactive.perl:122822901msgid ""22902"y - stash this hunk\n"22903"n - do not stash this hunk\n"22904"q - quit; do not stash this hunk or any of the remaining ones\n"22905"a - stash this hunk and all later hunks in the file\n"22906"d - do not stash this hunk or any of the later hunks in the file"22907msgstr ""22908"y - diesen Patch-Block stashen\n"22909"n - diesen Patch-Block nicht stashen\n"22910"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht stashen\n"22911"a - diesen und alle weiteren Patch-Blöcke dieser Datei stashen\n"22912"d - diesen oder alle weiteren Patch-Blöcke dieser Datei nicht stashen"2291322914#: git-add--interactive.perl:123422915msgid ""22916"y - unstage this hunk\n"22917"n - do not unstage this hunk\n"22918"q - quit; do not unstage this hunk or any of the remaining ones\n"22919"a - unstage this hunk and all later hunks in the file\n"22920"d - do not unstage this hunk or any of the later hunks in the file"22921msgstr ""22922"y - diesen Patch-Block unstashen\n"22923"n - diesen Patch-Block nicht unstashen\n"22924"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht unstashen\n"22925"a - diesen und alle weiteren Patch-Blöcke dieser Datei unstashen\n"22926"d - diesen oder alle weiteren Patch-Blöcke dieser Datei nicht unstashen"2292722928#: git-add--interactive.perl:124022929msgid ""22930"y - apply this hunk to index\n"22931"n - do not apply this hunk to index\n"22932"q - quit; do not apply this hunk or any of the remaining ones\n"22933"a - apply this hunk and all later hunks in the file\n"22934"d - do not apply this hunk or any of the later hunks in the file"22935msgstr ""22936"y - diesen Patch-Block auf den Index anwenden\n"22937"n - diesen Patch-Block nicht auf den Index anwenden\n"22938"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht auf den Index "22939"anwenden\n"22940"a - diesen und alle weiteren Patch-Blöcke dieser Datei auf den Index "22941"anwenden\n"22942"d - diesen oder alle weiteren Patch-Blöcke dieser Datei nicht auf den Index "22943"anwenden"2294422945#: git-add--interactive.perl:124622946msgid ""22947"y - discard this hunk from worktree\n"22948"n - do not discard this hunk from worktree\n"22949"q - quit; do not discard this hunk or any of the remaining ones\n"22950"a - discard this hunk and all later hunks in the file\n"22951"d - do not discard this hunk or any of the later hunks in the file"22952msgstr ""22953"y - diesen Patch-Block im Arbeitsverzeichnis verwerfen\n"22954"n - diesen Patch-Block im Arbeitsverzeichnis nicht verwerfen\n"22955"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht im "22956"Arbeitsverzeichnis verwerfen\n"22957"a - diesen und alle weiteren Patch-Blöcke dieser Datei im Arbeitsverzeichnis "22958"verwerfen\n"22959"d - diesen oder alle weiteren Patch-Blöcke dieser Datei nicht im "22960"Arbeitsverzeichnis verwerfen"2296122962#: git-add--interactive.perl:125222963msgid ""22964"y - discard this hunk from index and worktree\n"22965"n - do not discard this hunk from index and worktree\n"22966"q - quit; do not discard this hunk or any of the remaining ones\n"22967"a - discard this hunk and all later hunks in the file\n"22968"d - do not discard this hunk or any of the later hunks in the file"22969msgstr ""22970"y - diesen Patch-Block im Index und Arbeitsverzeichnis verwerfen\n"22971"n - diesen Patch-Block nicht im Index und Arbeitsverzeichnis verwerfen\n"22972"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht im Index und "22973"Arbeitsverzeichnis verwerfen\n"22974"a - diesen und alle weiteren Patch-Blöcke in der Datei verwerfen\n"22975"d - diesen oder alle weiteren Patch-Blöcke in der Datei nicht verwerfen"2297622977#: git-add--interactive.perl:125822978msgid ""22979"y - apply this hunk to index and worktree\n"22980"n - do not apply this hunk to index and worktree\n"22981"q - quit; do not apply this hunk or any of the remaining ones\n"22982"a - apply this hunk and all later hunks in the file\n"22983"d - do not apply this hunk or any of the later hunks in the file"22984msgstr ""22985"y - diesen Patch-Block im Index und auf Arbeitsverzeichnis anwenden\n"22986"n - diesen Patch-Block nicht im Index und auf Arbeitsverzeichnis anwenden\n"22987"q - Beenden; diesen oder alle verbleibenden Patch-Blöcke nicht anwenden\n"22988"a - diesen und alle weiteren Patch-Blöcke in der Datei anwenden\n"22989"d - diesen oder alle weiteren Patch-Blöcke in der Datei nicht anwenden"2299022991#: git-add--interactive.perl:127322992msgid ""22993"g - select a hunk to go to\n"22994"/ - search for a hunk matching the given regex\n"22995"j - leave this hunk undecided, see next undecided hunk\n"22996"J - leave this hunk undecided, see next hunk\n"22997"k - leave this hunk undecided, see previous undecided hunk\n"22998"K - leave this hunk undecided, see previous hunk\n"22999"s - split the current hunk into smaller hunks\n"23000"e - manually edit the current hunk\n"23001"? - print help\n"23002msgstr ""23003"g - Patch-Block zum Hinspringen auswählen\n"23004"/ - nach Patch-Block suchen, der gegebenem regulärem Ausdruck entspricht\n"23005"j - diesen Patch-Block unbestimmt lassen, nächsten unbestimmten Patch-Block "23006"anzeigen\n"23007"J - diesen Patch-Block unbestimmt lassen, nächsten Patch-Block anzeigen\n"23008"k - diesen Patch-Block unbestimmt lassen, vorherigen unbestimmten Patch-"23009"Block anzeigen\n"23010"K - diesen Patch-Block unbestimmt lassen, vorherigen Patch-Block anzeigen\n"23011"s - aktuellen Patch-Block in kleinere Patch-Blöcke aufteilen\n"23012"e - aktuellen Patch-Block manuell editieren\n"23013"? - Hilfe anzeigen\n"2301423015#: git-add--interactive.perl:130423016msgid "The selected hunks do not apply to the index!\n"23017msgstr ""23018"Die ausgewählten Patch-Blöcke können nicht auf den Index angewendet werden!\n"2301923020#: git-add--interactive.perl:130523021msgid "Apply them to the worktree anyway? "23022msgstr "Trotzdem auf Arbeitsverzeichnis anwenden? "2302323024#: git-add--interactive.perl:130823025msgid "Nothing was applied.\n"23026msgstr "Nichts angewendet.\n"2302723028#: git-add--interactive.perl:131923029#, perl-format23030msgid "ignoring unmerged: %s\n"23031msgstr "ignoriere nicht zusammengeführte Datei: %s\n"2303223033#: git-add--interactive.perl:132823034msgid "Only binary files changed.\n"23035msgstr "Nur Binärdateien geändert.\n"2303623037#: git-add--interactive.perl:133023038msgid "No changes.\n"23039msgstr "Keine Änderungen.\n"2304023041#: git-add--interactive.perl:133823042msgid "Patch update"23043msgstr "Patch Aktualisierung"2304423045#: git-add--interactive.perl:139023046#, perl-format23047msgid "Stage mode change [y,n,q,a,d%s,?]? "23048msgstr "Modusänderung der Staging-Area hinzufügen [y,n,q,a,d%s,?]? "2304923050#: git-add--interactive.perl:139123051#, perl-format23052msgid "Stage deletion [y,n,q,a,d%s,?]? "23053msgstr "Löschung der Staging-Area hinzufügen [y,n,q,a,d%s,?]? "2305423055#: git-add--interactive.perl:139223056#, perl-format23057msgid "Stage this hunk [y,n,q,a,d%s,?]? "23058msgstr "Diesen Patch-Block der Staging-Area hinzufügen [y,n,q,a,d%s,?]? "2305923060#: git-add--interactive.perl:139523061#, perl-format23062msgid "Stash mode change [y,n,q,a,d%s,?]? "23063msgstr "Modusänderung stashen [y,n,q,a,d%s,?]? "2306423065#: git-add--interactive.perl:139623066#, perl-format23067msgid "Stash deletion [y,n,q,a,d%s,?]? "23068msgstr "Löschung stashen [y,n,q,a,d%s,?]? "2306923070#: git-add--interactive.perl:139723071#, perl-format23072msgid "Stash this hunk [y,n,q,a,d%s,?]? "23073msgstr "Diesen Patch-Block stashen [y,n,q,a,d%s,?]? "2307423075#: git-add--interactive.perl:140023076#, perl-format23077msgid "Unstage mode change [y,n,q,a,d%s,?]? "23078msgstr "Modusänderung aus der Staging-Area entfernen [y,n,q,a,d%s,?]? "2307923080#: git-add--interactive.perl:140123081#, perl-format23082msgid "Unstage deletion [y,n,q,a,d%s,?]? "23083msgstr "Löschung aus der Staging-Area entfernen [y,n,q,a,d%s,?]? "2308423085#: git-add--interactive.perl:140223086#, perl-format23087msgid "Unstage this hunk [y,n,q,a,d%s,?]? "23088msgstr "Diesen Patch-Block aus der Staging-Area entfernen [y,n,q,a,d%s,?]? "2308923090#: git-add--interactive.perl:140523091#, perl-format23092msgid "Apply mode change to index [y,n,q,a,d%s,?]? "23093msgstr "Modusänderung auf Index anwenden [y,n,q,a,d%s,?]? "2309423095#: git-add--interactive.perl:140623096#, perl-format23097msgid "Apply deletion to index [y,n,q,a,d%s,?]? "23098msgstr "Löschung auf Index anwenden [y,n,q,a,d%s,?]? "2309923100#: git-add--interactive.perl:140723101#, perl-format23102msgid "Apply this hunk to index [y,n,q,a,d%s,?]? "23103msgstr "Diesen Patch-Block auf Index anwenden [y,n,q,a,d%s,?]? "2310423105#: git-add--interactive.perl:141023106#, perl-format23107msgid "Discard mode change from worktree [y,n,q,a,d%s,?]? "23108msgstr "Modusänderung im Arbeitsverzeichnis verwerfen [y,n,q,a,d%s,?]? "2310923110#: git-add--interactive.perl:141123111#, perl-format23112msgid "Discard deletion from worktree [y,n,q,a,d%s,?]? "23113msgstr "Löschung im Arbeitsverzeichnis verwerfen [y,n,q,a,d%s,?]? "2311423115#: git-add--interactive.perl:141223116#, perl-format23117msgid "Discard this hunk from worktree [y,n,q,a,d%s,?]? "23118msgstr "Diesen Patch-Block im Arbeitsverzeichnis verwerfen [y,n,q,a,d%s,?]? "2311923120#: git-add--interactive.perl:141523121#, perl-format23122msgid "Discard mode change from index and worktree [y,n,q,a,d%s,?]? "23123msgstr ""23124"Modusänderung vom Index und Arbeitsverzeichnis verwerfen [y,n,q,a,d%s,?]? "2312523126#: git-add--interactive.perl:141623127#, perl-format23128msgid "Discard deletion from index and worktree [y,n,q,a,d%s,?]? "23129msgstr "Löschung vom Index und Arbeitsverzeichnis verwerfen [y,n,q,a,d%s,?]? "2313023131#: git-add--interactive.perl:141723132#, perl-format23133msgid "Discard this hunk from index and worktree [y,n,q,a,d%s,?]? "23134msgstr ""23135"Diesen Patch-Block vom Index und Arbeitsverzeichnis verwerfen [y,n,q,a,d"23136"%s,?]? "2313723138#: git-add--interactive.perl:142023139#, perl-format23140msgid "Apply mode change to index and worktree [y,n,q,a,d%s,?]? "23141msgstr ""23142"Modusänderung auf Index und Arbeitsverzeichnis anwenden [y,n,q,a,d%s,?]? "2314323144#: git-add--interactive.perl:142123145#, perl-format23146msgid "Apply deletion to index and worktree [y,n,q,a,d%s,?]? "23147msgstr "Löschung auf Index und Arbeitsverzeichnis anwenden [y,n,q,a,d%s,?]? "2314823149#: git-add--interactive.perl:142223150#, perl-format23151msgid "Apply this hunk to index and worktree [y,n,q,a,d%s,?]? "23152msgstr ""23153"Diesen Patch-Block auf Index und Arbeitsverzeichnis anwenden [y,n,q,a,d"23154"%s,?]? "2315523156#: git-add--interactive.perl:152223157msgid "No other hunks to goto\n"23158msgstr "Keine anderen Patch-Blöcke verbleibend\n"2315923160#: git-add--interactive.perl:152923161msgid "go to which hunk (<ret> to see more)? "23162msgstr "zu welchem Patch-Block springen (<Enter> für mehr Informationen)? "2316323164#: git-add--interactive.perl:153123165msgid "go to which hunk? "23166msgstr "zu welchem Patch-Block springen? "2316723168#: git-add--interactive.perl:154023169#, perl-format23170msgid "Invalid number: '%s'\n"23171msgstr "Ungültige Nummer: '%s'\n"2317223173#: git-add--interactive.perl:154523174#, perl-format23175msgid "Sorry, only %d hunk available.\n"23176msgid_plural "Sorry, only %d hunks available.\n"23177msgstr[0] "Entschuldigung, nur %d Patch-Block verfügbar.\n"23178msgstr[1] "Entschuldigung, nur %d Patch-Blöcke verfügbar.\n"2317923180#: git-add--interactive.perl:157123181msgid "No other hunks to search\n"23182msgstr "Keine anderen Patch-Blöcke zum Durchsuchen\n"2318323184#: git-add--interactive.perl:157523185msgid "search for regex? "23186msgstr "Suche nach regulärem Ausdruck? "2318723188#: git-add--interactive.perl:158823189#, perl-format23190msgid "Malformed search regexp %s: %s\n"23191msgstr "Fehlerhafter regulärer Ausdruck für Suche %s: %s\n"2319223193#: git-add--interactive.perl:159823194msgid "No hunk matches the given pattern\n"23195msgstr "Kein Patch-Block entspricht dem angegebenen Muster\n"2319623197#: git-add--interactive.perl:1610 git-add--interactive.perl:163223198msgid "No previous hunk\n"23199msgstr "Kein vorheriger Patch-Block\n"2320023201#: git-add--interactive.perl:1619 git-add--interactive.perl:163823202msgid "No next hunk\n"23203msgstr "Kein folgender Patch-Block\n"2320423205#: git-add--interactive.perl:164423206msgid "Sorry, cannot split this hunk\n"23207msgstr "Entschuldigung, kann diesen Patch-Block nicht aufteilen.\n"2320823209#: git-add--interactive.perl:165023210#, perl-format23211msgid "Split into %d hunk.\n"23212msgid_plural "Split into %d hunks.\n"23213msgstr[0] "In %d Patch-Block aufgeteilt.\n"23214msgstr[1] "In %d Patch-Blöcke aufgeteilt.\n"2321523216#: git-add--interactive.perl:166023217msgid "Sorry, cannot edit this hunk\n"23218msgstr "Entschuldigung, kann diesen Patch-Block nicht bearbeiten.\n"2321923220#: git-add--interactive.perl:170623221msgid "Review diff"23222msgstr "Diff überprüfen"2322323224#. TRANSLATORS: please do not translate the command names23225#. 'status', 'update', 'revert', etc.23226#: git-add--interactive.perl:172523227msgid ""23228"status - show paths with changes\n"23229"update - add working tree state to the staged set of changes\n"23230"revert - revert staged set of changes back to the HEAD version\n"23231"patch - pick hunks and update selectively\n"23232"diff - view diff between HEAD and index\n"23233"add untracked - add contents of untracked files to the staged set of "23234"changes\n"23235msgstr ""23236"status - Pfade mit Änderungen anzeigen\n"23237"update - Zustand des Arbeitsverzeichnisses den zum Commit "23238"vorgemerkten Änderungen hinzufügen\n"23239"revert - zum Commit vorgemerkte Änderungen auf HEAD Version "23240"zurücksetzen\n"23241"patch - Patch-Blöcke auswählen und selektiv aktualisieren\n"23242"diff - Unterschiede zwischen HEAD und Index anzeigen\n"23243"add untracked - Inhalte von unversionierten Dateien zum Commit vormerken\n"2324423245#: git-add--interactive.perl:1742 git-add--interactive.perl:174723246#: git-add--interactive.perl:1750 git-add--interactive.perl:175723247#: git-add--interactive.perl:1761 git-add--interactive.perl:176723248msgid "missing --"23249msgstr "-- fehlt"2325023251#: git-add--interactive.perl:176323252#, perl-format23253msgid "unknown --patch mode: %s"23254msgstr "Unbekannter --patch Modus: %s"2325523256#: git-add--interactive.perl:1769 git-add--interactive.perl:177523257#, perl-format23258msgid "invalid argument %s, expecting --"23259msgstr "ungültiges Argument %s, erwarte --"2326023261#: git-send-email.perl:13823262msgid "local zone differs from GMT by a non-minute interval\n"23263msgstr ""23264"lokale Zeitzone unterscheidet sich von GMT nicht um ein Minutenintervall\n"2326523266#: git-send-email.perl:145 git-send-email.perl:15123267msgid "local time offset greater than or equal to 24 hours\n"23268msgstr "lokaler Zeit-Offset größer oder gleich 24 Stunden\n"2326923270#: git-send-email.perl:219 git-send-email.perl:22523271msgid "the editor exited uncleanly, aborting everything"23272msgstr "Der Editor wurde unsauber beendet, breche alles ab."2327323274#: git-send-email.perl:30223275#, perl-format23276msgid ""23277"'%s' contains an intermediate version of the email you were composing.\n"23278msgstr ""23279"'%s' enthält eine Zwischenversion der E-Mail, die Sie gerade verfassen.\n"2328023281#: git-send-email.perl:30723282#, perl-format23283msgid "'%s.final' contains the composed email.\n"23284msgstr "'%s.final' enthält die verfasste E-Mail.\n"2328523286#: git-send-email.perl:32623287msgid "--dump-aliases incompatible with other options\n"23288msgstr "--dump-aliases ist mit anderen Optionen inkompatibel\n"2328923290#: git-send-email.perl:395 git-send-email.perl:65623291msgid "Cannot run git format-patch from outside a repository\n"23292msgstr ""23293"Kann 'git format-patch' nicht außerhalb eines Repositories ausführen.\n"2329423295#: git-send-email.perl:39823296msgid ""23297"`batch-size` and `relogin` must be specified together (via command-line or "23298"configuration option)\n"23299msgstr ""23300"'batch-size' und 'relogin' müssen gemeinsam angegeben werden (über "23301"Kommandozeile\n"23302"oder Konfigurationsoption)\n"2330323304#: git-send-email.perl:47023305#, perl-format23306msgid "Unknown --suppress-cc field: '%s'\n"23307msgstr "Unbekanntes --suppress-cc Feld: '%s'\n"2330823309#: git-send-email.perl:50123310#, perl-format23311msgid "Unknown --confirm setting: '%s'\n"23312msgstr "Unbekannte --confirm Einstellung: '%s'\n"2331323314#: git-send-email.perl:52923315#, perl-format23316msgid "warning: sendmail alias with quotes is not supported: %s\n"23317msgstr ""23318"Warnung: sendemail-Alias mit Anführungszeichen wird nicht unterstützt: %s\n"2331923320#: git-send-email.perl:53123321#, perl-format23322msgid "warning: `:include:` not supported: %s\n"23323msgstr "Warnung: `:include:` wird nicht unterstützt: %s\n"2332423325#: git-send-email.perl:53323326#, perl-format23327msgid "warning: `/file` or `|pipe` redirection not supported: %s\n"23328msgstr "Warnung: `/file` oder `|pipe` Umleitung wird nicht unterstützt: %s\n"2332923330#: git-send-email.perl:53823331#, perl-format23332msgid "warning: sendmail line is not recognized: %s\n"23333msgstr "Warnung: sendmail Zeile wird nicht erkannt: %s\n"2333423335#: git-send-email.perl:62223336#, perl-format23337msgid ""23338"File '%s' exists but it could also be the range of commits\n"23339"to produce patches for. Please disambiguate by...\n"23340"\n"23341" * Saying \"./%s\" if you mean a file; or\n"23342" * Giving --format-patch option if you mean a range.\n"23343msgstr ""23344"Datei '%s' existiert, aber es könnte auch der Bereich von Commits sein,\n"23345"für den Patches erzeugt werden sollen. Bitte machen Sie dies eindeutig\n"23346"indem Sie ...\n"23347"\n"23348" * \"./%s\" angeben, wenn Sie eine Datei meinen, oder\n"23349" * die Option --format-patch angeben, wenn Sie einen Commit-Bereich "23350"meinen\n"2335123352#: git-send-email.perl:64323353#, perl-format23354msgid "Failed to opendir %s: %s"23355msgstr "Fehler beim Öffnen von %s: %s"2335623357#: git-send-email.perl:66723358#, perl-format23359msgid ""23360"fatal: %s: %s\n"23361"warning: no patches were sent\n"23362msgstr ""23363"fatal: %s: %s\n"23364"Warnung: Es wurden keine Patches versendet.\n"2336523366#: git-send-email.perl:67823367msgid ""23368"\n"23369"No patch files specified!\n"23370"\n"23371msgstr ""23372"\n"23373"keine Patch-Dateien angegeben!\n"23374"\n"2337523376#: git-send-email.perl:69123377#, perl-format23378msgid "No subject line in %s?"23379msgstr "Keine Betreffzeile in %s?"2338023381#: git-send-email.perl:70123382#, perl-format23383msgid "Failed to open for writing %s: %s"23384msgstr "Fehler beim Öffnen von '%s' zum Schreiben: %s"2338523386#: git-send-email.perl:71223387msgid ""23388"Lines beginning in \"GIT:\" will be removed.\n"23389"Consider including an overall diffstat or table of contents\n"23390"for the patch you are writing.\n"23391"\n"23392"Clear the body content if you don't wish to send a summary.\n"23393msgstr ""23394"Zeilen, die mit \"GIT:\" beginnen, werden entfernt.\n"23395"Ziehen Sie in Betracht, einen allgemeinen \"diffstat\" oder ein\n"23396"Inhaltsverzeichnis, für den Patch den Sie schreiben, hinzuzufügen.\n"23397"\n"23398"Leeren Sie den Inhalt des Bodys, wenn Sie keine Zusammenfassung senden "23399"möchten.\n"2340023401#: git-send-email.perl:73623402#, perl-format23403msgid "Failed to open %s: %s"23404msgstr "Fehler beim Öffnen von %s: %s"2340523406#: git-send-email.perl:75323407#, perl-format23408msgid "Failed to open %s.final: %s"23409msgstr "Fehler beim Öffnen von %s.final: %s"2341023411#: git-send-email.perl:79623412msgid "Summary email is empty, skipping it\n"23413msgstr "E-Mail mit Zusammenfassung ist leer, wird ausgelassen\n"2341423415#. TRANSLATORS: please keep [y/N] as is.23416#: git-send-email.perl:83123417#, perl-format23418msgid "Are you sure you want to use <%s> [y/N]? "23419msgstr "Sind Sie sich sicher, <%s> zu benutzen [y/N]? "2342023421#: git-send-email.perl:88623422msgid ""23423"The following files are 8bit, but do not declare a Content-Transfer-"23424"Encoding.\n"23425msgstr ""23426"Die folgenden Dateien sind 8-Bit, aber deklarieren kein\n"23427"Content-Transfer-Encoding.\n"2342823429#: git-send-email.perl:89123430msgid "Which 8bit encoding should I declare [UTF-8]? "23431msgstr "Welches 8-Bit-Encoding soll deklariert werden [UTF-8]? "2343223433#: git-send-email.perl:89923434#, perl-format23435msgid ""23436"Refusing to send because the patch\n"23437"\t%s\n"23438"has the template subject '*** SUBJECT HERE ***'. Pass --force if you really "23439"want to send.\n"23440msgstr ""23441"Versand zurückgewiesen, weil der Patch\n"23442"\t%s\n"23443"die Betreffzeilenvorlage '*** SUBJECT HERE ***' enthält. Geben Sie --force "23444"an,\n"23445"wenn Sie den Patch wirklich versenden wollen.\n"2344623447#: git-send-email.perl:91823448msgid "To whom should the emails be sent (if anyone)?"23449msgstr "An wen sollen die E-Mails versendet werden (wenn überhaupt jemand)?"2345023451#: git-send-email.perl:93623452#, perl-format23453msgid "fatal: alias '%s' expands to itself\n"23454msgstr "fatal: Alias '%s' erweitert sich zu sich selbst\n"2345523456#: git-send-email.perl:94823457msgid "Message-ID to be used as In-Reply-To for the first email (if any)? "23458msgstr ""23459"Message-ID zur Verwendung als In-Reply-To für die erste E-Mail (wenn eine "23460"existiert)? "2346123462#: git-send-email.perl:1006 git-send-email.perl:101423463#, perl-format23464msgid "error: unable to extract a valid address from: %s\n"23465msgstr "Fehler: konnte keine gültige Adresse aus %s extrahieren\n"2346623467#. TRANSLATORS: Make sure to include [q] [d] [e] in your23468#. translation. The program will only accept English input23469#. at this point.23470#: git-send-email.perl:101823471msgid "What to do with this address? ([q]uit|[d]rop|[e]dit): "23472msgstr ""23473"Was soll mit dieser Adresse geschehen? (Beenden [q]|Löschen [d]|Bearbeiten "23474"[e]): "2347523476#: git-send-email.perl:133523477#, perl-format23478msgid "CA path \"%s\" does not exist"23479msgstr "CA Pfad \"%s\" existiert nicht"2348023481#: git-send-email.perl:141823482msgid ""23483" The Cc list above has been expanded by additional\n"23484" addresses found in the patch commit message. By default\n"23485" send-email prompts before sending whenever this occurs.\n"23486" This behavior is controlled by the sendemail.confirm\n"23487" configuration setting.\n"23488"\n"23489" For additional information, run 'git send-email --help'.\n"23490" To retain the current behavior, but squelch this message,\n"23491" run 'git config --global sendemail.confirm auto'.\n"23492"\n"23493msgstr ""23494" Die Cc-Liste oberhalb wurde um zusätzliche Adressen erweitert, die in "23495"der\n"23496" Commit-Beschreibung des Patches gefunden wurden. Wenn dies passiert, "23497"werden\n"23498" Sie von send-email zu einer Eingabe aufgefordert. Dieses Verhalten wird\n"23499" durch die Konfigurationseinstellung sendemail.confirm gesteuert.\n"23500"\n"23501" Für weitere Informationen, führen Sie 'git send-email --help' aus.\n"23502" Um das aktuelle Verhalten beizubehalten, aber diese Meldung zu "23503"unterdrücken,\n"23504" führen Sie 'git config --global sendemail.confirm auto' aus.\n"23505"\n"2350623507#. TRANSLATORS: Make sure to include [y] [n] [e] [q] [a] in your23508#. translation. The program will only accept English input23509#. at this point.23510#: git-send-email.perl:143323511msgid "Send this email? ([y]es|[n]o|[e]dit|[q]uit|[a]ll): "23512msgstr ""23513"Diese E-Mail versenden? (Ja [y]|Nein [n]|Bearbeiten [e]|Beenden [q]|Alle "23514"[a]): "2351523516#: git-send-email.perl:143623517msgid "Send this email reply required"23518msgstr "Zum Versenden dieser E-Mail ist eine Antwort erforderlich."2351923520#: git-send-email.perl:146423521msgid "The required SMTP server is not properly defined."23522msgstr "Der erforderliche SMTP-Server ist nicht korrekt definiert."2352323524#: git-send-email.perl:151123525#, perl-format23526msgid "Server does not support STARTTLS! %s"23527msgstr "Server unterstützt kein STARTTLS! %s"2352823529#: git-send-email.perl:1516 git-send-email.perl:152023530#, perl-format23531msgid "STARTTLS failed! %s"23532msgstr "STARTTLS fehlgeschlagen! %s"2353323534#: git-send-email.perl:152923535msgid "Unable to initialize SMTP properly. Check config and use --smtp-debug."23536msgstr ""23537"Konnte SMTP nicht korrekt initialisieren. Bitte prüfen Sie Ihre "23538"Konfiguration\n"23539"und benutzen Sie --smtp-debug."2354023541#: git-send-email.perl:154723542#, perl-format23543msgid "Failed to send %s\n"23544msgstr "Fehler beim Senden %s\n"2354523546#: git-send-email.perl:155023547#, perl-format23548msgid "Dry-Sent %s\n"23549msgstr "Probeversand %s\n"2355023551#: git-send-email.perl:155023552#, perl-format23553msgid "Sent %s\n"23554msgstr "%s gesendet\n"2355523556#: git-send-email.perl:155223557msgid "Dry-OK. Log says:\n"23558msgstr "Probeversand OK. Log enthält:\n"2355923560#: git-send-email.perl:155223561msgid "OK. Log says:\n"23562msgstr "OK. Log enthält:\n"2356323564#: git-send-email.perl:156423565msgid "Result: "23566msgstr "Ergebnis: "2356723568#: git-send-email.perl:156723569msgid "Result: OK\n"23570msgstr "Ergebnis: OK\n"2357123572#: git-send-email.perl:158523573#, perl-format23574msgid "can't open file %s"23575msgstr "Kann Datei %s nicht öffnen"2357623577#: git-send-email.perl:1632 git-send-email.perl:165223578#, perl-format23579msgid "(mbox) Adding cc: %s from line '%s'\n"23580msgstr "(mbox) Füge cc: hinzu: %s von Zeile '%s'\n"2358123582#: git-send-email.perl:163823583#, perl-format23584msgid "(mbox) Adding to: %s from line '%s'\n"23585msgstr "(mbox) Füge to: hinzu: %s von Zeile '%s'\n"2358623587#: git-send-email.perl:169123588#, perl-format23589msgid "(non-mbox) Adding cc: %s from line '%s'\n"23590msgstr "(non-mbox) Füge cc: hinzu: %s von Zeile '%s'\n"2359123592#: git-send-email.perl:172623593#, perl-format23594msgid "(body) Adding cc: %s from line '%s'\n"23595msgstr "(body) Füge cc: hinzu: %s von Zeile '%s'\n"2359623597#: git-send-email.perl:183723598#, perl-format23599msgid "(%s) Could not execute '%s'"23600msgstr "(%s) Konnte '%s' nicht ausführen"2360123602#: git-send-email.perl:184423603#, perl-format23604msgid "(%s) Adding %s: %s from: '%s'\n"23605msgstr "(%s) Füge %s: %s hinzu von: '%s'\n"2360623607#: git-send-email.perl:184823608#, perl-format23609msgid "(%s) failed to close pipe to '%s'"23610msgstr "(%s) Fehler beim Schließen der Pipe nach '%s'"2361123612#: git-send-email.perl:187823613msgid "cannot send message as 7bit"23614msgstr "Kann Nachricht nicht als 7bit versenden."2361523616#: git-send-email.perl:188623617msgid "invalid transfer encoding"23618msgstr "Ungültiges Transfer-Encoding"2361923620#: git-send-email.perl:1927 git-send-email.perl:1979 git-send-email.perl:198923621#, perl-format23622msgid "unable to open %s: %s\n"23623msgstr "konnte %s nicht öffnen: %s\n"2362423625#: git-send-email.perl:193023626#, perl-format23627msgid "%s: patch contains a line longer than 998 characters"23628msgstr "%s: Patch enthält eine Zeile, die länger als 998 Zeichen ist"2362923630#: git-send-email.perl:194723631#, perl-format23632msgid "Skipping %s with backup suffix '%s'.\n"23633msgstr "Lasse %s mit Backup-Suffix '%s' aus.\n"2363423635#. TRANSLATORS: please keep "[y|N]" as is.23636#: git-send-email.perl:195123637#, perl-format23638msgid "Do you really want to send %s? [y|N]: "23639msgstr "Wollen Sie %s wirklich versenden? [y|N]: "