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: 2016-08-27 23:21+0800\n" 11"PO-Revision-Date: 2015-01-21 15:01+0800\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:55 21#, c-format 22msgid "hint: %.*s\n" 23msgstr "Hinweis: %.*s\n" 24 25#: advice.c:83 26msgid "Cherry-picking is not possible because you have unmerged files." 27msgstr "Cherry-Picken ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 28 29#: advice.c:85 30msgid "Committing is not possible because you have unmerged files." 31msgstr "Committen ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 32 33#: advice.c:87 34msgid "Merging is not possible because you have unmerged files." 35msgstr "Mergen ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 36 37#: advice.c:89 38msgid "Pulling is not possible because you have unmerged files." 39msgstr "Pullen ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 40 41#: advice.c:91 42msgid "Reverting is not possible because you have unmerged files." 43msgstr "Reverten ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 44 45#: advice.c:93 46#, c-format 47msgid "It is not possible to %s because you have unmerged files." 48msgstr "%s ist nicht möglich, weil Sie nicht zusammengeführte Dateien haben." 49 50#: advice.c:101 51msgid "" 52"Fix them up in the work tree, and then use 'git add/rm <file>'\n" 53"as appropriate to mark resolution and make a commit." 54msgstr "" 55"Korrigieren Sie dies im Arbeitsverzeichnis, und benutzen Sie\n" 56"dann 'git add/rm <Datei>', um die Auflösung entsprechend zu markieren\n" 57"und zu committen." 58 59#: advice.c:109 60msgid "Exiting because of an unresolved conflict." 61msgstr "Beende wegen unaufgelöstem Konflikt." 62 63#: advice.c:114 builtin/merge.c:1181 64msgid "You have not concluded your merge (MERGE_HEAD exists)." 65msgstr "Sie haben Ihren Merge nicht abgeschlossen (MERGE_HEAD existiert)." 66 67#: advice.c:116 68msgid "Please, commit your changes before merging." 69msgstr "Bitte committen Sie Ihre Änderungen, bevor Sie mergen." 70 71#: advice.c:117 72msgid "Exiting because of unfinished merge." 73msgstr "Beende wegen nicht abgeschlossenem Merge." 74 75#: advice.c:123 76#, c-format 77msgid "" 78"Note: checking out '%s'.\n" 79"\n" 80"You are in 'detached HEAD' state. You can look around, make experimental\n" 81"changes and commit them, and you can discard any commits you make in this\n" 82"state without impacting any branches by performing another checkout.\n" 83"\n" 84"If you want to create a new branch to retain commits you create, you may\n" 85"do so (now or later) by using -b with the checkout command again. Example:\n" 86"\n" 87" git checkout -b <new-branch-name>\n" 88"\n" 89msgstr "" 90"Hinweis: Checke '%s' aus.\n" 91"\n" 92"Sie befinden sich im Zustand eines 'lösgelösten HEAD'. Sie können sich\n" 93"umschauen, experimentelle Änderungen vornehmen und diese committen, und\n" 94"Sie können alle möglichen Commits, die Sie in diesem Zustand machen,\n" 95"ohne Auswirkungen auf irgendeinen Branch verwerfen, indem Sie einen\n" 96"weiteren Checkout durchführen.\n" 97"\n" 98"Wenn Sie einen neuen Branch erstellen möchten, um Ihre erstellten Commits\n" 99"zu behalten, können Sie das (jetzt oder später) durch einen weiteren Checkout\n" 100"mit der Option -b tun. Beispiel:\n" 101"\n" 102" git checkout -b <neuer-Branchname>\n" 103"\n" 104 105#: archive.c:12 106msgid "git archive [<options>] <tree-ish> [<path>...]" 107msgstr "git archive [<Optionen>] <Commit-Referenz> [<Pfad>...]" 108 109#: archive.c:13 110msgid "git archive --list" 111msgstr "git archive --list" 112 113#: archive.c:14 114msgid "" 115"git archive --remote <repo> [--exec <cmd>] [<options>] <tree-ish> [<path>...]" 116msgstr "" 117"git archive --remote <Repository> [--exec <Programm>] [<Optionen>] <Commit-" 118"Referenz> [<Pfad>...]" 119 120#: archive.c:15 121msgid "git archive --remote <repo> [--exec <cmd>] --list" 122msgstr "git archive --remote <Repository> [--exec <Programm>] --list" 123 124#: archive.c:344 builtin/add.c:139 builtin/add.c:435 builtin/rm.c:327 125#, c-format 126msgid "pathspec '%s' did not match any files" 127msgstr "Pfadspezifikation '%s' stimmt mit keinen Dateien überein" 128 129#: archive.c:429 130msgid "fmt" 131msgstr "Format" 132 133#: archive.c:429 134msgid "archive format" 135msgstr "Archivformat" 136 137#: archive.c:430 builtin/log.c:1422 138msgid "prefix" 139msgstr "Präfix" 140 141#: archive.c:431 142msgid "prepend prefix to each pathname in the archive" 143msgstr "einen Präfix vor jeden Pfadnamen in dem Archiv stellen" 144 145#: archive.c:432 builtin/archive.c:88 builtin/blame.c:2553 builtin/blame.c:2554 146#: builtin/config.c:59 builtin/fast-export.c:987 builtin/fast-export.c:989 147#: builtin/grep.c:722 builtin/hash-object.c:100 builtin/ls-files.c:460 148#: builtin/ls-files.c:463 builtin/notes.c:399 builtin/notes.c:562 149#: builtin/read-tree.c:109 parse-options.h:153 150msgid "file" 151msgstr "Datei" 152 153#: archive.c:433 builtin/archive.c:89 154msgid "write the archive to this file" 155msgstr "das Archiv in diese Datei schreiben" 156 157#: archive.c:435 158msgid "read .gitattributes in working directory" 159msgstr ".gitattributes aus dem Arbeitsverzeichnis lesen" 160 161#: archive.c:436 162msgid "report archived files on stderr" 163msgstr "archivierte Dateien in der Standard-Fehlerausgabe ausgeben" 164 165#: archive.c:437 166msgid "store only" 167msgstr "nur speichern" 168 169#: archive.c:438 170msgid "compress faster" 171msgstr "schneller komprimieren" 172 173#: archive.c:446 174msgid "compress better" 175msgstr "besser komprimieren" 176 177#: archive.c:449 178msgid "list supported archive formats" 179msgstr "unterstützte Archivformate auflisten" 180 181#: archive.c:451 builtin/archive.c:90 builtin/clone.c:82 182#: builtin/submodule--helper.c:832 183msgid "repo" 184msgstr "Repository" 185 186#: archive.c:452 builtin/archive.c:91 187msgid "retrieve the archive from remote repository <repo>" 188msgstr "Archiv vom Remote-Repository <Repository> abrufen" 189 190#: archive.c:453 builtin/archive.c:92 builtin/notes.c:483 191msgid "command" 192msgstr "Programm" 193 194#: archive.c:454 builtin/archive.c:93 195msgid "path to the remote git-upload-archive command" 196msgstr "Pfad zum externen \"git-upload-archive\"-Programm" 197 198#: archive.c:461 199msgid "Unexpected option --remote" 200msgstr "Unerwartete Option --remote" 201 202#: archive.c:463 203msgid "Option --exec can only be used together with --remote" 204msgstr "Die Option --exec kann nur zusammen mit --remote verwendet werden." 205 206#: archive.c:465 207msgid "Unexpected option --output" 208msgstr "Unerwartete Option --output" 209 210#: archive.c:487 211#, c-format 212msgid "Unknown archive format '%s'" 213msgstr "Unbekanntes Archivformat '%s'" 214 215#: archive.c:494 216#, c-format 217msgid "Argument not supported for format '%s': -%d" 218msgstr "Argument für Format '%s' nicht unterstützt: -%d" 219 220#: attr.c:263 221msgid "" 222"Negative patterns are ignored in git attributes\n" 223"Use '\\!' for literal leading exclamation." 224msgstr "" 225"Verneinende Muster werden in Git-Attributen ignoriert.\n" 226"Benutzen Sie '\\!' für führende Ausrufezeichen." 227 228#: bisect.c:441 229#, c-format 230msgid "Could not open file '%s'" 231msgstr "Konnte Datei '%s' nicht öffnen" 232 233#: bisect.c:446 234#, c-format 235msgid "Badly quoted content in file '%s': %s" 236msgstr "Ungültiger Inhalt bzgl. Anführungsstriche in Datei '%s': %s" 237 238#: bisect.c:655 239#, c-format 240msgid "We cannot bisect more!\n" 241msgstr "Keine binäre Suche mehr möglich!\n" 242 243#: bisect.c:708 244#, c-format 245msgid "Not a valid commit name %s" 246msgstr "%s ist kein gültiger Commit-Name" 247 248#: bisect.c:732 249#, c-format 250msgid "" 251"The merge base %s is bad.\n" 252"This means the bug has been fixed between %s and [%s].\n" 253msgstr "" 254"Die Merge-Basis %s ist fehlerhaft.\n" 255"Das bedeutet, der Fehler wurde zwischen %s und [%s] behoben.\n" 256 257#: bisect.c:737 258#, c-format 259msgid "" 260"The merge base %s is new.\n" 261"The property has changed between %s and [%s].\n" 262msgstr "" 263"Die Merge-Basis %s ist neu.\n" 264"Das bedeutet, die Eigenschaft hat sich zwischen %s und [%s] geändert.\n" 265 266#: bisect.c:742 267#, c-format 268msgid "" 269"The merge base %s is %s.\n" 270"This means the first '%s' commit is between %s and [%s].\n" 271msgstr "" 272"Die Merge-Basis %s ist %s.\n" 273"Das bedeutet, der erste '%s' Commit befindet sich zwischen %s und [%s]\n" 274 275#: bisect.c:750 276#, c-format 277msgid "" 278"Some %s revs are not ancestor of the %s rev.\n" 279"git bisect cannot work properly in this case.\n" 280"Maybe you mistook %s and %s revs?\n" 281msgstr "" 282"Manche %s Commits sind keine Vorgänger des %s Commits.\n" 283"git bisect kann in diesem Fall nicht richtig arbeiten.\n" 284"Vielleicht verwechselten Sie %s und %s Commits?\n" 285 286#: bisect.c:763 287#, c-format 288msgid "" 289"the merge base between %s and [%s] must be skipped.\n" 290"So we cannot be sure the first %s commit is between %s and %s.\n" 291"We continue anyway." 292msgstr "" 293"Die Merge-Basis zwischen %s und [%s] muss ausgelassen werden.\n" 294"Es kann daher nicht sichergestellt werden, dass sich der\n" 295"erste %s Commit zwischen %s und %s befindet.\n" 296"Es wird dennoch fortgesetzt." 297 298#: bisect.c:798 299#, c-format 300msgid "Bisecting: a merge base must be tested\n" 301msgstr "binäre Suche: eine Merge-Basis muss geprüft werden\n" 302 303#: bisect.c:849 304#, c-format 305msgid "a %s revision is needed" 306msgstr "ein %s Commit wird benötigt" 307 308#: bisect.c:866 builtin/notes.c:174 builtin/tag.c:248 309#, c-format 310msgid "could not create file '%s'" 311msgstr "konnte Datei '%s' nicht erstellen" 312 313#: bisect.c:917 314#, c-format 315msgid "could not read file '%s'" 316msgstr "Konnte Datei '%s' nicht lesen" 317 318#: bisect.c:947 319msgid "reading bisect refs failed" 320msgstr "Lesen von Referenzen für binäre Suche fehlgeschlagen" 321 322#: bisect.c:967 323#, c-format 324msgid "%s was both %s and %s\n" 325msgstr "%s war sowohl %s als auch %s\n" 326 327#: bisect.c:975 328#, c-format 329msgid "" 330"No testable commit found.\n" 331"Maybe you started with bad path parameters?\n" 332msgstr "" 333"Kein testbarer Commit gefunden.\n" 334"Vielleicht starteten Sie mit falschen Pfad-Parametern?\n" 335 336#: bisect.c:994 337#, c-format 338msgid "(roughly %d step)" 339msgid_plural "(roughly %d steps)" 340msgstr[0] "(ungefähr %d Schritt)" 341msgstr[1] "(ungefähr %d Schritte)" 342 343#. TRANSLATORS: the last %s will be replaced with 344#. "(roughly %d steps)" translation 345#: bisect.c:998 346#, c-format 347msgid "Bisecting: %d revision left to test after this %s\n" 348msgid_plural "Bisecting: %d revisions left to test after this %s\n" 349msgstr[0] "binäre Suche: danach noch %d Commit zum Testen übrig %s\n" 350msgstr[1] "binäre Suche: danach noch %d Commits zum Testen übrig %s\n" 351 352#: branch.c:53 353#, c-format 354msgid "" 355"\n" 356"After fixing the error cause you may try to fix up\n" 357"the remote tracking information by invoking\n" 358"\"git branch --set-upstream-to=%s%s%s\"." 359msgstr "" 360"\n" 361"Nachdem Sie die Fehlerursache behoben haben, können Sie\n" 362"die Tracking-Informationen mit\n" 363"\"git branch --set-upstream-to=%s%s%s\"\n" 364"erneut setzen." 365 366#: branch.c:67 367#, c-format 368msgid "Not setting branch %s as its own upstream." 369msgstr "Branch %s kann nicht sein eigener Upstream-Branch sein." 370 371#: branch.c:93 372#, c-format 373msgid "Branch %s set up to track remote branch %s from %s by rebasing." 374msgstr "" 375"Branch %s konfiguriert zum Folgen von Remote-Branch %s von %s durch Rebase." 376 377#: branch.c:94 378#, c-format 379msgid "Branch %s set up to track remote branch %s from %s." 380msgstr "Branch %s konfiguriert zum Folgen von Remote-Branch %s von %s." 381 382#: branch.c:98 383#, c-format 384msgid "Branch %s set up to track local branch %s by rebasing." 385msgstr "Branch %s konfiguriert zum Folgen von lokalem Branch %s durch Rebase." 386 387#: branch.c:99 388#, c-format 389msgid "Branch %s set up to track local branch %s." 390msgstr "Branch %s konfiguriert zum Folgen von lokalem Branch %s." 391 392#: branch.c:104 393#, c-format 394msgid "Branch %s set up to track remote ref %s by rebasing." 395msgstr "Branch %s konfiguriert zum Folgen von Remote-Referenz %s durch Rebase." 396 397#: branch.c:105 398#, c-format 399msgid "Branch %s set up to track remote ref %s." 400msgstr "Branch %s konfiguriert zum Folgen von Remote-Referenz %s." 401 402#: branch.c:109 403#, c-format 404msgid "Branch %s set up to track local ref %s by rebasing." 405msgstr "" 406"Branch %s konfiguriert zum Folgen von lokaler Referenz %s durch Rebase." 407 408#: branch.c:110 409#, c-format 410msgid "Branch %s set up to track local ref %s." 411msgstr "Branch %s konfiguriert zum Folgen von lokaler Referenz %s." 412 413#: branch.c:119 414msgid "Unable to write upstream branch configuration" 415msgstr "Konnte Konfiguration zu Upstream-Branch nicht schreiben." 416 417#: branch.c:156 418#, c-format 419msgid "Not tracking: ambiguous information for ref %s" 420msgstr "" 421"Konfiguration zum Folgen von Branch nicht eingerichtet. Referenz %s ist " 422"mehrdeutig." 423 424#: branch.c:185 425#, c-format 426msgid "'%s' is not a valid branch name." 427msgstr "'%s' ist kein gültiger Branchname." 428 429#: branch.c:190 430#, c-format 431msgid "A branch named '%s' already exists." 432msgstr "Branch '%s' existiert bereits." 433 434#: branch.c:198 435msgid "Cannot force update the current branch." 436msgstr "Kann Aktualisierung des aktuellen Branches nicht erzwingen." 437 438#: branch.c:218 439#, c-format 440msgid "Cannot setup tracking information; starting point '%s' is not a branch." 441msgstr "" 442"Kann Tracking-Informationen nicht einrichten; Startpunkt '%s' ist kein " 443"Branch." 444 445#: branch.c:220 446#, c-format 447msgid "the requested upstream branch '%s' does not exist" 448msgstr "der angeforderte Upstream-Branch '%s' existiert nicht" 449 450#: branch.c:222 451msgid "" 452"\n" 453"If you are planning on basing your work on an upstream\n" 454"branch that already exists at the remote, you may need to\n" 455"run \"git fetch\" to retrieve it.\n" 456"\n" 457"If you are planning to push out a new local branch that\n" 458"will track its remote counterpart, you may want to use\n" 459"\"git push -u\" to set the upstream config as you push." 460msgstr "" 461"\n" 462"Falls Sie vorhaben, Ihre Arbeit auf einem bereits existierenden\n" 463"Upstream-Branch aufzubauen, sollten Sie \"git fetch\"\n" 464"ausführen, um diesen abzurufen.\n" 465"\n" 466"Falls Sie vorhaben, einen neuen lokalen Branch zu versenden\n" 467"der seinem externen Gegenstück folgen soll, können Sie\n" 468"\"git push -u\" verwenden, um den Upstream-Branch beim \"push\"\n" 469"zu konfigurieren." 470 471#: branch.c:266 472#, c-format 473msgid "Not a valid object name: '%s'." 474msgstr "Ungültiger Objekt-Name: '%s'" 475 476#: branch.c:286 477#, c-format 478msgid "Ambiguous object name: '%s'." 479msgstr "mehrdeutiger Objekt-Name: '%s'" 480 481#: branch.c:291 482#, c-format 483msgid "Not a valid branch point: '%s'." 484msgstr "Ungültiger Branchpunkt: '%s'" 485 486#: branch.c:345 487#, c-format 488msgid "'%s' is already checked out at '%s'" 489msgstr "'%s' ist bereits in '%s' ausgecheckt" 490 491#: branch.c:364 492#, c-format 493msgid "HEAD of working tree %s is not updated" 494msgstr "HEAD des Arbeitsverzeichnisses %s ist nicht aktualisiert." 495 496#: bundle.c:34 497#, c-format 498msgid "'%s' does not look like a v2 bundle file" 499msgstr "'%s' sieht nicht wie eine v2 Paketdatei aus" 500 501#: bundle.c:61 502#, c-format 503msgid "unrecognized header: %s%s (%d)" 504msgstr "nicht erkannter Kopfbereich: %s%s (%d)" 505 506#: bundle.c:87 builtin/commit.c:778 507#, c-format 508msgid "could not open '%s'" 509msgstr "Konnte '%s' nicht öffnen" 510 511#: bundle.c:139 512msgid "Repository lacks these prerequisite commits:" 513msgstr "Dem Repository fehlen folgende vorausgesetzte Commits:" 514 515#: bundle.c:163 ref-filter.c:1462 sequencer.c:630 sequencer.c:1085 516#: builtin/blame.c:2763 builtin/commit.c:1057 builtin/log.c:348 517#: builtin/log.c:890 builtin/log.c:1336 builtin/log.c:1659 builtin/log.c:1901 518#: builtin/merge.c:356 builtin/shortlog.c:170 519msgid "revision walk setup failed" 520msgstr "Einrichtung des Revisionsgangs fehlgeschlagen" 521 522#: bundle.c:185 523#, c-format 524msgid "The bundle contains this ref:" 525msgid_plural "The bundle contains these %d refs:" 526msgstr[0] "Das Paket enthält diese Referenz:" 527msgstr[1] "Das Paket enthält diese %d Referenzen:" 528 529#: bundle.c:192 530msgid "The bundle records a complete history." 531msgstr "Das Paket speichert eine komplette Historie." 532 533#: bundle.c:194 534#, c-format 535msgid "The bundle requires this ref:" 536msgid_plural "The bundle requires these %d refs:" 537msgstr[0] "Das Paket benötigt diese Referenz:" 538msgstr[1] "Das Paket benötigt diese %d Referenzen:" 539 540#: bundle.c:253 541msgid "Could not spawn pack-objects" 542msgstr "Konnte Paketobjekte nicht erstellen" 543 544#: bundle.c:264 545msgid "pack-objects died" 546msgstr "Erstellung der Paketobjekte abgebrochen" 547 548#: bundle.c:304 549msgid "rev-list died" 550msgstr "\"rev-list\" abgebrochen" 551 552#: bundle.c:353 553#, c-format 554msgid "ref '%s' is excluded by the rev-list options" 555msgstr "Referenz '%s' wird durch \"rev-list\" Optionen ausgeschlossen" 556 557#: bundle.c:443 builtin/log.c:165 builtin/log.c:1565 builtin/shortlog.c:273 558#, c-format 559msgid "unrecognized argument: %s" 560msgstr "nicht erkanntes Argument: %s" 561 562#: bundle.c:451 563msgid "Refusing to create empty bundle." 564msgstr "Erstellung eines leeren Pakets zurückgewiesen." 565 566#: bundle.c:463 567#, c-format 568msgid "cannot create '%s'" 569msgstr "kann '%s' nicht erstellen" 570 571#: bundle.c:491 572msgid "index-pack died" 573msgstr "Erstellung der Paketindexdatei abgebrochen" 574 575#: color.c:290 576#, c-format 577msgid "invalid color value: %.*s" 578msgstr "Ungültiger Farbwert: %.*s" 579 580#: commit.c:40 builtin/am.c:433 builtin/am.c:469 builtin/am.c:1505 581#: builtin/am.c:2119 582#, c-format 583msgid "could not parse %s" 584msgstr "konnte %s nicht parsen" 585 586#: commit.c:42 587#, c-format 588msgid "%s %s is not a commit!" 589msgstr "%s %s ist kein Commit!" 590 591#: compat/obstack.c:406 compat/obstack.c:408 592msgid "memory exhausted" 593msgstr "Speicher verbraucht" 594 595#: config.c:516 596#, c-format 597msgid "bad config line %d in blob %s" 598msgstr "Ungültige Konfigurationszeile %d in Blob %s" 599 600#: config.c:520 601#, c-format 602msgid "bad config line %d in file %s" 603msgstr "Ungültige Konfigurationszeile %d in Datei %s" 604 605#: config.c:524 606#, c-format 607msgid "bad config line %d in standard input" 608msgstr "Ungültige Konfigurationszeile %d in Standard-Eingabe" 609 610#: config.c:528 611#, c-format 612msgid "bad config line %d in submodule-blob %s" 613msgstr "Ungültige Konfigurationszeile %d in Submodul-Blob %s" 614 615#: config.c:532 616#, c-format 617msgid "bad config line %d in command line %s" 618msgstr "Ungültige Konfigurationszeile %d in Kommandozeile %s" 619 620#: config.c:536 621#, c-format 622msgid "bad config line %d in %s" 623msgstr "Ungültige Konfigurationszeile %d in %s" 624 625#: config.c:655 626msgid "out of range" 627msgstr "Außerhalb des Bereichs" 628 629#: config.c:655 630msgid "invalid unit" 631msgstr "Ungültige Einheit" 632 633#: config.c:661 634#, c-format 635msgid "bad numeric config value '%s' for '%s': %s" 636msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s': %s" 637 638#: config.c:666 639#, c-format 640msgid "bad numeric config value '%s' for '%s' in blob %s: %s" 641msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Blob %s: %s" 642 643#: config.c:669 644#, c-format 645msgid "bad numeric config value '%s' for '%s' in file %s: %s" 646msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Datei %s: %s" 647 648#: config.c:672 649#, c-format 650msgid "bad numeric config value '%s' for '%s' in standard input: %s" 651msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Standard-Eingabe: %s" 652 653#: config.c:675 654#, c-format 655msgid "bad numeric config value '%s' for '%s' in submodule-blob %s: %s" 656msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Submodul-Blob %s: %s" 657 658#: config.c:678 659#, c-format 660msgid "bad numeric config value '%s' for '%s' in command line %s: %s" 661msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in Befehlszeile %s: %s" 662 663#: config.c:681 664#, c-format 665msgid "bad numeric config value '%s' for '%s' in %s: %s" 666msgstr "Ungültiger numerischer Wert '%s' für Konfiguration '%s' in %s: %s" 667 668#: config.c:768 669#, c-format 670msgid "failed to expand user dir in: '%s'" 671msgstr "Fehler beim Erweitern des Nutzerverzeichnisses in: '%s'" 672 673#: config.c:849 config.c:860 674#, c-format 675msgid "bad zlib compression level %d" 676msgstr "ungültiger zlib Komprimierungsgrad %d" 677 678#: config.c:978 679#, c-format 680msgid "invalid mode for object creation: %s" 681msgstr "Ungültiger Modus für Objekterstellung: %s" 682 683#: config.c:1312 684msgid "unable to parse command-line config" 685msgstr "" 686"Konnte die über die Befehlszeile angegebene Konfiguration nicht parsen." 687 688#: config.c:1362 689msgid "unknown error occurred while reading the configuration files" 690msgstr "" 691"Es trat ein unbekannter Fehler beim Lesen der Konfigurationsdateien auf." 692 693#: config.c:1716 694#, c-format 695msgid "unable to parse '%s' from command-line config" 696msgstr "" 697"Konnte Wert '%s' aus der über die Befehlszeile angegebenen Konfiguration\n" 698"nicht parsen." 699 700#: config.c:1718 701#, c-format 702msgid "bad config variable '%s' in file '%s' at line %d" 703msgstr "ungültige Konfigurationsvariable '%s' in Datei '%s' bei Zeile %d" 704 705#: config.c:1777 706#, c-format 707msgid "%s has multiple values" 708msgstr "%s hat mehrere Werte" 709 710#: config.c:2311 711#, c-format 712msgid "could not set '%s' to '%s'" 713msgstr "Konnte '%s' nicht zu '%s' setzen." 714 715#: config.c:2313 716#, c-format 717msgid "could not unset '%s'" 718msgstr "Konnte '%s' nicht aufheben." 719 720#: connected.c:63 builtin/fsck.c:173 builtin/prune.c:140 721msgid "Checking connectivity" 722msgstr "Prüfe Konnektivität" 723 724#: connected.c:74 725msgid "Could not run 'git rev-list'" 726msgstr "Konnte 'git rev-list' nicht ausführen" 727 728#: connected.c:94 729msgid "failed write to rev-list" 730msgstr "Fehler beim Schreiben nach rev-list" 731 732#: connected.c:101 733msgid "failed to close rev-list's stdin" 734msgstr "Fehler beim Schließen von rev-list's Standard-Eingabe" 735 736#: date.c:97 737msgid "in the future" 738msgstr "in der Zukunft" 739 740#: date.c:103 741#, c-format 742msgid "%lu second ago" 743msgid_plural "%lu seconds ago" 744msgstr[0] "vor %lu Sekunde" 745msgstr[1] "vor %lu Sekunden" 746 747#: date.c:110 748#, c-format 749msgid "%lu minute ago" 750msgid_plural "%lu minutes ago" 751msgstr[0] "vor %lu Minute" 752msgstr[1] "vor %lu Minuten" 753 754#: date.c:117 755#, c-format 756msgid "%lu hour ago" 757msgid_plural "%lu hours ago" 758msgstr[0] "vor %lu Stunde" 759msgstr[1] "vor %lu Stunden" 760 761#: date.c:124 762#, c-format 763msgid "%lu day ago" 764msgid_plural "%lu days ago" 765msgstr[0] "vor %lu Tag" 766msgstr[1] "vor %lu Tagen" 767 768#: date.c:130 769#, c-format 770msgid "%lu week ago" 771msgid_plural "%lu weeks ago" 772msgstr[0] "vor %lu Woche" 773msgstr[1] "vor %lu Wochen" 774 775#: date.c:137 776#, c-format 777msgid "%lu month ago" 778msgid_plural "%lu months ago" 779msgstr[0] "vor %lu Monat" 780msgstr[1] "vor %lu Monaten" 781 782#: date.c:148 783#, c-format 784msgid "%lu year" 785msgid_plural "%lu years" 786msgstr[0] "vor %lu Jahr" 787msgstr[1] "vor %lu Jahren" 788 789#. TRANSLATORS: "%s" is "<n> years" 790#: date.c:151 791#, c-format 792msgid "%s, %lu month ago" 793msgid_plural "%s, %lu months ago" 794msgstr[0] "%s, und %lu Monat" 795msgstr[1] "%s, und %lu Monaten" 796 797#: date.c:156 date.c:161 798#, c-format 799msgid "%lu year ago" 800msgid_plural "%lu years ago" 801msgstr[0] "vor %lu Jahr" 802msgstr[1] "vor %lu Jahren" 803 804#: diffcore-order.c:24 805#, c-format 806msgid "failed to read orderfile '%s'" 807msgstr "Fehler beim Lesen der Reihenfolgedatei '%s'." 808 809#: diffcore-rename.c:540 810msgid "Performing inexact rename detection" 811msgstr "Führe Erkennung für ungenaue Umbenennung aus" 812 813#: diff.c:116 814#, c-format 815msgid " Failed to parse dirstat cut-off percentage '%s'\n" 816msgstr "" 817" Fehler beim Parsen des abgeschnittenen \"dirstat\" Prozentsatzes '%s'\n" 818 819#: diff.c:121 820#, c-format 821msgid " Unknown dirstat parameter '%s'\n" 822msgstr " Unbekannter \"dirstat\" Parameter '%s'\n" 823 824#: diff.c:225 825#, c-format 826msgid "Unknown value for 'diff.submodule' config variable: '%s'" 827msgstr "Unbekannter Wert in Konfigurationsvariable 'diff.dirstat': '%s'" 828 829#: diff.c:277 830#, c-format 831msgid "" 832"Found errors in 'diff.dirstat' config variable:\n" 833"%s" 834msgstr "" 835"Fehler in 'diff.dirstat' Konfigurationsvariable gefunden:\n" 836"%s" 837 838#: diff.c:3017 839#, c-format 840msgid "external diff died, stopping at %s" 841msgstr "externes Diff-Programm unerwartet beendet, angehalten bei %s" 842 843#: diff.c:3415 844msgid "--follow requires exactly one pathspec" 845msgstr "--follow erfordert genau eine Pfadspezifikation" 846 847#: diff.c:3578 848#, c-format 849msgid "" 850"Failed to parse --dirstat/-X option parameter:\n" 851"%s" 852msgstr "" 853"Fehler beim Parsen des --dirstat/-X Optionsparameters:\n" 854"%s" 855 856#: diff.c:3592 857#, c-format 858msgid "Failed to parse --submodule option parameter: '%s'" 859msgstr "Fehler beim Parsen des --submodule Optionsparameters: '%s'" 860 861#: dir.c:1823 862msgid "failed to get kernel name and information" 863msgstr "Fehler beim Sammeln von Namen und Informationen zum Kernel" 864 865#: dir.c:1942 866msgid "Untracked cache is disabled on this system or location." 867msgstr "" 868"Cache für unversionierte Dateien ist auf diesem System oder\n" 869"für dieses Verzeichnis deaktiviert." 870 871#: gpg-interface.c:178 872msgid "gpg failed to sign the data" 873msgstr "gpg beim Signieren der Daten fehlgeschlagen" 874 875#: gpg-interface.c:208 876msgid "could not create temporary file" 877msgstr "konnte temporäre Datei nicht erstellen" 878 879#: gpg-interface.c:210 880#, c-format 881msgid "failed writing detached signature to '%s'" 882msgstr "Fehler beim Schreiben der losgelösten Signatur nach '%s'" 883 884#: grep.c:1792 885#, c-format 886msgid "'%s': unable to read %s" 887msgstr "'%s': konnte %s nicht lesen" 888 889#: grep.c:1809 builtin/clone.c:382 builtin/diff.c:84 builtin/rm.c:155 890#, c-format 891msgid "failed to stat '%s'" 892msgstr "Konnte '%s' nicht lesen" 893 894#: grep.c:1820 895#, c-format 896msgid "'%s': short read" 897msgstr "'%s': read() zu kurz" 898 899#: help.c:205 900#, c-format 901msgid "available git commands in '%s'" 902msgstr "Vorhandene Git-Befehle in '%s'" 903 904#: help.c:212 905msgid "git commands available from elsewhere on your $PATH" 906msgstr "Vorhandene Git-Befehle anderswo in Ihrem $PATH" 907 908#: help.c:244 909msgid "These are common Git commands used in various situations:" 910msgstr "Allgemeine Git-Befehle, verwendet in verschiedenen Situationen:" 911 912#: help.c:309 913#, c-format 914msgid "" 915"'%s' appears to be a git command, but we were not\n" 916"able to execute it. Maybe git-%s is broken?" 917msgstr "" 918"'%s' scheint ein git-Befehl zu sein, konnte aber\n" 919"nicht ausgeführt werden. Vielleicht ist git-%s fehlerhaft?" 920 921#: help.c:366 922msgid "Uh oh. Your system reports no Git commands at all." 923msgstr "Uh oh. Keine Git-Befehle auf Ihrem System vorhanden." 924 925#: help.c:388 926#, c-format 927msgid "" 928"WARNING: You called a Git command named '%s', which does not exist.\n" 929"Continuing under the assumption that you meant '%s'" 930msgstr "" 931"Warnung: Sie haben den nicht existierenden Git-Befehl '%s' ausgeführt.\n" 932"Setze fort unter der Annahme, dass Sie '%s' gemeint haben." 933 934#: help.c:393 935#, c-format 936msgid "in %0.1f seconds automatically..." 937msgstr "Automatische Ausführung in %0.1f Sekunden ..." 938 939#: help.c:400 940#, c-format 941msgid "git: '%s' is not a git command. See 'git --help'." 942msgstr "git: '%s' ist kein Git-Befehl. Siehe 'git --help'." 943 944#: help.c:404 help.c:470 945msgid "" 946"\n" 947"Did you mean this?" 948msgid_plural "" 949"\n" 950"Did you mean one of these?" 951msgstr[0] "" 952"\n" 953"Haben Sie das gemeint?" 954msgstr[1] "" 955"\n" 956"Haben Sie eines von diesen gemeint?" 957 958#: help.c:466 959#, c-format 960msgid "%s: %s - %s" 961msgstr "%s: %s - %s" 962 963#: lockfile.c:152 964#, c-format 965msgid "" 966"Unable to create '%s.lock': %s.\n" 967"\n" 968"Another git process seems to be running in this repository, e.g.\n" 969"an editor opened by 'git commit'. Please make sure all processes\n" 970"are terminated then try again. If it still fails, a git process\n" 971"may have crashed in this repository earlier:\n" 972"remove the file manually to continue." 973msgstr "" 974"Konnte '%s.lock' nicht erstellen: %s.\n" 975"\n" 976"Ein anderer Git-Prozess scheint in diesem Repository ausgeführt\n" 977"zu werden, zum Beispiel ein noch offener Editor von 'git commit'.\n" 978"Bitte stellen Sie sicher, dass alle Prozesse beendet wurden und\n" 979"versuchen Sie es erneut. Falls es immer noch fehlschlägt, könnte\n" 980"ein früherer Git-Prozess in diesem Repository abgestürzt sein:\n" 981"Löschen Sie die Datei manuell um fortzufahren." 982 983#: lockfile.c:160 984#, c-format 985msgid "Unable to create '%s.lock': %s" 986msgstr "Konnte '%s.lock' nicht erstellen: %s" 987 988#: merge.c:41 989msgid "failed to read the cache" 990msgstr "Lesen des Zwischenspeichers fehlgeschlagen" 991 992#: merge.c:94 builtin/am.c:1992 builtin/am.c:2027 builtin/checkout.c:375 993#: builtin/checkout.c:589 builtin/clone.c:732 994msgid "unable to write new index file" 995msgstr "Konnte neue Index-Datei nicht schreiben." 996 997#: merge-recursive.c:209 998msgid "(bad commit)\n" 999msgstr "(ungültiger Commit)\n"10001001#: merge-recursive.c:2311002#, c-format1003msgid "addinfo_cache failed for path '%s'"1004msgstr "addinfo_cache für Pfad '%s' fehlgeschlagen"10051006#: merge-recursive.c:3011007msgid "error building trees"1008msgstr "Fehler beim Erstellen der \"Tree\"-Objekte"10091010#: merge-recursive.c:7201011#, c-format1012msgid "failed to create path '%s'%s"1013msgstr "Fehler beim Erstellen des Pfades '%s'%s"10141015#: merge-recursive.c:7311016#, c-format1017msgid "Removing %s to make room for subdirectory\n"1018msgstr "Entferne %s, um Platz für Unterverzeichnis zu schaffen\n"10191020#: merge-recursive.c:745 merge-recursive.c:7641021msgid ": perhaps a D/F conflict?"1022msgstr ": vielleicht ein Verzeichnis/Datei-Konflikt?"10231024#: merge-recursive.c:7541025#, c-format1026msgid "refusing to lose untracked file at '%s'"1027msgstr "verweigere, da unversionierte Dateien in '%s' verloren gehen würden"10281029#: merge-recursive.c:7961030#, c-format1031msgid "cannot read object %s '%s'"1032msgstr "kann Objekt %s '%s' nicht lesen"10331034#: merge-recursive.c:7981035#, c-format1036msgid "blob expected for %s '%s'"1037msgstr "Blob erwartet für %s '%s'"10381039#: merge-recursive.c:8221040#, c-format1041msgid "failed to open '%s': %s"1042msgstr "Fehler beim Öffnen von '%s': %s"10431044#: merge-recursive.c:8331045#, c-format1046msgid "failed to symlink '%s': %s"1047msgstr "Fehler beim Erstellen einer symbolischen Verknüpfung für '%s': %s"10481049#: merge-recursive.c:8381050#, c-format1051msgid "do not know what to do with %06o %s '%s'"1052msgstr "weiß nicht was mit %06o %s '%s' zu machen ist"10531054#: merge-recursive.c:9781055msgid "Failed to execute internal merge"1056msgstr "Fehler bei Ausführung des internen Merges"10571058#: merge-recursive.c:9821059#, c-format1060msgid "Unable to add %s to database"1061msgstr "Konnte %s nicht zur Datenbank hinzufügen"10621063#: merge-recursive.c:1081 merge-recursive.c:10951064#, c-format1065msgid ""1066"CONFLICT (%s/delete): %s deleted in %s and %s in %s. Version %s of %s left "1067"in tree."1068msgstr ""1069"KONFLIKT (%s/löschen): %s gelöscht in %s und %s in %s. Stand %s von %s wurde "1070"im Arbeitsbereich gelassen."10711072#: merge-recursive.c:1087 merge-recursive.c:11001073#, c-format1074msgid ""1075"CONFLICT (%s/delete): %s deleted in %s and %s in %s. Version %s of %s left "1076"in tree at %s."1077msgstr ""1078"KONFLIKT (%s/löschen): %s gelöscht in %s und %s in %s. Stand %s von %s wurde "1079"im Arbeitsbereich bei %s gelassen."10801081#: merge-recursive.c:11431082msgid "rename"1083msgstr "umbenennen"10841085#: merge-recursive.c:11431086msgid "renamed"1087msgstr "umbenannt"10881089#: merge-recursive.c:12001090#, c-format1091msgid "%s is a directory in %s adding as %s instead"1092msgstr "%s ist ein Verzeichnis in %s, füge es stattdessen als %s hinzu"10931094#: merge-recursive.c:12251095#, c-format1096msgid ""1097"CONFLICT (rename/rename): Rename \"%s\"->\"%s\" in branch \"%s\" rename \"%s"1098"\"->\"%s\" in \"%s\"%s"1099msgstr ""1100"KONFLIKT (umbenennen/umbenennen): Benenne um \"%s\"->\"%s\" in Branch \"%s\" "1101"und \"%s\"->\"%s\" in Branch \"%s\"%s"11021103#: merge-recursive.c:12301104msgid " (left unresolved)"1105msgstr " (bleibt unaufgelöst)"11061107#: merge-recursive.c:12921108#, c-format1109msgid "CONFLICT (rename/rename): Rename %s->%s in %s. Rename %s->%s in %s"1110msgstr ""1111"KONFLIKT (umbenennen/umbenennen): Benenne um %s->%s in %s. Benenne um %s->%s "1112"in %s"11131114#: merge-recursive.c:13251115#, c-format1116msgid "Renaming %s to %s and %s to %s instead"1117msgstr "Benenne stattdessen %s nach %s und %s nach %s um"11181119#: merge-recursive.c:15311120#, c-format1121msgid "CONFLICT (rename/add): Rename %s->%s in %s. %s added in %s"1122msgstr ""1123"KONFLIKT (umbenennen/hinzufügen): Benenne um %s->%s in %s. %s hinzugefügt in "1124"%s"11251126#: merge-recursive.c:15461127#, c-format1128msgid "Adding merged %s"1129msgstr "Füge zusammengeführte Datei %s hinzu"11301131#: merge-recursive.c:1553 merge-recursive.c:17661132#, c-format1133msgid "Adding as %s instead"1134msgstr "Füge stattdessen als %s hinzu"11351136#: merge-recursive.c:16101137#, c-format1138msgid "cannot read object %s"1139msgstr "kann Objekt %s nicht lesen"11401141#: merge-recursive.c:16131142#, c-format1143msgid "object %s is not a blob"1144msgstr "Objekt %s ist kein Blob"11451146#: merge-recursive.c:16661147msgid "modify"1148msgstr "ändern"11491150#: merge-recursive.c:16661151msgid "modified"1152msgstr "geändert"11531154#: merge-recursive.c:16761155msgid "content"1156msgstr "Inhalt"11571158#: merge-recursive.c:16831159msgid "add/add"1160msgstr "hinzufügen/hinzufügen"11611162#: merge-recursive.c:17181163#, c-format1164msgid "Skipped %s (merged same as existing)"1165msgstr "%s ausgelassen (Ergebnis des Merges existiert bereits)"11661167#: merge-recursive.c:17321168#, c-format1169msgid "Auto-merging %s"1170msgstr "automatischer Merge von %s"11711172#: merge-recursive.c:1736 git-submodule.sh:9191173msgid "submodule"1174msgstr "Submodul"11751176#: merge-recursive.c:17371177#, c-format1178msgid "CONFLICT (%s): Merge conflict in %s"1179msgstr "KONFLIKT (%s): Merge-Konflikt in %s"11801181#: merge-recursive.c:18311182#, c-format1183msgid "Removing %s"1184msgstr "Entferne %s"11851186#: merge-recursive.c:18571187msgid "file/directory"1188msgstr "Datei/Verzeichnis"11891190#: merge-recursive.c:18631191msgid "directory/file"1192msgstr "Verzeichnis/Datei"11931194#: merge-recursive.c:18681195#, c-format1196msgid "CONFLICT (%s): There is a directory with name %s in %s. Adding %s as %s"1197msgstr ""1198"KONFLIKT (%s): Es existiert bereits ein Verzeichnis %s in %s. Füge %s als %s "1199"hinzu."12001201#: merge-recursive.c:18771202#, c-format1203msgid "Adding %s"1204msgstr "Füge %s hinzu"12051206#: merge-recursive.c:19141207msgid "Already up-to-date!"1208msgstr "Bereits aktuell!"12091210#: merge-recursive.c:19231211#, c-format1212msgid "merging of trees %s and %s failed"1213msgstr "Zusammenführen der \"Tree\"-Objekte %s und %s fehlgeschlagen"12141215#: merge-recursive.c:20061216msgid "Merging:"1217msgstr "Merge:"12181219#: merge-recursive.c:20191220#, c-format1221msgid "found %u common ancestor:"1222msgid_plural "found %u common ancestors:"1223msgstr[0] "%u gemeinsamen Vorgänger-Commit gefunden"1224msgstr[1] "%u gemeinsame Vorgänger-Commits gefunden"12251226#: merge-recursive.c:20581227msgid "merge returned no commit"1228msgstr "Merge hat keinen Commit zurückgegeben"12291230#: merge-recursive.c:21211231#, c-format1232msgid "Could not parse object '%s'"1233msgstr "Konnte Objekt '%s' nicht parsen."12341235#: merge-recursive.c:2135 builtin/merge.c:641 builtin/merge.c:7881236msgid "Unable to write index."1237msgstr "Konnte Index nicht schreiben."12381239#: notes-utils.c:411240msgid "Cannot commit uninitialized/unreferenced notes tree"1241msgstr ""1242"Kann uninitialisiertes/unreferenzierte Notiz-Verzeichnis nicht committen."12431244#: notes-utils.c:1001245#, c-format1246msgid "Bad notes.rewriteMode value: '%s'"1247msgstr "Ungültiger notes.rewriteMode Wert: '%s'"12481249#: notes-utils.c:1101250#, c-format1251msgid "Refusing to rewrite notes in %s (outside of refs/notes/)"1252msgstr ""1253"Umschreiben der Notizen in %s zurückgewiesen (außerhalb von refs/notes/)"12541255#. TRANSLATORS: The first %s is the name of the1256#. environment variable, the second %s is its value1257#: notes-utils.c:1371258#, c-format1259msgid "Bad %s value: '%s'"1260msgstr "Ungültiger %s Wert: '%s'"12611262#: object.c:2421263#, c-format1264msgid "unable to parse object: %s"1265msgstr "Konnte Objekt '%s' nicht parsen."12661267#: parse-options.c:5721268msgid "..."1269msgstr "..."12701271#: parse-options.c:5901272#, c-format1273msgid "usage: %s"1274msgstr "Verwendung: %s"12751276#. TRANSLATORS: the colon here should align with the1277#. one in "usage: %s" translation1278#: parse-options.c:5941279#, c-format1280msgid " or: %s"1281msgstr " oder: %s"12821283#: parse-options.c:5971284#, c-format1285msgid " %s"1286msgstr " %s"12871288#: parse-options.c:6311289msgid "-NUM"1290msgstr "-NUM"12911292#: parse-options-cb.c:1081293#, c-format1294msgid "malformed object name '%s'"1295msgstr "fehlerhafter Objekt-Name '%s'"12961297#: path.c:7981298#, c-format1299msgid "Could not make %s writable by group"1300msgstr "Konnte Gruppenschreibrecht für %s nicht setzen."13011302#: pathspec.c:1331303msgid "global 'glob' and 'noglob' pathspec settings are incompatible"1304msgstr ""1305"Globale Einstellungen zur Pfadspezifikation 'glob' und 'noglob' sind "1306"inkompatibel."13071308#: pathspec.c:1431309msgid ""1310"global 'literal' pathspec setting is incompatible with all other global "1311"pathspec settings"1312msgstr ""1313"Globale Einstellung zur Pfadspezifikation 'literal' ist inkompatibel\n"1314"mit allen anderen Optionen."13151316#: pathspec.c:1771317msgid "invalid parameter for pathspec magic 'prefix'"1318msgstr "ungültiger Parameter für Pfadspezifikationsangabe 'prefix'"13191320#: pathspec.c:1831321#, c-format1322msgid "Invalid pathspec magic '%.*s' in '%s'"1323msgstr "ungültige Pfadspezifikationsangabe '%.*s' in '%s'"13241325#: pathspec.c:1871326#, c-format1327msgid "Missing ')' at the end of pathspec magic in '%s'"1328msgstr "Fehlendes ')' am Ende der Pfadspezifikationsangabe in '%s'"13291330#: pathspec.c:2051331#, c-format1332msgid "Unimplemented pathspec magic '%c' in '%s'"1333msgstr "nicht unterstützte Pfadspezifikationsangabe '%c' in '%s'"13341335#: pathspec.c:2301336#, c-format1337msgid "%s: 'literal' and 'glob' are incompatible"1338msgstr "%s: 'literal' und 'glob' sind inkompatibel"13391340#: pathspec.c:2411341#, c-format1342msgid "%s: '%s' is outside repository"1343msgstr "%s: '%s' liegt außerhalb des Repositories"13441345#: pathspec.c:2911346#, c-format1347msgid "Pathspec '%s' is in submodule '%.*s'"1348msgstr "Pfadspezifikation '%s' befindet sich in Submodul '%.*s'"13491350#: pathspec.c:3531351#, c-format1352msgid "%s: pathspec magic not supported by this command: %s"1353msgstr ""1354"%s: Pfadspezifikationsangabe wird von diesem Befehl nicht unterstützt: %s"13551356#: pathspec.c:4331357#, c-format1358msgid "pathspec '%s' is beyond a symbolic link"1359msgstr "Pfadspezifikation '%s' ist hinter einer symbolischen Verknüpfung"13601361#: pathspec.c:4421362msgid ""1363"There is nothing to exclude from by :(exclude) patterns.\n"1364"Perhaps you forgot to add either ':/' or '.' ?"1365msgstr ""1366":(exclude) Muster, aber keine anderen Pfadspezifikationen angegeben.\n"1367"Vielleicht haben Sie vergessen entweder ':/' oder '.' hinzuzufügen?"13681369#: pretty.c:9731370msgid "unable to parse --pretty format"1371msgstr "Konnte --pretty Format nicht parsen."13721373#: progress.c:2351374msgid "done"1375msgstr "Fertig"13761377#: read-cache.c:12811378#, c-format1379msgid ""1380"index.version set, but the value is invalid.\n"1381"Using version %i"1382msgstr ""1383"index.version gesetzt, aber Wert ungültig.\n"1384"Verwende Version %i"13851386#: read-cache.c:12911387#, c-format1388msgid ""1389"GIT_INDEX_VERSION set, but the value is invalid.\n"1390"Using version %i"1391msgstr ""1392"GIT_INDEX_VERSION gesetzt, aber Wert ungültig.\n"1393"Verwende Version %i"13941395#: refs.c:551 builtin/merge.c:8401396#, c-format1397msgid "Could not open '%s' for writing"1398msgstr "Konnte '%s' nicht zum Schreiben öffnen."13991400#: refs/files-backend.c:25341401#, c-format1402msgid "could not delete reference %s: %s"1403msgstr "Konnte Referenz %s nicht entfernen: %s"14041405#: refs/files-backend.c:25371406#, c-format1407msgid "could not delete references: %s"1408msgstr "Konnte Referenzen nicht entfernen: %s"14091410#: refs/files-backend.c:25461411#, c-format1412msgid "could not remove reference %s"1413msgstr "Konnte Referenz %s nicht löschen"14141415#: ref-filter.c:551416#, c-format1417msgid "expected format: %%(color:<color>)"1418msgstr "Erwartetes Format: %%(color:<Farbe>)"14191420#: ref-filter.c:571421#, c-format1422msgid "unrecognized color: %%(color:%s)"1423msgstr "nicht erkannte Farbe: %%(color:%s)"14241425#: ref-filter.c:711426#, c-format1427msgid "unrecognized format: %%(%s)"1428msgstr "nicht erkanntes Format: %%(%s)"14291430#: ref-filter.c:771431#, c-format1432msgid "%%(body) does not take arguments"1433msgstr "%%(body) akzeptiert keine Argumente"14341435#: ref-filter.c:841436#, c-format1437msgid "%%(subject) does not take arguments"1438msgstr "%%(subject) akzeptiert keine Argumente"14391440#: ref-filter.c:1011441#, c-format1442msgid "positive value expected contents:lines=%s"1443msgstr "Positiver Wert erwartet contents:lines=%s"14441445#: ref-filter.c:1031446#, c-format1447msgid "unrecognized %%(contents) argument: %s"1448msgstr "nicht erkanntes %%(contents) Argument: %s"14491450#: ref-filter.c:1131451#, c-format1452msgid "unrecognized %%(objectname) argument: %s"1453msgstr "nicht erkanntes %%(objectname) Argument: %s"14541455#: ref-filter.c:1351456#, c-format1457msgid "expected format: %%(align:<width>,<position>)"1458msgstr "Erwartetes Format: %%(align:<Breite>,<Position>)"14591460#: ref-filter.c:1471461#, c-format1462msgid "unrecognized position:%s"1463msgstr "nicht erkannte Position:%s"14641465#: ref-filter.c:1511466#, c-format1467msgid "unrecognized width:%s"1468msgstr "nicht erkannte Breite:%s"14691470#: ref-filter.c:1571471#, c-format1472msgid "unrecognized %%(align) argument: %s"1473msgstr "nicht erkanntes %%(align) Argument: %s"14741475#: ref-filter.c:1611476#, c-format1477msgid "positive width expected with the %%(align) atom"1478msgstr "Positive Breitenangabe für %%(align) erwartet"14791480#: ref-filter.c:2441481#, c-format1482msgid "malformed field name: %.*s"1483msgstr "Fehlerhafter Feldname: %.*s"14841485#: ref-filter.c:2701486#, c-format1487msgid "unknown field name: %.*s"1488msgstr "Unbekannter Feldname: %.*s"14891490#: ref-filter.c:3721491#, c-format1492msgid "format: %%(end) atom used without corresponding atom"1493msgstr "Format: %%(end) Atom ohne zugehöriges Atom verwendet"14941495#: ref-filter.c:4241496#, c-format1497msgid "malformed format string %s"1498msgstr "Fehlerhafter Formatierungsstring %s"14991500#: ref-filter.c:8781501msgid ":strip= requires a positive integer argument"1502msgstr ":strip= erfordert eine positive Ganzzahl als Argument"15031504#: ref-filter.c:8831505#, c-format1506msgid "ref '%s' does not have %ld components to :strip"1507msgstr "Referenz '%s' hat keine %ld Komponenten für :strip"15081509#: ref-filter.c:10461510#, c-format1511msgid "unknown %.*s format %s"1512msgstr "Unbekanntes %.*s Format %s"15131514#: ref-filter.c:1066 ref-filter.c:10971515#, c-format1516msgid "missing object %s for %s"1517msgstr "Objekt %s fehlt für %s"15181519#: ref-filter.c:1069 ref-filter.c:11001520#, c-format1521msgid "parse_object_buffer failed on %s for %s"1522msgstr "parse_object_buffer bei %s für %s fehlgeschlagen"15231524#: ref-filter.c:13111525#, c-format1526msgid "malformed object at '%s'"1527msgstr "fehlerhaftes Objekt bei '%s'"15281529#: ref-filter.c:13731530#, c-format1531msgid "ignoring ref with broken name %s"1532msgstr "Ignoriere Referenz mit fehlerhaftem Namen %s"15331534#: ref-filter.c:13781535#, c-format1536msgid "ignoring broken ref %s"1537msgstr "Ignoriere fehlerhafte Referenz %s"15381539#: ref-filter.c:16511540#, c-format1541msgid "format: %%(end) atom missing"1542msgstr "Format: %%(end) Atom fehlt"15431544#: ref-filter.c:17051545#, c-format1546msgid "malformed object name %s"1547msgstr "Missgebildeter Objektname %s"15481549#: remote.c:7461550#, c-format1551msgid "Cannot fetch both %s and %s to %s"1552msgstr "Kann 'fetch' nicht für sowohl %s als auch %s nach %s ausführen."15531554#: remote.c:7501555#, c-format1556msgid "%s usually tracks %s, not %s"1557msgstr "%s folgt üblicherweise %s, nicht %s"15581559#: remote.c:7541560#, c-format1561msgid "%s tracks both %s and %s"1562msgstr "%s folgt sowohl %s als auch %s"15631564#: remote.c:7621565msgid "Internal error"1566msgstr "Interner Fehler"15671568#: remote.c:1677 remote.c:17201569msgid "HEAD does not point to a branch"1570msgstr "HEAD zeigt auf keinen Branch"15711572#: remote.c:16861573#, c-format1574msgid "no such branch: '%s'"1575msgstr "Kein solcher Branch: '%s'"15761577#: remote.c:16891578#, c-format1579msgid "no upstream configured for branch '%s'"1580msgstr "Kein Upstream-Branch für Branch '%s' konfiguriert."15811582#: remote.c:16951583#, c-format1584msgid "upstream branch '%s' not stored as a remote-tracking branch"1585msgstr "Upstream-Branch '%s' nicht als Remote-Tracking-Branch gespeichert"15861587#: remote.c:17101588#, c-format1589msgid "push destination '%s' on remote '%s' has no local tracking branch"1590msgstr ""1591"Ziel für \"push\" '%s' auf Remote-Repository '%s' hat keinen lokal gefolgten "1592"Branch"15931594#: remote.c:17251595#, c-format1596msgid "branch '%s' has no remote for pushing"1597msgstr "Branch '%s' hat keinen Upstream-Branch gesetzt"15981599#: remote.c:17361600#, c-format1601msgid "push refspecs for '%s' do not include '%s'"1602msgstr "Push-Refspecs für '%s' beinhalten nicht '%s'"16031604#: remote.c:17491605msgid "push has no destination (push.default is 'nothing')"1606msgstr "kein Ziel für \"push\" (push.default ist 'nothing')"16071608#: remote.c:17711609msgid "cannot resolve 'simple' push to a single destination"1610msgstr "kann einzelnes Ziel für \"push\" im Modus 'simple' nicht auflösen"16111612#: remote.c:20731613#, c-format1614msgid "Your branch is based on '%s', but the upstream is gone.\n"1615msgstr ""1616"Ihr Branch basiert auf '%s', aber der Upstream-Branch wurde entfernt.\n"16171618#: remote.c:20771619msgid " (use \"git branch --unset-upstream\" to fixup)\n"1620msgstr " (benutzen Sie \"git branch --unset-upstream\" zum Beheben)\n"16211622#: remote.c:20801623#, c-format1624msgid "Your branch is up-to-date with '%s'.\n"1625msgstr "Ihr Branch ist auf dem selben Stand wie '%s'.\n"16261627#: remote.c:20841628#, c-format1629msgid "Your branch is ahead of '%s' by %d commit.\n"1630msgid_plural "Your branch is ahead of '%s' by %d commits.\n"1631msgstr[0] "Ihr Branch ist vor '%s' um %d Commit.\n"1632msgstr[1] "Ihr Branch ist vor '%s' um %d Commits.\n"16331634#: remote.c:20901635msgid " (use \"git push\" to publish your local commits)\n"1636msgstr " (benutzen Sie \"git push\", um lokale Commits zu publizieren)\n"16371638#: remote.c:20931639#, c-format1640msgid "Your branch is behind '%s' by %d commit, and can be fast-forwarded.\n"1641msgid_plural ""1642"Your branch is behind '%s' by %d commits, and can be fast-forwarded.\n"1643msgstr[0] ""1644"Ihr Branch ist zu '%s' um %d Commit hinterher, und kann vorgespult werden.\n"1645msgstr[1] ""1646"Ihr Branch ist zu '%s' um %d Commits hinterher, und kann vorgespult werden.\n"16471648#: remote.c:21011649msgid " (use \"git pull\" to update your local branch)\n"1650msgstr ""1651" (benutzen Sie \"git pull\", um Ihren lokalen Branch zu aktualisieren)\n"16521653#: remote.c:21041654#, c-format1655msgid ""1656"Your branch and '%s' have diverged,\n"1657"and have %d and %d different commit each, respectively.\n"1658msgid_plural ""1659"Your branch and '%s' have diverged,\n"1660"and have %d and %d different commits each, respectively.\n"1661msgstr[0] ""1662"Ihr Branch und '%s' sind divergiert,\n"1663"und haben jeweils %d und %d unterschiedliche Commits.\n"1664msgstr[1] ""1665"Ihr Branch und '%s' sind divergiert,\n"1666"und haben jeweils %d und %d unterschiedliche Commits.\n"16671668#: remote.c:21141669msgid " (use \"git pull\" to merge the remote branch into yours)\n"1670msgstr ""1671" (benutzen Sie \"git pull\", um Ihren Branch mit dem Remote-Branch "1672"zusammenzuführen)\n"16731674#: revision.c:21321675msgid "your current branch appears to be broken"1676msgstr "Ihr aktueller Branch scheint fehlerhaft zu sein."16771678#: revision.c:21351679#, c-format1680msgid "your current branch '%s' does not have any commits yet"1681msgstr "Ihr aktueller Branch '%s' hat noch keine Commits."16821683#: revision.c:23291684msgid "--first-parent is incompatible with --bisect"1685msgstr "Die Optionen --first-parent und --bisect sind inkompatibel."16861687#: run-command.c:921688msgid "open /dev/null failed"1689msgstr "Öffnen von /dev/null fehlgeschlagen"16901691#: run-command.c:941692#, c-format1693msgid "dup2(%d,%d) failed"1694msgstr "dup2(%d,%d) fehlgeschlagen"16951696#: send-pack.c:2981697msgid "failed to sign the push certificate"1698msgstr "Fehler beim Signieren des \"push\"-Zertifikates"16991700#: send-pack.c:4111701msgid "the receiving end does not support --signed push"1702msgstr ""1703"die Gegenseite unterstützt keinen signierten Versand (\"--signed push\")"17041705#: send-pack.c:4131706msgid ""1707"not sending a push certificate since the receiving end does not support --"1708"signed push"1709msgstr ""1710"kein Versand des \"push\"-Zertifikates, da die Gegenseite keinen signierten\n"1711"Versand (\"--signed push\") unterstützt"17121713#: send-pack.c:4251714msgid "the receiving end does not support --atomic push"1715msgstr "die Gegenseite unterstützt keinen atomaren Versand (\"--atomic push\")"17161717#: send-pack.c:4301718msgid "the receiving end does not support push options"1719msgstr "die Gegenseite unterstützt keine Push-Optionen"17201721#: sequencer.c:1741722msgid ""1723"after resolving the conflicts, mark the corrected paths\n"1724"with 'git add <paths>' or 'git rm <paths>'"1725msgstr ""1726"nach Auflösung der Konflikte, markieren Sie die korrigierten Pfade\n"1727"mit 'git add <Pfade>' oder 'git rm <Pfade>'"17281729#: sequencer.c:1771730msgid ""1731"after resolving the conflicts, mark the corrected paths\n"1732"with 'git add <paths>' or 'git rm <paths>'\n"1733"and commit the result with 'git commit'"1734msgstr ""1735"nach Auflösung der Konflikte, markieren Sie die korrigierten Pfade\n"1736"mit 'git add <Pfade>' oder 'git rm <Pfade>'und tragen Sie das Ergebnis mit\n"1737"'git commit' ein"17381739#: sequencer.c:190 sequencer.c:841 sequencer.c:9241740#, c-format1741msgid "Could not write to %s"1742msgstr "Konnte nicht nach %s schreiben"17431744#: sequencer.c:193 sequencer.c:843 sequencer.c:9281745#, c-format1746msgid "Error wrapping up %s."1747msgstr "Fehler beim Einpacken von %s."17481749#: sequencer.c:2081750msgid "Your local changes would be overwritten by cherry-pick."1751msgstr ""1752"Ihre lokalen Änderungen würden durch den Cherry-Pick überschrieben werden."17531754#: sequencer.c:2101755msgid "Your local changes would be overwritten by revert."1756msgstr "Ihre lokalen Änderungen würden durch den Revert überschrieben werden."17571758#: sequencer.c:2131759msgid "Commit your changes or stash them to proceed."1760msgstr ""1761"Committen Sie Ihre Änderungen oder benutzen Sie \"stash\", um fortzufahren."17621763#: sequencer.c:2281764#, c-format1765msgid "%s: fast-forward"1766msgstr "%s: Vorspulen"17671768#. TRANSLATORS: %s will be "revert" or "cherry-pick"1769#: sequencer.c:3031770#, c-format1771msgid "%s: Unable to write new index file"1772msgstr "%s: Konnte neue Index-Datei nicht schreiben"17731774#: sequencer.c:3211775msgid "Could not resolve HEAD commit\n"1776msgstr "Konnte Commit von HEAD nicht auflösen\n"17771778#: sequencer.c:3411779msgid "Unable to update cache tree\n"1780msgstr "Konnte Cache-Verzeichnis nicht aktualisieren\n"17811782#: sequencer.c:3931783#, c-format1784msgid "Could not parse commit %s\n"1785msgstr "Konnte Commit %s nicht parsen\n"17861787#: sequencer.c:3981788#, c-format1789msgid "Could not parse parent commit %s\n"1790msgstr "Konnte Eltern-Commit %s nicht parsen\n"17911792#: sequencer.c:4631793msgid "Your index file is unmerged."1794msgstr "Ihre Index-Datei ist nicht zusammengeführt."17951796#: sequencer.c:4821797#, c-format1798msgid "Commit %s is a merge but no -m option was given."1799msgstr "Commit %s ist ein Merge, aber die Option -m wurde nicht angegeben."18001801#: sequencer.c:4901802#, c-format1803msgid "Commit %s does not have parent %d"1804msgstr "Commit %s hat keinen Elternteil %d"18051806#: sequencer.c:4941807#, c-format1808msgid "Mainline was specified but commit %s is not a merge."1809msgstr "Hauptlinie wurde spezifiziert, aber Commit %s ist kein Merge."18101811#. TRANSLATORS: The first %s will be "revert" or1812#. "cherry-pick", the second %s a SHA11813#: sequencer.c:5071814#, c-format1815msgid "%s: cannot parse parent commit %s"1816msgstr "%s: kann Eltern-Commit %s nicht parsen"18171818#: sequencer.c:5111819#, c-format1820msgid "Cannot get commit message for %s"1821msgstr "Kann keine Commit-Beschreibung für %s bekommen"18221823#: sequencer.c:5971824#, c-format1825msgid "could not revert %s... %s"1826msgstr "Konnte \"revert\" nicht auf %s... (%s) ausführen"18271828#: sequencer.c:5981829#, c-format1830msgid "could not apply %s... %s"1831msgstr "Konnte %s... (%s) nicht anwenden"18321833#: sequencer.c:6331834msgid "empty commit set passed"1835msgstr "leere Menge von Commits übergeben"18361837#: sequencer.c:6411838#, c-format1839msgid "git %s: failed to read the index"1840msgstr "git %s: Fehler beim Lesen des Index"18411842#: sequencer.c:6451843#, c-format1844msgid "git %s: failed to refresh the index"1845msgstr "git %s: Fehler beim Aktualisieren des Index"18461847#: sequencer.c:7051848msgid "Cannot revert during another revert."1849msgstr "Kann Revert nicht während eines anderen Reverts ausführen."18501851#: sequencer.c:7061852msgid "Cannot revert during a cherry-pick."1853msgstr "Kann Revert nicht während eines Cherry-Picks ausführen."18541855#: sequencer.c:7091856msgid "Cannot cherry-pick during a revert."1857msgstr "Kann Cherry-Pick nicht während eines Reverts ausführen."18581859#: sequencer.c:7101860msgid "Cannot cherry-pick during another cherry-pick."1861msgstr "Kann Cherry-Pick nicht während eines anderen Cherry-Picks ausführen."18621863#: sequencer.c:7321864#, c-format1865msgid "Could not parse line %d."1866msgstr "Konnte Zeile %d nicht parsen."18671868#: sequencer.c:7371869msgid "No commits parsed."1870msgstr "Keine Commits geparst."18711872#: sequencer.c:7491873#, c-format1874msgid "Could not open %s"1875msgstr "Konnte %s nicht öffnen"18761877#: sequencer.c:7531878#, c-format1879msgid "Could not read %s."1880msgstr "Konnte %s nicht lesen."18811882#: sequencer.c:7601883#, c-format1884msgid "Unusable instruction sheet: %s"1885msgstr "Unbenutzbares Instruktionsblatt: %s"18861887#: sequencer.c:7901888#, c-format1889msgid "Invalid key: %s"1890msgstr "Ungültiger Schlüssel: %s"18911892#: sequencer.c:793 builtin/pull.c:50 builtin/pull.c:521893#, c-format1894msgid "Invalid value for %s: %s"1895msgstr "Ungültiger Wert für %s: %s"18961897#: sequencer.c:8031898#, c-format1899msgid "Malformed options sheet: %s"1900msgstr "Fehlerhaftes Optionsblatt: %s"19011902#: sequencer.c:8221903msgid "a cherry-pick or revert is already in progress"1904msgstr "\"cherry-pick\" oder \"revert\" ist bereits im Gang"19051906#: sequencer.c:8231907msgid "try \"git cherry-pick (--continue | --quit | --abort)\""1908msgstr "versuchen Sie \"git cherry-pick (--continue | --quit | --abort)\""19091910#: sequencer.c:8271911#, c-format1912msgid "Could not create sequencer directory %s"1913msgstr "Konnte \"sequencer\"-Verzeichnis %s nicht erstellen"19141915#: sequencer.c:862 sequencer.c:9981916msgid "no cherry-pick or revert in progress"1917msgstr "kein \"cherry-pick\" oder \"revert\" im Gang"19181919#: sequencer.c:8641920msgid "cannot resolve HEAD"1921msgstr "kann HEAD nicht auflösen"19221923#: sequencer.c:866 sequencer.c:9001924msgid "cannot abort from a branch yet to be born"1925msgstr "kann nicht abbrechen: bin auf einem Branch, der noch geboren wird"19261927#: sequencer.c:886 builtin/fetch.c:724 builtin/fetch.c:9701928#, c-format1929msgid "cannot open %s"1930msgstr "kann '%s' nicht öffnen"19311932#: sequencer.c:8881933#, c-format1934msgid "cannot read %s: %s"1935msgstr "Kann %s nicht lesen: %s"19361937#: sequencer.c:8891938msgid "unexpected end of file"1939msgstr "Unerwartetes Dateiende"19401941#: sequencer.c:8951942#, c-format1943msgid "stored pre-cherry-pick HEAD file '%s' is corrupt"1944msgstr "gespeicherte \"pre-cherry-pick\" HEAD Datei '%s' ist beschädigt"19451946#: sequencer.c:9211947#, c-format1948msgid "Could not format %s."1949msgstr "Konnte %s nicht formatieren."19501951#: sequencer.c:10661952#, c-format1953msgid "%s: can't cherry-pick a %s"1954msgstr "%s: %s kann nicht in \"cherry-pick\" benutzt werden"19551956#: sequencer.c:10691957#, c-format1958msgid "%s: bad revision"1959msgstr "%s: ungültiger Commit"19601961#: sequencer.c:11021962msgid "Can't revert as initial commit"1963msgstr "Kann nicht als allerersten Commit einen Revert ausführen."19641965#: setup.c:1601966#, c-format1967msgid ""1968"%s: no such path in the working tree.\n"1969"Use 'git <command> -- <path>...' to specify paths that do not exist locally."1970msgstr ""1971"%s: kein solcher Pfad im Arbeitsverzeichnis.\n"1972"Benutzen Sie 'git <Befehl> -- <Pfad>...' zur Angabe von Pfaden, die lokal\n"1973"nicht existieren."19741975#: setup.c:1731976#, c-format1977msgid ""1978"ambiguous argument '%s': unknown revision or path not in the working tree.\n"1979"Use '--' to separate paths from revisions, like this:\n"1980"'git <command> [<revision>...] -- [<file>...]'"1981msgstr ""1982"mehrdeutiges Argument '%s': unbekannter Commit oder Pfad existiert nicht\n"1983"im Arbeitsverzeichnis\n"1984"Benutzen Sie '--', um Pfade und Commits zu trennen, ähnlich wie:\n"1985"'git <Befehl> [<Commit>...] -- [<Datei>...]'"19861987#: setup.c:2231988#, c-format1989msgid ""1990"ambiguous argument '%s': both revision and filename\n"1991"Use '--' to separate paths from revisions, like this:\n"1992"'git <command> [<revision>...] -- [<file>...]'"1993msgstr ""1994"mehrdeutiges Argument '%s': sowohl Commit als auch Dateiname\n"1995"Benutzen Sie '--', um Pfade und Commits zu trennen, ähnlich wie:\n"1996"'git <Befehl> [<Commit>...] -- [<Datei>...]'"19971998#: setup.c:248 builtin/apply.c:3362 builtin/apply.c:3373 builtin/apply.c:34191999#, c-format2000msgid "failed to read %s"2001msgstr "Fehler beim Lesen von %s"20022003#: setup.c:4682004#, c-format2005msgid "Expected git repo version <= %d, found %d"2006msgstr "Erwartete Git-Repository-Version <= %d, %d gefunden"20072008#: setup.c:4762009msgid "unknown repository extensions found:"2010msgstr "Unbekannte Repository-Erweiterungen gefunden:"20112012#: setup.c:7622013#, c-format2014msgid "Not a git repository (or any of the parent directories): %s"2015msgstr "Kein Git-Repository (oder irgendein Elternverzeichnis): %s"20162017#: setup.c:764 setup.c:915 builtin/index-pack.c:16412018msgid "Cannot come back to cwd"2019msgstr "Kann nicht zurück zu Arbeitsverzeichnis wechseln"20202021#: setup.c:8452022msgid "Unable to read current working directory"2023msgstr "Konnte aktuelles Arbeitsverzeichnis nicht lesen."20242025#: setup.c:9202026#, c-format2027msgid ""2028"Not a git repository (or any parent up to mount point %s)\n"2029"Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."2030msgstr ""2031"Kein Git-Repository (oder irgendein Elternverzeichnis bis zum Einhängepunkt %s)\n"2032"Stoppe bei Dateisystemgrenze (GIT_DISCOVERY_ACROSS_FILESYSTEM nicht gesetzt)."20332034#: setup.c:9272035#, c-format2036msgid "Cannot change to '%s/..'"2037msgstr "Kann nicht in Verzeichnis '%s/..' wechseln"20382039#: setup.c:9892040#, c-format2041msgid ""2042"Problem with core.sharedRepository filemode value (0%.3o).\n"2043"The owner of files must always have read and write permissions."2044msgstr ""2045"Problem mit Wert für Dateimodus (0%.3o) von core.sharedRepository.\n"2046"Der Besitzer der Dateien muss immer Lese- und Schreibrechte haben."20472048#: sha1_file.c:10462049msgid "offset before end of packfile (broken .idx?)"2050msgstr "Offset vor Ende der Packdatei (fehlerhafte Indexdatei?)"20512052#: sha1_file.c:24342053#, c-format2054msgid "offset before start of pack index for %s (corrupt index?)"2055msgstr "Offset vor Beginn des Pack-Index für %s (beschädigter Index?)"20562057#: sha1_file.c:24382058#, c-format2059msgid "offset beyond end of pack index for %s (truncated index?)"2060msgstr "Offset hinter Ende des Pack-Index für %s (abgeschnittener Index?)"20612062#: sha1_name.c:4622063msgid ""2064"Git normally never creates a ref that ends with 40 hex characters\n"2065"because it will be ignored when you just specify 40-hex. These refs\n"2066"may be created by mistake. For example,\n"2067"\n"2068" git checkout -b $br $(git rev-parse ...)\n"2069"\n"2070"where \"$br\" is somehow empty and a 40-hex ref is created. Please\n"2071"examine these refs and maybe delete them. Turn this message off by\n"2072"running \"git config advice.objectNameWarning false\""2073msgstr ""2074"Git erzeugt normalerweise keine Referenzen die mit\n"2075"40 Hex-Zeichen enden, da diese ignoriert werden wenn\n"2076"Sie diese angeben. Diese Referenzen könnten aus Versehen\n"2077"erzeugt worden sein. Zum Beispiel,\n"2078"\n"2079" git checkout -b $br $(git rev-parse ...)\n"2080"\n"2081"wobei \"$br\" leer ist und eine 40-Hex-Referenz erzeugt\n"2082"wurde. Bitte prüfen Sie diese Referenzen und löschen\n"2083"Sie sie gegebenenfalls. Unterdrücken Sie diese Meldung\n"2084"indem Sie \"git config advice.objectNameWarning false\"\n"2085"ausführen."20862087#: submodule.c:64 submodule.c:982088msgid "Cannot change unmerged .gitmodules, resolve merge conflicts first"2089msgstr ""2090"Kann nicht zusammengeführte .gitmodules-Datei nicht ändern, lösen\n"2091"Sie zuerst die Konflikte auf"20922093#: submodule.c:68 submodule.c:1022094#, c-format2095msgid "Could not find section in .gitmodules where path=%s"2096msgstr "Konnte keine Sektion in .gitmodules mit Pfad \"%s\" finden"20972098#: submodule.c:762099#, c-format2100msgid "Could not update .gitmodules entry %s"2101msgstr "Konnte Eintrag '%s' in .gitmodules nicht aktualisieren"21022103#: submodule.c:1092104#, c-format2105msgid "Could not remove .gitmodules entry for %s"2106msgstr "Konnte Eintrag '%s' nicht aus .gitmodules entfernen"21072108#: submodule.c:1202109msgid "staging updated .gitmodules failed"2110msgstr "Konnte aktualisierte .gitmodules-Datei nicht zum Commit vormerken"21112112#: submodule.c:1772113msgid "negative values not allowed for submodule.fetchJobs"2114msgstr "Negative Werte für submodule.fetchJobs nicht erlaubt"21152116#: submodule-config.c:3582117#, c-format2118msgid "invalid value for %s"2119msgstr "Ungültiger Wert für %s"21202121#: trailer.c:2372122#, c-format2123msgid "running trailer command '%s' failed"2124msgstr "Ausführen des Anhang-Befehls '%s' fehlgeschlagen"21252126#: trailer.c:492 trailer.c:496 trailer.c:500 trailer.c:554 trailer.c:5582127#: trailer.c:5622128#, c-format2129msgid "unknown value '%s' for key '%s'"2130msgstr "unbekannter Wert '%s' für Schlüssel %s"21312132#: trailer.c:544 trailer.c:549 builtin/remote.c:2892133#, c-format2134msgid "more than one %s"2135msgstr "mehr als ein %s"21362137#: trailer.c:5822138#, c-format2139msgid "empty trailer token in trailer '%.*s'"2140msgstr "leerer Anhang-Token in Anhang '%.*s'"21412142#: trailer.c:7022143#, c-format2144msgid "could not read input file '%s'"2145msgstr "Konnte Eingabe-Datei '%s' nicht lesen"21462147#: trailer.c:7052148msgid "could not read from stdin"2149msgstr "konnte nicht von der Standard-Eingabe lesen"21502151#: trailer.c:857 builtin/am.c:422152#, c-format2153msgid "could not stat %s"2154msgstr "Konnte '%s' nicht lesen"21552156#: trailer.c:8592157#, c-format2158msgid "file %s is not a regular file"2159msgstr "Datei '%s' ist keine reguläre Datei"21602161#: trailer.c:8612162#, c-format2163msgid "file %s is not writable by user"2164msgstr "Datei %s ist vom Benutzer nicht beschreibbar."21652166#: trailer.c:8732167msgid "could not open temporary file"2168msgstr "konnte temporäre Datei '%s' nicht öffnen"21692170#: trailer.c:9122171#, c-format2172msgid "could not rename temporary file to %s"2173msgstr "konnte temporäre Datei nicht zu %s umbenennen"21742175#: transport.c:622176#, c-format2177msgid "Would set upstream of '%s' to '%s' of '%s'\n"2178msgstr "Würde Upstream-Branch von '%s' zu '%s' von '%s' setzen\n"21792180#: transport.c:1512181#, c-format2182msgid "transport: invalid depth option '%s'"2183msgstr "transport: ungültige --depth Option '%s'"21842185#: transport.c:7712186#, c-format2187msgid ""2188"The following submodule paths contain changes that can\n"2189"not be found on any remote:\n"2190msgstr ""2191"Die folgenden Submodul-Pfade enthalten Änderungen, die in keinem\n"2192"Remote-Repository gefunden wurden:\n"21932194#: transport.c:7752195#, c-format2196msgid ""2197"\n"2198"Please try\n"2199"\n"2200"\tgit push --recurse-submodules=on-demand\n"2201"\n"2202"or cd to the path and use\n"2203"\n"2204"\tgit push\n"2205"\n"2206"to push them to a remote.\n"2207"\n"2208msgstr ""2209"\n"2210"Bitte versuchen Sie\n"2211"\n"2212"\tgit push --recurse-submodules=on-demand\n"2213"\n"2214"oder wechseln Sie in das Verzeichnis und benutzen Sie\n"2215"\n"2216"\tgit push\n"2217"\n"2218"zum Versenden zu einem Remote-Repository.\n"2219"\n"22202221#: transport.c:7832222msgid "Aborting."2223msgstr "Abbruch."22242225#: transport-helper.c:10412226#, c-format2227msgid "Could not read ref %s"2228msgstr "Konnte Referenz %s nicht lesen."22292230#: unpack-trees.c:642231#, c-format2232msgid ""2233"Your local changes to the following files would be overwritten by checkout:\n"2234"%%sPlease commit your changes or stash them before you switch branches."2235msgstr ""2236"Ihre lokalen Änderungen in den folgenden Dateien würden beim Auschecken\n"2237"überschrieben werden:\n"2238"%%sBitte committen oder stashen Sie Ihre Änderungen, bevor Sie Branches\n"2239"wechseln."22402241#: unpack-trees.c:662242#, c-format2243msgid ""2244"Your local changes to the following files would be overwritten by checkout:\n"2245"%%s"2246msgstr ""2247"Ihre lokalen Änderungen in den folgenden Dateien würden beim Auschecken\n"2248"überschrieben werden:\n"2249"%%s"22502251#: unpack-trees.c:692252#, c-format2253msgid ""2254"Your local changes to the following files would be overwritten by merge:\n"2255"%%sPlease commit your changes or stash them before you merge."2256msgstr ""2257"Ihre lokalen Änderungen in den folgenden Dateien würden durch den Merge\n"2258"überschrieben werden:\n"2259"%%sBitte committen oder stashen Sie Ihre Änderungen, bevor sie mergen."22602261#: unpack-trees.c:712262#, c-format2263msgid ""2264"Your local changes to the following files would be overwritten by merge:\n"2265"%%s"2266msgstr ""2267"Ihre lokalen Änderungen in den folgenden Dateien würden durch den Merge\n"2268"überschrieben werden:\n"2269"%%s"22702271#: unpack-trees.c:742272#, c-format2273msgid ""2274"Your local changes to the following files would be overwritten by %s:\n"2275"%%sPlease commit your changes or stash them before you %s."2276msgstr ""2277"Ihre lokalen Änderungen in den folgenden Dateien würden durch %s\n"2278"überschrieben werden:\n"2279"%%sBitte committen oder stashen Sie Ihre Änderungen, bevor Sie %s ausführen."22802281#: unpack-trees.c:762282#, c-format2283msgid ""2284"Your local changes to the following files would be overwritten by %s:\n"2285"%%s"2286msgstr ""2287"Ihre lokalen Änderungen würden durch %s überschrieben werden.\n"2288"%%s"22892290#: unpack-trees.c:812291#, c-format2292msgid ""2293"Updating the following directories would lose untracked files in it:\n"2294"%s"2295msgstr ""2296"Durch die Aktualisierung der folgenden Verzeichnisse würden unversionierte\n"2297"Dateien in diesen Verzeichnissen verloren gehen:\n"2298"%s"22992300#: unpack-trees.c:852301#, c-format2302msgid ""2303"The following untracked working tree files would be removed by checkout:\n"2304"%%sPlease move or remove them before you switch branches."2305msgstr ""2306"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2307"den Checkout entfernt werden:\n"2308"%%sBitte verschieben oder entfernen Sie diese, bevor Sie Branches wechseln."23092310#: unpack-trees.c:872311#, c-format2312msgid ""2313"The following untracked working tree files would be removed by checkout:\n"2314"%%s"2315msgstr ""2316"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "2317"den\n"2318"Checkout entfernt werden:\n"2319"%%s"23202321#: unpack-trees.c:902322#, c-format2323msgid ""2324"The following untracked working tree files would be removed by merge:\n"2325"%%sPlease move or remove them before you merge."2326msgstr ""2327"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2328"den Merge entfernt werden:\n"2329"%%sBitte verschieben oder entfernen Sie diese, bevor sie mergen."23302331#: unpack-trees.c:922332#, c-format2333msgid ""2334"The following untracked working tree files would be removed by merge:\n"2335"%%s"2336msgstr ""2337"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "2338"den\n"2339"Merge entfernt werden:\n"2340"%%s"23412342#: unpack-trees.c:952343#, c-format2344msgid ""2345"The following untracked working tree files would be removed by %s:\n"2346"%%sPlease move or remove them before you %s."2347msgstr ""2348"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2349"den %s entfernt werden:\n"2350"%%sBitte verschieben oder entfernen Sie diese, bevor sie %s ausführen."23512352#: unpack-trees.c:972353#, c-format2354msgid ""2355"The following untracked working tree files would be removed by %s:\n"2356"%%s"2357msgstr ""2358"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2359"den %s entfernt werden:\n"2360"%%s"23612362#: unpack-trees.c:1022363#, c-format2364msgid ""2365"The following untracked working tree files would be overwritten by "2366"checkout:\n"2367"%%sPlease move or remove them before you switch branches."2368msgstr ""2369"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2370"den Checkout überschrieben werden:\n"2371"%%sBitte verschieben oder entfernen Sie diese, bevor Sie Branches wechseln."23722373#: unpack-trees.c:1042374#, c-format2375msgid ""2376"The following untracked working tree files would be overwritten by "2377"checkout:\n"2378"%%s"2379msgstr ""2380"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "2381"den\n"2382"Checkout überschrieben werden:\n"2383"%%s"23842385#: unpack-trees.c:1072386#, c-format2387msgid ""2388"The following untracked working tree files would be overwritten by merge:\n"2389"%%sPlease move or remove them before you merge."2390msgstr ""2391"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2392"den Merge überschrieben werden:\n"2393"%%sBitte verschieben oder entfernen Sie diese, bevor Sie mergen."23942395#: unpack-trees.c:1092396#, c-format2397msgid ""2398"The following untracked working tree files would be overwritten by merge:\n"2399"%%s"2400msgstr ""2401"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2402"den Merge überschrieben werden:\n"2403"%%s"24042405#: unpack-trees.c:1122406#, c-format2407msgid ""2408"The following untracked working tree files would be overwritten by %s:\n"2409"%%sPlease move or remove them before you %s."2410msgstr ""2411"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch\n"2412"den %s überschrieben werden:\n"2413"%%sBitte verschieben oder entfernen Sie diese, bevor sie %s ausführen."24142415#: unpack-trees.c:1142416#, c-format2417msgid ""2418"The following untracked working tree files would be overwritten by %s:\n"2419"%%s"2420msgstr ""2421"Die folgenden unversionierten Dateien im Arbeitsverzeichnis würden durch "2422"den\n"2423"%s überschrieben werden:\n"2424"%%s"24252426#: unpack-trees.c:1212427#, c-format2428msgid "Entry '%s' overlaps with '%s'. Cannot bind."2429msgstr "Eintrag '%s' überschneidet sich mit '%s'. Kann nicht verbinden."24302431#: unpack-trees.c:1242432#, c-format2433msgid ""2434"Cannot update sparse checkout: the following entries are not up-to-date:\n"2435"%s"2436msgstr ""2437"Kann partiellen Checkout nicht aktualisieren: die folgenden Einträge sind "2438"nicht\n"2439"aktuell:\n"2440"%s"24412442#: unpack-trees.c:1262443#, c-format2444msgid ""2445"The following Working tree files would be overwritten by sparse checkout "2446"update:\n"2447"%s"2448msgstr ""2449"Die folgenden Dateien im Arbeitsbereich würden durch die Aktualisierung\n"2450"des partiellen Checkouts überschrieben werden:\n"2451"%s"24522453#: unpack-trees.c:1282454#, c-format2455msgid ""2456"The following Working tree files would be removed by sparse checkout "2457"update:\n"2458"%s"2459msgstr ""2460"Die folgenden Dateien im Arbeitsbereich würden durch die Aktualisierung\n"2461"des partiellen Checkouts entfernt werden:\n"2462"%s"24632464#: unpack-trees.c:2052465#, c-format2466msgid "Aborting\n"2467msgstr "Abbruch\n"24682469#: unpack-trees.c:2372470msgid "Checking out files"2471msgstr "Checke Dateien aus"24722473#: urlmatch.c:1202474msgid "invalid URL scheme name or missing '://' suffix"2475msgstr "Ungültiges URL-Schema oder Suffix '://' fehlt"24762477#: urlmatch.c:144 urlmatch.c:297 urlmatch.c:3562478#, c-format2479msgid "invalid %XX escape sequence"2480msgstr "ungültige Escape-Sequenz %XX"24812482#: urlmatch.c:1722483msgid "missing host and scheme is not 'file:'"2484msgstr "fehlender Host und Schema ist nicht 'file:'"24852486#: urlmatch.c:1892487msgid "a 'file:' URL may not have a port number"2488msgstr "eine 'file:' URL darf keine Portnummer enthalten"24892490#: urlmatch.c:1992491msgid "invalid characters in host name"2492msgstr "Hostname enthält ungültige Zeichen"24932494#: urlmatch.c:244 urlmatch.c:2552495msgid "invalid port number"2496msgstr "ungültige Portnummer"24972498#: urlmatch.c:3222499msgid "invalid '..' path segment"2500msgstr "ungültiges '..' Pfadsegment"25012502#: worktree.c:2822503#, c-format2504msgid "failed to read '%s'"2505msgstr "Fehler beim Lesen von '%s'"25062507#: wrapper.c:222 wrapper.c:3922508#, c-format2509msgid "could not open '%s' for reading and writing"2510msgstr "Konnte '%s' nicht zum Lesen und Schreiben öffnen."25112512#: wrapper.c:224 wrapper.c:394 builtin/am.c:7782513#, c-format2514msgid "could not open '%s' for writing"2515msgstr "Konnte '%s' nicht zum Schreiben öffnen."25162517#: wrapper.c:226 wrapper.c:396 builtin/am.c:324 builtin/am.c:7712518#: builtin/am.c:859 builtin/commit.c:1712 builtin/merge.c:10292519#: builtin/pull.c:4072520#, c-format2521msgid "could not open '%s' for reading"2522msgstr "Konnte '%s' nicht zum Lesen öffnen."25232524#: wrapper.c:605 wrapper.c:6262525#, c-format2526msgid "unable to access '%s'"2527msgstr "konnte nicht auf '%s' zugreifen"25282529#: wrapper.c:6342530msgid "unable to get current working directory"2531msgstr "Konnte aktuelles Arbeitsverzeichnis nicht bekommen."25322533#: wrapper.c:6582534#, c-format2535msgid "could not write to %s"2536msgstr "Konnte nicht nach '%s' schreiben."25372538#: wrapper.c:6602539#, c-format2540msgid "could not close %s"2541msgstr "Konnte '%s' nicht schließen."25422543#: wt-status.c:1502544msgid "Unmerged paths:"2545msgstr "Nicht zusammengeführte Pfade:"25462547#: wt-status.c:177 wt-status.c:2042548#, c-format2549msgid " (use \"git reset %s <file>...\" to unstage)"2550msgstr ""2551" (benutzen Sie \"git reset %s <Datei>...\" zum Entfernen aus der Staging-"2552"Area)"25532554#: wt-status.c:179 wt-status.c:2062555msgid " (use \"git rm --cached <file>...\" to unstage)"2556msgstr ""2557" (benutzen Sie \"git rm --cached <Datei>...\" zum Entfernen aus der Staging-"2558"Area)"25592560#: wt-status.c:1832561msgid " (use \"git add <file>...\" to mark resolution)"2562msgstr ""2563" (benutzen Sie \"git add/rm <Datei>...\", um die Auflösung zu markieren)"25642565#: wt-status.c:185 wt-status.c:1892566msgid " (use \"git add/rm <file>...\" as appropriate to mark resolution)"2567msgstr ""2568" (benutzen Sie \"git add/rm <Datei>...\", um die Auflösung entsprechend zu "2569"markieren)"25702571#: wt-status.c:1872572msgid " (use \"git rm <file>...\" to mark resolution)"2573msgstr ""2574" (benutzen Sie \"git add/rm <Datei>...\", um die Auflösung zu markieren)"25752576#: wt-status.c:198 wt-status.c:8822577msgid "Changes to be committed:"2578msgstr "zum Commit vorgemerkte Änderungen:"25792580#: wt-status.c:216 wt-status.c:8912581msgid "Changes not staged for commit:"2582msgstr "Änderungen, die nicht zum Commit vorgemerkt sind:"25832584#: wt-status.c:2202585msgid " (use \"git add <file>...\" to update what will be committed)"2586msgstr ""2587" (benutzen Sie \"git add <Datei>...\", um die Änderungen zum Commit "2588"vorzumerken)"25892590#: wt-status.c:2222591msgid " (use \"git add/rm <file>...\" to update what will be committed)"2592msgstr ""2593" (benutzen Sie \"git add/rm <Datei>...\", um die Änderungen zum Commit "2594"vorzumerken)"25952596#: wt-status.c:2232597msgid ""2598" (use \"git checkout -- <file>...\" to discard changes in working directory)"2599msgstr ""2600" (benutzen Sie \"git checkout -- <Datei>...\", um die Änderungen im "2601"Arbeitsverzeichnis zu verwerfen)"26022603#: wt-status.c:2252604msgid " (commit or discard the untracked or modified content in submodules)"2605msgstr ""2606" (committen oder verwerfen Sie den unversionierten oder geänderten Inhalt "2607"in den Submodulen)"26082609#: wt-status.c:2372610#, c-format2611msgid " (use \"git %s <file>...\" to include in what will be committed)"2612msgstr ""2613" (benutzen Sie \"git %s <Datei>...\", um die Änderungen zum Commit "2614"vorzumerken)"26152616#: wt-status.c:2522617msgid "both deleted:"2618msgstr "beide gelöscht:"26192620#: wt-status.c:2542621msgid "added by us:"2622msgstr "von uns hinzugefügt:"26232624#: wt-status.c:2562625msgid "deleted by them:"2626msgstr "von denen gelöscht:"26272628#: wt-status.c:2582629msgid "added by them:"2630msgstr "von denen hinzugefügt:"26312632#: wt-status.c:2602633msgid "deleted by us:"2634msgstr "von uns gelöscht:"26352636#: wt-status.c:2622637msgid "both added:"2638msgstr "von beiden hinzugefügt:"26392640#: wt-status.c:2642641msgid "both modified:"2642msgstr "von beiden geändert:"26432644#: wt-status.c:2742645msgid "new file:"2646msgstr "neue Datei:"26472648#: wt-status.c:2762649msgid "copied:"2650msgstr "kopiert:"26512652#: wt-status.c:2782653msgid "deleted:"2654msgstr "gelöscht:"26552656#: wt-status.c:2802657msgid "modified:"2658msgstr "geändert:"26592660#: wt-status.c:2822661msgid "renamed:"2662msgstr "umbenannt:"26632664#: wt-status.c:2842665msgid "typechange:"2666msgstr "Typänderung:"26672668#: wt-status.c:2862669msgid "unknown:"2670msgstr "unbekannt:"26712672#: wt-status.c:2882673msgid "unmerged:"2674msgstr "nicht gemerged:"26752676#: wt-status.c:3702677msgid "new commits, "2678msgstr "neue Commits, "26792680#: wt-status.c:3722681msgid "modified content, "2682msgstr "geänderter Inhalt, "26832684#: wt-status.c:3742685msgid "untracked content, "2686msgstr "unversionierter Inhalt, "26872688#: wt-status.c:7562689msgid "Submodules changed but not updated:"2690msgstr "Submodule geändert, aber nicht aktualisiert:"26912692#: wt-status.c:7582693msgid "Submodule changes to be committed:"2694msgstr "Änderungen in Submodul zum Committen:"26952696#: wt-status.c:8392697msgid ""2698"Do not touch the line above.\n"2699"Everything below will be removed."2700msgstr ""2701"Ändern Sie nicht die obige Zeile.\n"2702"Alles unterhalb von ihr wird entfernt."27032704#: wt-status.c:9502705msgid "You have unmerged paths."2706msgstr "Sie haben nicht zusammengeführte Pfade."27072708#: wt-status.c:9532709msgid " (fix conflicts and run \"git commit\")"2710msgstr " (beheben Sie die Konflikte und führen Sie \"git commit\" aus)"27112712#: wt-status.c:9552713msgid " (use \"git merge --abort\" to abort the merge)"2714msgstr " (benutzen Sie \"git merge --abort\", um den Merge abzubrechen)"27152716#: wt-status.c:9602717msgid "All conflicts fixed but you are still merging."2718msgstr "Alle Konflikte sind behoben, aber Sie sind immer noch beim Merge."27192720#: wt-status.c:9632721msgid " (use \"git commit\" to conclude merge)"2722msgstr " (benutzen Sie \"git commit\", um den Merge abzuschließen)"27232724#: wt-status.c:9732725msgid "You are in the middle of an am session."2726msgstr "Eine \"am\"-Sitzung ist im Gange."27272728#: wt-status.c:9762729msgid "The current patch is empty."2730msgstr "Der aktuelle Patch ist leer."27312732#: wt-status.c:9802733msgid " (fix conflicts and then run \"git am --continue\")"2734msgstr ""2735" (beheben Sie die Konflikte und führen Sie dann \"git am --continue\" aus)"27362737#: wt-status.c:9822738msgid " (use \"git am --skip\" to skip this patch)"2739msgstr " (benutzen Sie \"git am --skip\", um diesen Patch auszulassen)"27402741#: wt-status.c:9842742msgid " (use \"git am --abort\" to restore the original branch)"2743msgstr ""2744" (benutzen Sie \"git am --abort\", um den ursprünglichen Branch "2745"wiederherzustellen)"27462747#: wt-status.c:11092748msgid "No commands done."2749msgstr "Keine Befehle ausgeführt."27502751#: wt-status.c:11122752#, c-format2753msgid "Last command done (%d command done):"2754msgid_plural "Last commands done (%d commands done):"2755msgstr[0] "Zuletzt ausgeführter Befehl (%d Befehl ausgeführt):"2756msgstr[1] "Zuletzt ausgeführte Befehle (%d Befehle ausgeführt):"27572758#: wt-status.c:11232759#, c-format2760msgid " (see more in file %s)"2761msgstr " (mehr Informationen in Datei %s)"27622763#: wt-status.c:11282764msgid "No commands remaining."2765msgstr "Keine Befehle verbleibend."27662767#: wt-status.c:11312768#, c-format2769msgid "Next command to do (%d remaining command):"2770msgid_plural "Next commands to do (%d remaining commands):"2771msgstr[0] "Nächster auszuführender Befehl (%d Befehle verbleibend):"2772msgstr[1] "Nächste auszuführende Befehle (%d Befehle verbleibend):"27732774#: wt-status.c:11392775msgid " (use \"git rebase --edit-todo\" to view and edit)"2776msgstr " (benutzen Sie \"git rebase --edit-todo\" zum Ansehen und Bearbeiten)"27772778#: wt-status.c:11522779#, c-format2780msgid "You are currently rebasing branch '%s' on '%s'."2781msgstr "Sie sind gerade beim Rebase von Branch '%s' auf '%s'."27822783#: wt-status.c:11572784msgid "You are currently rebasing."2785msgstr "Sie sind gerade beim Rebase."27862787#: wt-status.c:11712788msgid " (fix conflicts and then run \"git rebase --continue\")"2789msgstr ""2790" (beheben Sie die Konflikte und führen Sie dann \"git rebase --continue\" "2791"aus)"27922793#: wt-status.c:11732794msgid " (use \"git rebase --skip\" to skip this patch)"2795msgstr " (benutzen Sie \"git rebase --skip\", um diesen Patch auszulassen)"27962797#: wt-status.c:11752798msgid " (use \"git rebase --abort\" to check out the original branch)"2799msgstr ""2800" (benutzen Sie \"git rebase --abort\", um den ursprünglichen Branch "2801"auszuchecken)"28022803#: wt-status.c:11812804msgid " (all conflicts fixed: run \"git rebase --continue\")"2805msgstr " (alle Konflikte behoben: führen Sie \"git rebase --continue\" aus)"28062807#: wt-status.c:11852808#, c-format2809msgid ""2810"You are currently splitting a commit while rebasing branch '%s' on '%s'."2811msgstr ""2812"Sie teilen gerade einen Commit auf, während ein Rebase von Branch '%s' auf "2813"'%s' im Gange ist."28142815#: wt-status.c:11902816msgid "You are currently splitting a commit during a rebase."2817msgstr "Sie teilen gerade einen Commit während eines Rebase auf."28182819#: wt-status.c:11932820msgid " (Once your working directory is clean, run \"git rebase --continue\")"2821msgstr ""2822" (Sobald Ihr Arbeitsverzeichnis unverändert ist, führen Sie \"git rebase --"2823"continue\" aus)"28242825#: wt-status.c:11972826#, c-format2827msgid "You are currently editing a commit while rebasing branch '%s' on '%s'."2828msgstr ""2829"Sie editieren gerade einen Commit während eines Rebase von Branch '%s' auf "2830"'%s'."28312832#: wt-status.c:12022833msgid "You are currently editing a commit during a rebase."2834msgstr "Sie editieren gerade einen Commit während eines Rebase."28352836#: wt-status.c:12052837msgid " (use \"git commit --amend\" to amend the current commit)"2838msgstr ""2839" (benutzen Sie \"git commit --amend\", um den aktuellen Commit "2840"nachzubessern)"28412842#: wt-status.c:12072843msgid ""2844" (use \"git rebase --continue\" once you are satisfied with your changes)"2845msgstr ""2846" (benutzen Sie \"git rebase --continue\" sobald Ihre Änderungen "2847"abgeschlossen sind)"28482849#: wt-status.c:12172850#, c-format2851msgid "You are currently cherry-picking commit %s."2852msgstr "Sie führen gerade \"cherry-pick\" von Commit %s aus."28532854#: wt-status.c:12222855msgid " (fix conflicts and run \"git cherry-pick --continue\")"2856msgstr ""2857" (beheben Sie die Konflikte und führen Sie dann \"git cherry-pick --continue"2858"\" aus)"28592860#: wt-status.c:12252861msgid " (all conflicts fixed: run \"git cherry-pick --continue\")"2862msgstr ""2863" (alle Konflikte behoben: führen Sie \"git cherry-pick --continue\" aus)"28642865#: wt-status.c:12272866msgid " (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"2867msgstr ""2868" (benutzen Sie \"git cherry-pick --abort\", um die Cherry-Pick-Operation "2869"abzubrechen)"28702871#: wt-status.c:12362872#, c-format2873msgid "You are currently reverting commit %s."2874msgstr "Sie sind gerade an einem Revert von Commit '%s'."28752876#: wt-status.c:12412877msgid " (fix conflicts and run \"git revert --continue\")"2878msgstr ""2879" (beheben Sie die Konflikte und führen Sie dann \"git revert --continue\" "2880"aus)"28812882#: wt-status.c:12442883msgid " (all conflicts fixed: run \"git revert --continue\")"2884msgstr " (alle Konflikte behoben: führen Sie \"git revert --continue\" aus)"28852886#: wt-status.c:12462887msgid " (use \"git revert --abort\" to cancel the revert operation)"2888msgstr ""2889" (benutzen Sie \"git revert --abort\", um die Revert-Operation abzubrechen)"28902891#: wt-status.c:12572892#, c-format2893msgid "You are currently bisecting, started from branch '%s'."2894msgstr "Sie sind gerade bei einer binären Suche, gestartet von Branch '%s'."28952896#: wt-status.c:12612897msgid "You are currently bisecting."2898msgstr "Sie sind gerade bei einer binären Suche."28992900#: wt-status.c:12642901msgid " (use \"git bisect reset\" to get back to the original branch)"2902msgstr ""2903" (benutzen Sie \"git bisect reset\", um zum ursprünglichen Branch "2904"zurückzukehren)"29052906#: wt-status.c:14642907msgid "On branch "2908msgstr "Auf Branch "29092910#: wt-status.c:14702911msgid "interactive rebase in progress; onto "2912msgstr "interaktives Rebase im Gange; auf "29132914#: wt-status.c:14722915msgid "rebase in progress; onto "2916msgstr "Rebase im Gange; auf "29172918#: wt-status.c:14772919msgid "HEAD detached at "2920msgstr "HEAD losgelöst bei "29212922#: wt-status.c:14792923msgid "HEAD detached from "2924msgstr "HEAD losgelöst von "29252926#: wt-status.c:14822927msgid "Not currently on any branch."2928msgstr "Im Moment auf keinem Branch."29292930#: wt-status.c:15002931msgid "Initial commit"2932msgstr "Initialer Commit"29332934#: wt-status.c:15142935msgid "Untracked files"2936msgstr "Unversionierte Dateien"29372938#: wt-status.c:15162939msgid "Ignored files"2940msgstr "Ignorierte Dateien"29412942#: wt-status.c:15202943#, c-format2944msgid ""2945"It took %.2f seconds to enumerate untracked files. 'status -uno'\n"2946"may speed it up, but you have to be careful not to forget to add\n"2947"new files yourself (see 'git help status')."2948msgstr ""2949"Es dauerte %.2f Sekunden die unversionierten Dateien zu bestimmen.\n"2950"'status -uno' könnte das beschleunigen, aber Sie müssen darauf achten,\n"2951"neue Dateien selbstständig hinzuzufügen (siehe 'git help status')."29522953#: wt-status.c:15262954#, c-format2955msgid "Untracked files not listed%s"2956msgstr "Unversionierte Dateien nicht aufgelistet%s"29572958#: wt-status.c:15282959msgid " (use -u option to show untracked files)"2960msgstr " (benutzen Sie die Option -u, um unversionierte Dateien anzuzeigen)"29612962#: wt-status.c:15342963msgid "No changes"2964msgstr "Keine Änderungen"29652966#: wt-status.c:15392967#, c-format2968msgid "no changes added to commit (use \"git add\" and/or \"git commit -a\")\n"2969msgstr ""2970"keine Änderungen zum Commit vorgemerkt (benutzen Sie \"git add\" und/oder "2971"\"git commit -a\")\n"29722973#: wt-status.c:15422974#, c-format2975msgid "no changes added to commit\n"2976msgstr "keine Änderungen zum Commit vorgemerkt\n"29772978#: wt-status.c:15452979#, c-format2980msgid ""2981"nothing added to commit but untracked files present (use \"git add\" to "2982"track)\n"2983msgstr ""2984"nichts zum Commit vorgemerkt, aber es gibt unversionierte Dateien (benutzen "2985"Sie \"git add\" zum Versionieren)\n"29862987#: wt-status.c:15482988#, c-format2989msgid "nothing added to commit but untracked files present\n"2990msgstr "nichts zum Commit vorgemerkt, aber es gibt unversionierte Dateien\n"29912992#: wt-status.c:15512993#, c-format2994msgid "nothing to commit (create/copy files and use \"git add\" to track)\n"2995msgstr ""2996"nichts zu committen (Erstellen/Kopieren Sie Dateien und benutzen Sie \"git "2997"add\" zum Versionieren)\n"29982999#: wt-status.c:1554 wt-status.c:15593000#, c-format3001msgid "nothing to commit\n"3002msgstr "nichts zu committen\n"30033004#: wt-status.c:15573005#, c-format3006msgid "nothing to commit (use -u to show untracked files)\n"3007msgstr ""3008"nichts zu committen (benutzen Sie die Option -u, um unversionierte Dateien "3009"anzuzeigen)\n"30103011#: wt-status.c:15613012#, c-format3013msgid "nothing to commit, working tree clean\n"3014msgstr "nichts zu committen, Arbeitsverzeichnis unverändert\n"30153016#: wt-status.c:16683017msgid "Initial commit on "3018msgstr "Initialer Commit auf "30193020#: wt-status.c:16723021msgid "HEAD (no branch)"3022msgstr "HEAD (kein Branch)"30233024#: wt-status.c:17013025msgid "gone"3026msgstr "entfernt"30273028#: wt-status.c:1703 wt-status.c:17113029msgid "behind "3030msgstr "hinterher "30313032#: wt-status.c:1706 wt-status.c:17093033msgid "ahead "3034msgstr "voraus "30353036#: compat/precompose_utf8.c:57 builtin/clone.c:4153037#, c-format3038msgid "failed to unlink '%s'"3039msgstr "Konnte '%s' nicht entfernen."30403041#: builtin/add.c:223042msgid "git add [<options>] [--] <pathspec>..."3043msgstr "git add [<Optionen>] [--] <Pfadspezifikation>..."30443045#: builtin/add.c:653046#, c-format3047msgid "unexpected diff status %c"3048msgstr "unerwarteter Differenz-Status %c"30493050#: builtin/add.c:71 builtin/commit.c:2813051msgid "updating files failed"3052msgstr "Aktualisierung der Dateien fehlgeschlagen"30533054#: builtin/add.c:813055#, c-format3056msgid "remove '%s'\n"3057msgstr "lösche '%s'\n"30583059#: builtin/add.c:1363060msgid "Unstaged changes after refreshing the index:"3061msgstr ""3062"Nicht zum Commit vorgemerkte Änderungen nach Aktualisierung der Staging-Area:"30633064#: builtin/add.c:196 builtin/rev-parse.c:8113065msgid "Could not read the index"3066msgstr "Konnte den Index nicht lesen"30673068#: builtin/add.c:2073069#, c-format3070msgid "Could not open '%s' for writing."3071msgstr "Konnte '%s' nicht zum Schreiben öffnen."30723073#: builtin/add.c:2113074msgid "Could not write patch"3075msgstr "Konnte Patch nicht schreiben"30763077#: builtin/add.c:2143078msgid "editing patch failed"3079msgstr "Bearbeitung des Patches fehlgeschlagen"30803081#: builtin/add.c:2173082#, c-format3083msgid "Could not stat '%s'"3084msgstr "Konnte Verzeichnis '%s' nicht lesen"30853086#: builtin/add.c:2193087msgid "Empty patch. Aborted."3088msgstr "Leerer Patch. Abgebrochen."30893090#: builtin/add.c:2243091#, c-format3092msgid "Could not apply '%s'"3093msgstr "Konnte '%s' nicht anwenden."30943095#: builtin/add.c:2343096msgid "The following paths are ignored by one of your .gitignore files:\n"3097msgstr ""3098"Die folgenden Pfade werden durch eine Ihrer \".gitignore\" Dateien "3099"ignoriert:\n"31003101#: builtin/add.c:253 builtin/clean.c:870 builtin/fetch.c:113 builtin/mv.c:1113102#: builtin/prune-packed.c:55 builtin/pull.c:197 builtin/push.c:5213103#: builtin/remote.c:1327 builtin/rm.c:268 builtin/send-pack.c:1623104msgid "dry run"3105msgstr "Probelauf"31063107#: builtin/add.c:254 builtin/apply.c:4854 builtin/check-ignore.c:193108#: builtin/commit.c:1334 builtin/count-objects.c:85 builtin/fsck.c:5933109#: builtin/log.c:1852 builtin/mv.c:110 builtin/read-tree.c:1143110msgid "be verbose"3111msgstr "erweiterte Ausgaben"31123113#: builtin/add.c:2563114msgid "interactive picking"3115msgstr "interaktives Auswählen"31163117#: builtin/add.c:257 builtin/checkout.c:1157 builtin/reset.c:2863118msgid "select hunks interactively"3119msgstr "Blöcke interaktiv auswählen"31203121#: builtin/add.c:2583122msgid "edit current diff and apply"3123msgstr "aktuelle Unterschiede editieren und anwenden"31243125#: builtin/add.c:2593126msgid "allow adding otherwise ignored files"3127msgstr "das Hinzufügen andernfalls ignorierter Dateien erlauben"31283129#: builtin/add.c:2603130msgid "update tracked files"3131msgstr "versionierte Dateien aktualisieren"31323133#: builtin/add.c:2613134msgid "record only the fact that the path will be added later"3135msgstr "nur speichern, dass der Pfad später hinzugefügt werden soll"31363137#: builtin/add.c:2623138msgid "add changes from all tracked and untracked files"3139msgstr ""3140"Änderungen von allen versionierten und unversionierten Dateien hinzufügen"31413142#: builtin/add.c:2653143msgid "ignore paths removed in the working tree (same as --no-all)"3144msgstr "gelöschte Pfade im Arbeitsverzeichnis ignorieren (genau wie --no-all)"31453146#: builtin/add.c:2673147msgid "don't add, only refresh the index"3148msgstr "nichts hinzufügen, nur den Index aktualisieren"31493150#: builtin/add.c:2683151msgid "just skip files which cannot be added because of errors"3152msgstr ""3153"Dateien überspringen, die aufgrund von Fehlern nicht hinzugefügt werden "3154"konnten"31553156#: builtin/add.c:2693157msgid "check if - even missing - files are ignored in dry run"3158msgstr "prüfen ob - auch fehlende - Dateien im Probelauf ignoriert werden"31593160#: builtin/add.c:270 builtin/update-index.c:9583161msgid "(+/-)x"3162msgstr "(+/-)x"31633164#: builtin/add.c:270 builtin/update-index.c:9593165msgid "override the executable bit of the listed files"3166msgstr "das \"ausführbar\"-Bit der aufgelisteten Dateien überschreiben"31673168#: builtin/add.c:2923169#, c-format3170msgid "Use -f if you really want to add them.\n"3171msgstr "Verwenden Sie -f wenn Sie diese wirklich hinzufügen möchten.\n"31723173#: builtin/add.c:3003174msgid "adding files failed"3175msgstr "Hinzufügen von Dateien fehlgeschlagen"31763177#: builtin/add.c:3363178msgid "-A and -u are mutually incompatible"3179msgstr "Die Optionen -A und -u sind zueinander inkompatibel."31803181#: builtin/add.c:3433182msgid "Option --ignore-missing can only be used together with --dry-run"3183msgstr ""3184"Die Option --ignore-missing kann nur zusammen mit --dry-run verwendet werden."31853186#: builtin/add.c:3523187#, c-format3188msgid "--chmod param '%s' must be either -x or +x"3189msgstr "--chmod Parameter '%s' muss entweder -x oder +x sein"31903191#: builtin/add.c:3673192#, c-format3193msgid "Nothing specified, nothing added.\n"3194msgstr "Nichts spezifiziert, nichts hinzugefügt.\n"31953196#: builtin/add.c:3683197#, c-format3198msgid "Maybe you wanted to say 'git add .'?\n"3199msgstr "Meinten Sie vielleicht 'git add .'?\n"32003201#: builtin/add.c:373 builtin/check-ignore.c:172 builtin/checkout.c:2793202#: builtin/checkout.c:473 builtin/clean.c:914 builtin/commit.c:3403203#: builtin/mv.c:131 builtin/reset.c:235 builtin/rm.c:2983204#: builtin/submodule--helper.c:2403205msgid "index file corrupt"3206msgstr "Index-Datei beschädigt"32073208#: builtin/add.c:454 builtin/apply.c:4784 builtin/mv.c:286 builtin/rm.c:4313209msgid "Unable to write new index file"3210msgstr "Konnte neue Index-Datei nicht schreiben."32113212#: builtin/am.c:257 builtin/commit.c:750 builtin/merge.c:10323213#, c-format3214msgid "could not read '%s'"3215msgstr "Konnte '%s' nicht lesen"32163217#: builtin/am.c:4263218msgid "could not parse author script"3219msgstr "konnte Autor-Skript nicht parsen"32203221#: builtin/am.c:5033222#, c-format3223msgid "'%s' was deleted by the applypatch-msg hook"3224msgstr "'%s' wurde durch den applypatch-msg Hook entfernt"32253226#: builtin/am.c:544 builtin/notes.c:3013227#, c-format3228msgid "Malformed input line: '%s'."3229msgstr "Fehlerhafte Eingabezeile: '%s'."32303231#: builtin/am.c:581 builtin/notes.c:3163232#, c-format3233msgid "Failed to copy notes from '%s' to '%s'"3234msgstr "Fehler beim Kopieren der Notizen von '%s' nach '%s'"32353236#: builtin/am.c:6073237msgid "fseek failed"3238msgstr "\"fseek\" fehlgeschlagen"32393240#: builtin/am.c:7873241#, c-format3242msgid "could not parse patch '%s'"3243msgstr "konnte Patch '%s' nicht parsen"32443245#: builtin/am.c:8523246msgid "Only one StGIT patch series can be applied at once"3247msgstr "Es kann nur eine StGIT Patch-Serie auf einmal angewendet werden."32483249#: builtin/am.c:8993250msgid "invalid timestamp"3251msgstr "ungültiger Zeitstempel"32523253#: builtin/am.c:902 builtin/am.c:9103254msgid "invalid Date line"3255msgstr "Ungültige \"Date\"-Zeile"32563257#: builtin/am.c:9073258msgid "invalid timezone offset"3259msgstr "Ungültiger Offset in der Zeitzone"32603261#: builtin/am.c:9963262msgid "Patch format detection failed."3263msgstr "Patch-Formaterkennung fehlgeschlagen."32643265#: builtin/am.c:1001 builtin/clone.c:3803266#, c-format3267msgid "failed to create directory '%s'"3268msgstr "Fehler beim Erstellen von Verzeichnis '%s'"32693270#: builtin/am.c:10053271msgid "Failed to split patches."3272msgstr "Fehler beim Aufteilen der Patches."32733274#: builtin/am.c:1137 builtin/commit.c:3663275msgid "unable to write index file"3276msgstr "Konnte Index-Datei nicht schreiben."32773278#: builtin/am.c:11883279#, c-format3280msgid "When you have resolved this problem, run \"%s --continue\"."3281msgstr ""3282"Wenn Sie das Problem aufgelöst haben, führen Sie \"%s --continue\" aus."32833284#: builtin/am.c:11893285#, c-format3286msgid "If you prefer to skip this patch, run \"%s --skip\" instead."3287msgstr ""3288"Falls Sie diesen Patch auslassen möchten, führen Sie stattdessen \"%s --skip"3289"\" aus."32903291#: builtin/am.c:11903292#, c-format3293msgid "To restore the original branch and stop patching, run \"%s --abort\"."3294msgstr ""3295"Um den ursprünglichen Branch wiederherzustellen und die Anwendung der "3296"Patches abzubrechen, führen Sie \"%s --abort\" aus."32973298#: builtin/am.c:13283299msgid "Patch is empty. Was it split wrong?"3300msgstr "Patch ist leer. War dessen Aufteilung falsch?"33013302#: builtin/am.c:1402 builtin/log.c:15433303#, c-format3304msgid "invalid ident line: %s"3305msgstr "Ungültige Identifikationszeile: %s"33063307#: builtin/am.c:14293308#, c-format3309msgid "unable to parse commit %s"3310msgstr "Konnte Commit '%s' nicht parsen."33113312#: builtin/am.c:16023313msgid "Repository lacks necessary blobs to fall back on 3-way merge."3314msgstr ""3315"Dem Repository fehlen notwendige Blobs um auf einen 3-Wege-Merge "3316"zurückzufallen."33173318#: builtin/am.c:16043319msgid "Using index info to reconstruct a base tree..."3320msgstr ""3321"Verwende Informationen aus der Staging-Area, um ein Basisverzeichnis "3322"nachzustellen ..."33233324#: builtin/am.c:16233325msgid ""3326"Did you hand edit your patch?\n"3327"It does not apply to blobs recorded in its index."3328msgstr ""3329"Haben Sie den Patch per Hand editiert?\n"3330"Er kann nicht auf die Blobs in seiner 'index' Zeile angewendet werden."33313332#: builtin/am.c:16293333msgid "Falling back to patching base and 3-way merge..."3334msgstr "Falle zurück zum Patchen der Basis und zum 3-Wege-Merge ..."33353336#: builtin/am.c:16543337msgid "Failed to merge in the changes."3338msgstr "Merge der Änderungen fehlgeschlagen."33393340#: builtin/am.c:1679 builtin/merge.c:6283341msgid "git write-tree failed to write a tree"3342msgstr "\"git write-tree\" schlug beim Schreiben eines \"Tree\"-Objektes fehl"33433344#: builtin/am.c:16863345msgid "applying to an empty history"3346msgstr "auf leere Historie anwenden"33473348#: builtin/am.c:1699 builtin/commit.c:1776 builtin/merge.c:7983349#: builtin/merge.c:8233350msgid "failed to write commit object"3351msgstr "Fehler beim Schreiben des Commit-Objektes."33523353#: builtin/am.c:1731 builtin/am.c:17353354#, c-format3355msgid "cannot resume: %s does not exist."3356msgstr "Kann nicht fortsetzen: %s existiert nicht"33573358#: builtin/am.c:17513359msgid "cannot be interactive without stdin connected to a terminal."3360msgstr ""3361"Kann nicht interaktiv sein, ohne dass die Standard-Eingabe mit einem "3362"Terminal verbunden ist."33633364#: builtin/am.c:17563365msgid "Commit Body is:"3366msgstr "Commit-Beschreibung ist:"33673368#. TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]3369#. in your translation. The program will only accept English3370#. input at this point.3371#.3372#: builtin/am.c:17663373msgid "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "3374msgstr "Anwenden? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "33753376#: builtin/am.c:18163377#, c-format3378msgid "Dirty index: cannot apply patches (dirty: %s)"3379msgstr "Geänderter Index: kann Patches nicht anwenden (geändert: %s)"33803381#: builtin/am.c:1853 builtin/am.c:19253382#, c-format3383msgid "Applying: %.*s"3384msgstr "Wende an: %.*s"33853386#: builtin/am.c:18693387msgid "No changes -- Patch already applied."3388msgstr "Keine Änderungen -- Patches bereits angewendet."33893390#: builtin/am.c:18773391#, c-format3392msgid "Patch failed at %s %.*s"3393msgstr "Anwendung des Patches fehlgeschlagen bei %s %.*s"33943395#: builtin/am.c:18833396#, c-format3397msgid "The copy of the patch that failed is found in: %s"3398msgstr "Die Kopie des fehlgeschlagenen Patches befindet sich in: %s"33993400#: builtin/am.c:19283401msgid ""3402"No changes - did you forget to use 'git add'?\n"3403"If there is nothing left to stage, chances are that something else\n"3404"already introduced the same changes; you might want to skip this patch."3405msgstr ""3406"Keine Änderungen - haben Sie vergessen 'git add' zu benutzen?\n"3407"Wenn keine Änderungen mehr zum Commit vorzumerken sind, könnten\n"3408"diese bereits anderweitig eingefügt worden sein; Sie könnten diesen Patch\n"3409"auslassen."34103411#: builtin/am.c:19353412msgid ""3413"You still have unmerged paths in your index.\n"3414"Did you forget to use 'git add'?"3415msgstr ""3416"Sie haben immer noch nicht zusammengeführte Pfade im Index.\n"3417"Haben Sie vergessen 'git add' zu benutzen?"34183419#: builtin/am.c:2043 builtin/am.c:2047 builtin/am.c:2059 builtin/reset.c:3083420#: builtin/reset.c:3163421#, c-format3422msgid "Could not parse object '%s'."3423msgstr "Konnte Objekt '%s' nicht parsen."34243425#: builtin/am.c:20953426msgid "failed to clean index"3427msgstr "Fehler beim Bereinigen des Index"34283429#: builtin/am.c:21293430msgid ""3431"You seem to have moved HEAD since the last 'am' failure.\n"3432"Not rewinding to ORIG_HEAD"3433msgstr ""3434"Sie scheinen seit dem letzten gescheiterten 'am' HEAD geändert zu haben.\n"3435"Keine Zurücksetzung zu ORIG_HEAD."34363437#: builtin/am.c:21923438#, c-format3439msgid "Invalid value for --patch-format: %s"3440msgstr "Ungültiger Wert für --patch-format: %s"34413442#: builtin/am.c:22253443msgid "git am [<options>] [(<mbox>|<Maildir>)...]"3444msgstr "git am [<Optionen>] [(<mbox>|<E-Mail-Verzeichnis>)...]"34453446#: builtin/am.c:22263447msgid "git am [<options>] (--continue | --skip | --abort)"3448msgstr "git am [<Optionen>] (--continue | --skip | --abort)"34493450#: builtin/am.c:22323451msgid "run interactively"3452msgstr "interaktiv ausführen"34533454#: builtin/am.c:22343455msgid "historical option -- no-op"3456msgstr "historische Option -- kein Effekt"34573458#: builtin/am.c:22363459msgid "allow fall back on 3way merging if needed"3460msgstr "erlaube, falls notwendig, das Zurückfallen auf einen 3-Wege-Merge"34613462#: builtin/am.c:2237 builtin/init-db.c:481 builtin/prune-packed.c:573463#: builtin/repack.c:1723464msgid "be quiet"3465msgstr "weniger Ausgaben"34663467#: builtin/am.c:22393468msgid "add a Signed-off-by line to the commit message"3469msgstr "der Commit-Beschreibung eine Signed-off-by Zeile hinzufügen"34703471#: builtin/am.c:22423472msgid "recode into utf8 (default)"3473msgstr "nach UTF-8 umkodieren (Standard)"34743475#: builtin/am.c:22443476msgid "pass -k flag to git-mailinfo"3477msgstr "-k an git-mailinfo übergeben"34783479#: builtin/am.c:22463480msgid "pass -b flag to git-mailinfo"3481msgstr "-b an git-mailinfo übergeben"34823483#: builtin/am.c:22483484msgid "pass -m flag to git-mailinfo"3485msgstr "-m an git-mailinfo übergeben"34863487#: builtin/am.c:22503488msgid "pass --keep-cr flag to git-mailsplit for mbox format"3489msgstr "--keep-cr an git-mailsplit für mbox-Format übergeben"34903491#: builtin/am.c:22533492msgid "do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"3493msgstr "kein --keep-cr an git-mailsplit übergeben, unabhängig von am.keepcr"34943495#: builtin/am.c:22563496msgid "strip everything before a scissors line"3497msgstr "alles vor einer Scheren-Zeile entfernen"34983499#: builtin/am.c:2257 builtin/apply.c:48373500msgid "action"3501msgstr "Aktion"35023503#: builtin/am.c:2258 builtin/am.c:2261 builtin/am.c:2264 builtin/am.c:22673504#: builtin/am.c:2270 builtin/am.c:2273 builtin/am.c:2276 builtin/am.c:22793505#: builtin/am.c:22853506msgid "pass it through git-apply"3507msgstr "an git-apply übergeben"35083509#: builtin/am.c:2266 builtin/apply.c:48613510msgid "root"3511msgstr "Wurzelverzeichnis"35123513#: builtin/am.c:2269 builtin/am.c:2272 builtin/apply.c:47993514#: builtin/apply.c:4802 builtin/clone.c:90 builtin/fetch.c:963515#: builtin/pull.c:179 builtin/submodule--helper.c:2773516#: builtin/submodule--helper.c:402 builtin/submodule--helper.c:4823517#: builtin/submodule--helper.c:485 builtin/submodule--helper.c:8233518#: builtin/submodule--helper.c:8263519msgid "path"3520msgstr "Pfad"35213522#: builtin/am.c:2275 builtin/fmt-merge-msg.c:666 builtin/fmt-merge-msg.c:6693523#: builtin/grep.c:706 builtin/merge.c:200 builtin/pull.c:134 builtin/pull.c:1933524#: builtin/repack.c:181 builtin/repack.c:185 builtin/show-branch.c:6453525#: builtin/show-ref.c:175 builtin/tag.c:340 parse-options.h:1323526#: parse-options.h:134 parse-options.h:2443527msgid "n"3528msgstr "Anzahl"35293530#: builtin/am.c:2278 builtin/apply.c:48053531msgid "num"3532msgstr "Anzahl"35333534#: builtin/am.c:2281 builtin/for-each-ref.c:37 builtin/replace.c:4383535#: builtin/tag.c:3723536msgid "format"3537msgstr "Format"35383539#: builtin/am.c:22823540msgid "format the patch(es) are in"3541msgstr "Patch-Format"35423543#: builtin/am.c:22883544msgid "override error message when patch failure occurs"3545msgstr "Meldung bei fehlerhafter Patch-Anwendung überschreiben"35463547#: builtin/am.c:22903548msgid "continue applying patches after resolving a conflict"3549msgstr "Anwendung der Patches nach Auflösung eines Konfliktes fortsetzen"35503551#: builtin/am.c:22933552msgid "synonyms for --continue"3553msgstr "Synonyme für --continue"35543555#: builtin/am.c:22963556msgid "skip the current patch"3557msgstr "den aktuellen Patch auslassen"35583559#: builtin/am.c:22993560msgid "restore the original branch and abort the patching operation."3561msgstr ""3562"ursprünglichen Branch wiederherstellen und Anwendung der Patches abbrechen"35633564#: builtin/am.c:23033565msgid "lie about committer date"3566msgstr "Autor-Datum als Commit-Datum verwenden"35673568#: builtin/am.c:23053569msgid "use current timestamp for author date"3570msgstr "aktuellen Zeitstempel als Autor-Datum verwenden"35713572#: builtin/am.c:2307 builtin/commit.c:1610 builtin/merge.c:2293573#: builtin/pull.c:164 builtin/revert.c:92 builtin/tag.c:3553574msgid "key-id"3575msgstr "GPG-Schlüsselkennung"35763577#: builtin/am.c:23083578msgid "GPG-sign commits"3579msgstr "Commits mit GPG signieren"35803581#: builtin/am.c:23113582msgid "(internal use for git-rebase)"3583msgstr "(intern für git-rebase verwendet)"35843585#: builtin/am.c:23263586msgid ""3587"The -b/--binary option has been a no-op for long time, and\n"3588"it will be removed. Please do not use it anymore."3589msgstr ""3590"Die -b/--binary Option hat seit Langem keinen Effekt und wird\n"3591"entfernt. Bitte verwenden Sie diese nicht mehr."35923593#: builtin/am.c:23333594msgid "failed to read the index"3595msgstr "Fehler beim Lesen des Index"35963597#: builtin/am.c:23483598#, c-format3599msgid "previous rebase directory %s still exists but mbox given."3600msgstr "Vorheriges Rebase-Verzeichnis %s existiert noch, aber mbox gegeben."36013602#: builtin/am.c:23723603#, c-format3604msgid ""3605"Stray %s directory found.\n"3606"Use \"git am --abort\" to remove it."3607msgstr ""3608"Stray %s Verzeichnis gefunden.\n"3609"Benutzen Sie \"git am --abort\", um es zu entfernen."36103611#: builtin/am.c:23783612msgid "Resolve operation not in progress, we are not resuming."3613msgstr "Es ist keine Auflösung im Gange, es wird nicht fortgesetzt."36143615#: builtin/apply.c:1223616msgid "git apply [<options>] [<patch>...]"3617msgstr "git apply [<Optionen>] [<Patch>...]"36183619#: builtin/apply.c:1533620#, c-format3621msgid "unrecognized whitespace option '%s'"3622msgstr "nicht erkannte Whitespace-Option: '%s'"36233624#: builtin/apply.c:1693625#, c-format3626msgid "unrecognized whitespace ignore option '%s'"3627msgstr "nicht erkannte Option zum Ignorieren von Whitespace: '%s'"36283629#: builtin/apply.c:8543630#, c-format3631msgid "Cannot prepare timestamp regexp %s"3632msgstr "Kann regulären Ausdruck für Zeitstempel %s nicht verarbeiten"36333634#: builtin/apply.c:8633635#, c-format3636msgid "regexec returned %d for input: %s"3637msgstr "Ausführung des regulären Ausdrucks gab %d zurück. Eingabe: %s"36383639#: builtin/apply.c:9473640#, c-format3641msgid "unable to find filename in patch at line %d"3642msgstr "Konnte keinen Dateinamen in Zeile %d des Patches finden."36433644#: builtin/apply.c:9843645#, c-format3646msgid "git apply: bad git-diff - expected /dev/null, got %s on line %d"3647msgstr ""3648"git apply: ungültiges 'git-diff' - erwartete /dev/null, erhielt %s in Zeile "3649"%d"36503651#: builtin/apply.c:9893652#, c-format3653msgid "git apply: bad git-diff - inconsistent new filename on line %d"3654msgstr ""3655"git apply: ungültiges 'git-diff' - Inkonsistenter neuer Dateiname in Zeile %d"36563657#: builtin/apply.c:9903658#, c-format3659msgid "git apply: bad git-diff - inconsistent old filename on line %d"3660msgstr ""3661"git apply: ungültiges 'git-diff' - Inkonsistenter alter Dateiname in Zeile %d"36623663#: builtin/apply.c:9953664#, c-format3665msgid "git apply: bad git-diff - expected /dev/null on line %d"3666msgstr "git apply: ungültiges 'git-diff' - erwartete /dev/null in Zeile %d"36673668#: builtin/apply.c:14893669#, c-format3670msgid "recount: unexpected line: %.*s"3671msgstr "recount: unerwartete Zeile: %.*s"36723673#: builtin/apply.c:15503674#, c-format3675msgid "patch fragment without header at line %d: %.*s"3676msgstr "Patch-Fragment ohne Kopfbereich bei Zeile %d: %.*s"36773678#: builtin/apply.c:15673679#, c-format3680msgid ""3681"git diff header lacks filename information when removing %d leading pathname "3682"component (line %d)"3683msgid_plural ""3684"git diff header lacks filename information when removing %d leading pathname "3685"components (line %d)"3686msgstr[0] ""3687"Dem Kopfbereich von \"git diff\" fehlen Informationen zum Dateinamen, wenn "3688"%d vorangestellter Teil des Pfades entfernt wird (Zeile %d)"3689msgstr[1] ""3690"Dem Kopfbereich von \"git diff\" fehlen Informationen zum Dateinamen, wenn "3691"%d vorangestellte Teile des Pfades entfernt werden (Zeile %d)"36923693#: builtin/apply.c:17433694msgid "new file depends on old contents"3695msgstr "neue Datei hängt von alten Inhalten ab"36963697#: builtin/apply.c:17453698msgid "deleted file still has contents"3699msgstr "entfernte Datei hat noch Inhalte"37003701#: builtin/apply.c:17743702#, c-format3703msgid "corrupt patch at line %d"3704msgstr "fehlerhafter Patch bei Zeile %d"37053706#: builtin/apply.c:18103707#, c-format3708msgid "new file %s depends on old contents"3709msgstr "neue Datei %s hängt von alten Inhalten ab"37103711#: builtin/apply.c:18123712#, c-format3713msgid "deleted file %s still has contents"3714msgstr "entfernte Datei %s hat noch Inhalte"37153716#: builtin/apply.c:18153717#, c-format3718msgid "** warning: file %s becomes empty but is not deleted"3719msgstr "** Warnung: Datei %s wird leer, aber nicht entfernt."37203721#: builtin/apply.c:19623722#, c-format3723msgid "corrupt binary patch at line %d: %.*s"3724msgstr "fehlerhafter Binär-Patch bei Zeile %d: %.*s"37253726#: builtin/apply.c:19993727#, c-format3728msgid "unrecognized binary patch at line %d"3729msgstr "nicht erkannter Binär-Patch bei Zeile %d"37303731#: builtin/apply.c:21543732#, c-format3733msgid "patch with only garbage at line %d"3734msgstr "Patch mit nutzlosen Informationen bei Zeile %d"37353736#: builtin/apply.c:22443737#, c-format3738msgid "unable to read symlink %s"3739msgstr "konnte symbolische Verknüpfung %s nicht lesen"37403741#: builtin/apply.c:22483742#, c-format3743msgid "unable to open or read %s"3744msgstr "konnte %s nicht öffnen oder lesen"37453746#: builtin/apply.c:29013747#, c-format3748msgid "invalid start of line: '%c'"3749msgstr "Ungültiger Zeilenanfang: '%c'"37503751#: builtin/apply.c:30203752#, c-format3753msgid "Hunk #%d succeeded at %d (offset %d line)."3754msgid_plural "Hunk #%d succeeded at %d (offset %d lines)."3755msgstr[0] "Patch-Bereich #%d erfolgreich angewendet bei %d (%d Zeile versetzt)"3756msgstr[1] ""3757"Patch-Bereich #%d erfolgreich angewendet bei %d (%d Zeilen versetzt)"37583759#: builtin/apply.c:30323760#, c-format3761msgid "Context reduced to (%ld/%ld) to apply fragment at %d"3762msgstr "Kontext reduziert zu (%ld/%ld), um Patch-Bereich bei %d anzuwenden"37633764#: builtin/apply.c:30383765#, c-format3766msgid ""3767"while searching for:\n"3768"%.*s"3769msgstr ""3770"bei der Suche nach:\n"3771"%.*s"37723773#: builtin/apply.c:30603774#, c-format3775msgid "missing binary patch data for '%s'"3776msgstr "keine Daten in Binär-Patch für '%s'"37773778#: builtin/apply.c:31633779#, c-format3780msgid "binary patch does not apply to '%s'"3781msgstr "Konnte Binär-Patch nicht auf '%s' anwenden"37823783#: builtin/apply.c:31693784#, c-format3785msgid "binary patch to '%s' creates incorrect result (expecting %s, got %s)"3786msgstr ""3787"Binär-Patch für '%s' erzeugt falsches Ergebnis (erwartete %s, bekam %s)"37883789#: builtin/apply.c:31903790#, c-format3791msgid "patch failed: %s:%ld"3792msgstr "Anwendung des Patches fehlgeschlagen: %s:%ld"37933794#: builtin/apply.c:33143795#, c-format3796msgid "cannot checkout %s"3797msgstr "kann %s nicht auschecken"37983799#: builtin/apply.c:33703800#, c-format3801msgid "reading from '%s' beyond a symbolic link"3802msgstr "'%s' ist hinter einer symbolischen Verknüpfung"38033804#: builtin/apply.c:3399 builtin/apply.c:36303805#, c-format3806msgid "path %s has been renamed/deleted"3807msgstr "Pfad %s wurde umbenannt/gelöscht"38083809#: builtin/apply.c:3482 builtin/apply.c:36443810#, c-format3811msgid "%s: does not exist in index"3812msgstr "%s ist nicht im Index"38133814#: builtin/apply.c:3486 builtin/apply.c:3636 builtin/apply.c:36583815#, c-format3816msgid "%s: %s"3817msgstr "%s: %s"38183819#: builtin/apply.c:3491 builtin/apply.c:36523820#, c-format3821msgid "%s: does not match index"3822msgstr "%s entspricht nicht der Version im Index"38233824#: builtin/apply.c:35973825msgid "removal patch leaves file contents"3826msgstr "Lösch-Patch hinterlässt Dateiinhalte"38273828#: builtin/apply.c:36693829#, c-format3830msgid "%s: wrong type"3831msgstr "%s: falscher Typ"38323833#: builtin/apply.c:36713834#, c-format3835msgid "%s has type %o, expected %o"3836msgstr "%s ist vom Typ %o, erwartete %o"38373838#: builtin/apply.c:3822 builtin/apply.c:38243839#, c-format3840msgid "invalid path '%s'"3841msgstr "Ungültiger Pfad '%s'"38423843#: builtin/apply.c:38793844#, c-format3845msgid "%s: already exists in index"3846msgstr "%s ist bereits bereitgestellt"38473848#: builtin/apply.c:38823849#, c-format3850msgid "%s: already exists in working directory"3851msgstr "%s existiert bereits im Arbeitsverzeichnis"38523853#: builtin/apply.c:39023854#, c-format3855msgid "new mode (%o) of %s does not match old mode (%o)"3856msgstr "neuer Modus (%o) von %s entspricht nicht dem alten Modus (%o)"38573858#: builtin/apply.c:39073859#, c-format3860msgid "new mode (%o) of %s does not match old mode (%o) of %s"3861msgstr "neuer Modus (%o) von %s entspricht nicht dem alten Modus (%o) von %s"38623863#: builtin/apply.c:39273864#, c-format3865msgid "affected file '%s' is beyond a symbolic link"3866msgstr "betroffene Datei '%s' ist hinter einer symbolischen Verknüpfung"38673868#: builtin/apply.c:39313869#, c-format3870msgid "%s: patch does not apply"3871msgstr "%s: Patch konnte nicht angewendet werden"38723873#: builtin/apply.c:39453874#, c-format3875msgid "Checking patch %s..."3876msgstr "Prüfe Patch %s ..."38773878#: builtin/apply.c:4038 builtin/checkout.c:233 builtin/reset.c:1353879#, c-format3880msgid "make_cache_entry failed for path '%s'"3881msgstr "make_cache_entry für Pfad '%s' fehlgeschlagen"38823883#: builtin/apply.c:41823884#, c-format3885msgid "unable to remove %s from index"3886msgstr "konnte %s nicht aus dem Index entfernen"38873888#: builtin/apply.c:42153889#, c-format3890msgid "corrupt patch for submodule %s"3891msgstr "fehlerhafter Patch für Submodul %s"38923893#: builtin/apply.c:42193894#, c-format3895msgid "unable to stat newly created file '%s'"3896msgstr "konnte neu erstellte Datei '%s' nicht lesen"38973898#: builtin/apply.c:42243899#, c-format3900msgid "unable to create backing store for newly created file %s"3901msgstr "kann internen Speicher für eben erstellte Datei %s nicht erzeugen"39023903#: builtin/apply.c:4227 builtin/apply.c:43403904#, c-format3905msgid "unable to add cache entry for %s"3906msgstr "kann für %s keinen Eintrag in den Zwischenspeicher hinzufügen"39073908#: builtin/apply.c:42603909#, c-format3910msgid "closing file '%s'"3911msgstr "schließe Datei '%s'"39123913#: builtin/apply.c:43133914#, c-format3915msgid "unable to write file '%s' mode %o"3916msgstr "konnte Datei '%s' mit Modus %o nicht schreiben"39173918#: builtin/apply.c:44033919#, c-format3920msgid "Applied patch %s cleanly."3921msgstr "Patch %s sauber angewendet"39223923#: builtin/apply.c:44113924msgid "internal error"3925msgstr "interner Fehler"39263927#: builtin/apply.c:44143928#, c-format3929msgid "Applying patch %%s with %d reject..."3930msgid_plural "Applying patch %%s with %d rejects..."3931msgstr[0] "Wende Patch %%s mit %d Zurückweisung an..."3932msgstr[1] "Wende Patch %%s mit %d Zurückweisungen an..."39333934#: builtin/apply.c:44243935#, c-format3936msgid "truncating .rej filename to %.*s.rej"3937msgstr "Verkürze Name von .rej Datei zu %.*s.rej"39383939#: builtin/apply.c:44323940#, c-format3941msgid "cannot open %s: %s"3942msgstr "Kann %s nicht öffnen: %s"39433944#: builtin/apply.c:44453945#, c-format3946msgid "Hunk #%d applied cleanly."3947msgstr "Patch-Bereich #%d sauber angewendet."39483949#: builtin/apply.c:44483950#, c-format3951msgid "Rejected hunk #%d."3952msgstr "Patch-Block #%d zurückgewiesen."39533954#: builtin/apply.c:45373955#, c-format3956msgid "Skipped patch '%s'."3957msgstr "Patch '%s' ausgelassen."39583959#: builtin/apply.c:45453960msgid "unrecognized input"3961msgstr "nicht erkannte Eingabe"39623963#: builtin/apply.c:45563964msgid "unable to read index file"3965msgstr "Konnte Index-Datei nicht lesen"39663967#: builtin/apply.c:47013968msgid "--3way outside a repository"3969msgstr ""3970"Die Option --3way kann nicht außerhalb eines Repositories verwendet werden."39713972#: builtin/apply.c:47093973msgid "--index outside a repository"3974msgstr ""3975"Die Option --index kann nicht außerhalb eines Repositories verwendet werden."39763977#: builtin/apply.c:47123978msgid "--cached outside a repository"3979msgstr ""3980"Die Option --cached kann nicht außerhalb eines Repositories verwendet werden."39813982#: builtin/apply.c:47453983#, c-format3984msgid "can't open patch '%s'"3985msgstr "kann Patch '%s' nicht öffnen"39863987#: builtin/apply.c:47603988#, c-format3989msgid "squelched %d whitespace error"3990msgid_plural "squelched %d whitespace errors"3991msgstr[0] "unterdrückte %d Whitespace-Fehler"3992msgstr[1] "unterdrückte %d Whitespace-Fehler"39933994#: builtin/apply.c:4766 builtin/apply.c:47763995#, c-format3996msgid "%d line adds whitespace errors."3997msgid_plural "%d lines add whitespace errors."3998msgstr[0] "%d Zeile fügt Whitespace-Fehler hinzu."3999msgstr[1] "%d Zeilen fügen Whitespace-Fehler hinzu."40004001#: builtin/apply.c:48004002msgid "don't apply changes matching the given path"4003msgstr "keine Änderungen im angegebenen Pfad anwenden"40044005#: builtin/apply.c:48034006msgid "apply changes matching the given path"4007msgstr "Änderungen nur im angegebenen Pfad anwenden"40084009#: builtin/apply.c:48064010msgid "remove <num> leading slashes from traditional diff paths"4011msgstr ""4012"<Anzahl> vorangestellte Schrägstriche von herkömmlichen Differenzpfaden "4013"entfernen"40144015#: builtin/apply.c:48094016msgid "ignore additions made by the patch"4017msgstr "hinzugefügte Zeilen des Patches ignorieren"40184019#: builtin/apply.c:48114020msgid "instead of applying the patch, output diffstat for the input"4021msgstr ""4022"anstatt der Anwendung des Patches, den \"diffstat\" für die Eingabe "4023"ausgegeben"40244025#: builtin/apply.c:48154026msgid "show number of added and deleted lines in decimal notation"4027msgstr ""4028"die Anzahl von hinzugefügten/entfernten Zeilen in Dezimalnotation anzeigen"40294030#: builtin/apply.c:48174031msgid "instead of applying the patch, output a summary for the input"4032msgstr ""4033"anstatt der Anwendung des Patches, eine Zusammenfassung für die Eingabe "4034"ausgeben"40354036#: builtin/apply.c:48194037msgid "instead of applying the patch, see if the patch is applicable"4038msgstr ""4039"anstatt der Anwendung des Patches, zeige ob Patch angewendet werden kann"40404041#: builtin/apply.c:48214042msgid "make sure the patch is applicable to the current index"4043msgstr ""4044"sicherstellen, dass der Patch mit dem aktuellen Index angewendet werden kann"40454046#: builtin/apply.c:48234047msgid "apply a patch without touching the working tree"4048msgstr "Patch anwenden, ohne Änderungen im Arbeitsverzeichnis vorzunehmen"40494050#: builtin/apply.c:48254051msgid "accept a patch that touches outside the working area"4052msgstr ""4053"Patch anwenden, der Änderungen außerhalb des Arbeitsverzeichnisses vornimmt"40544055#: builtin/apply.c:48274056msgid "also apply the patch (use with --stat/--summary/--check)"4057msgstr "Patch anwenden (Benutzung mit --stat/--summary/--check)"40584059#: builtin/apply.c:48294060msgid "attempt three-way merge if a patch does not apply"4061msgstr "versuche 3-Wege-Merge, wenn der Patch nicht angewendet werden konnte"40624063#: builtin/apply.c:48314064msgid "build a temporary index based on embedded index information"4065msgstr ""4066"einen temporären Index, basierend auf den integrierten Index-Informationen, "4067"erstellen"40684069#: builtin/apply.c:4834 builtin/checkout-index.c:169 builtin/ls-files.c:4264070msgid "paths are separated with NUL character"4071msgstr "Pfade sind getrennt durch NUL Zeichen"40724073#: builtin/apply.c:48364074msgid "ensure at least <n> lines of context match"4075msgstr ""4076"sicher stellen, dass mindestens <n> Zeilen des Kontextes übereinstimmen"40774078#: builtin/apply.c:48384079msgid "detect new or modified lines that have whitespace errors"4080msgstr "neue oder geänderte Zeilen, die Whitespace-Fehler haben, ermitteln"40814082#: builtin/apply.c:4841 builtin/apply.c:48444083msgid "ignore changes in whitespace when finding context"4084msgstr "Änderungen im Whitespace bei der Suche des Kontextes ignorieren"40854086#: builtin/apply.c:48474087msgid "apply the patch in reverse"4088msgstr "den Patch in umgekehrter Reihenfolge anwenden"40894090#: builtin/apply.c:48494091msgid "don't expect at least one line of context"4092msgstr "keinen Kontext erwarten"40934094#: builtin/apply.c:48514095msgid "leave the rejected hunks in corresponding *.rej files"4096msgstr ""4097"zurückgewiesene Patch-Blöcke in entsprechenden *.rej Dateien hinterlassen"40984099#: builtin/apply.c:48534100msgid "allow overlapping hunks"4101msgstr "sich überlappende Patch-Blöcke erlauben"41024103#: builtin/apply.c:48564104msgid "tolerate incorrectly detected missing new-line at the end of file"4105msgstr "fehlerhaft erkannten fehlenden Zeilenumbruch am Dateiende tolerieren"41064107#: builtin/apply.c:48594108msgid "do not trust the line counts in the hunk headers"4109msgstr "den Zeilennummern im Kopf des Patch-Blocks nicht vertrauen"41104111#: builtin/apply.c:48624112msgid "prepend <root> to all filenames"4113msgstr "<Wurzelverzeichnis> vor alle Dateinamen stellen"41144115#: builtin/archive.c:174116#, c-format4117msgid "could not create archive file '%s'"4118msgstr "Konnte Archiv-Datei '%s' nicht erstellen."41194120#: builtin/archive.c:204121msgid "could not redirect output"4122msgstr "Konnte Ausgabe nicht umleiten."41234124#: builtin/archive.c:374125msgid "git archive: Remote with no URL"4126msgstr "git archive: Externes Archiv ohne URL"41274128#: builtin/archive.c:584129msgid "git archive: expected ACK/NAK, got EOF"4130msgstr "git archive: habe ACK/NAK erwartet, aber EOF bekommen"41314132#: builtin/archive.c:614133#, c-format4134msgid "git archive: NACK %s"4135msgstr "git archive: NACK %s"41364137#: builtin/archive.c:634138#, c-format4139msgid "remote error: %s"4140msgstr "Fehler am anderen Ende: %s"41414142#: builtin/archive.c:644143msgid "git archive: protocol error"4144msgstr "git archive: Protokollfehler"41454146#: builtin/archive.c:684147msgid "git archive: expected a flush"4148msgstr "git archive: erwartete eine Spülung (flush)"41494150#: builtin/bisect--helper.c:74151msgid "git bisect--helper --next-all [--no-checkout]"4152msgstr "git bisect--helper --next-all [--no-checkout]"41534154#: builtin/bisect--helper.c:174155msgid "perform 'git bisect next'"4156msgstr "'git bisect next' ausführen"41574158#: builtin/bisect--helper.c:194159msgid "update BISECT_HEAD instead of checking out the current commit"4160msgstr "BISECT_HEAD aktualisieren, anstatt den aktuellen Commit auszuchecken"41614162#: builtin/blame.c:334163msgid "git blame [<options>] [<rev-opts>] [<rev>] [--] <file>"4164msgstr "git blame [<Optionen>] [<rev-opts>] [<Commit>] [--] <Datei>"41654166#: builtin/blame.c:384167msgid "<rev-opts> are documented in git-rev-list(1)"4168msgstr "<rev-opts> sind dokumentiert in git-rev-list(1)"41694170#: builtin/blame.c:17814171msgid "Blaming lines"4172msgstr "Verarbeite Zeilen"41734174#: builtin/blame.c:25364175msgid "Show blame entries as we find them, incrementally"4176msgstr "\"blame\"-Einträge schrittweise anzeigen, während wir sie generieren"41774178#: builtin/blame.c:25374179msgid "Show blank SHA-1 for boundary commits (Default: off)"4180msgstr "leere SHA-1 für Grenz-Commits anzeigen (Standard: aus)"41814182#: builtin/blame.c:25384183msgid "Do not treat root commits as boundaries (Default: off)"4184msgstr "Ursprungs-Commit nicht als Grenzen behandeln (Standard: aus)"41854186#: builtin/blame.c:25394187msgid "Show work cost statistics"4188msgstr "Statistiken zum Arbeitsaufwand anzeigen"41894190#: builtin/blame.c:25404191msgid "Force progress reporting"4192msgstr "Fortschrittsanzeige erzwingen"41934194#: builtin/blame.c:25414195msgid "Show output score for blame entries"4196msgstr "Ausgabebewertung für \"blame\"-Einträge anzeigen"41974198#: builtin/blame.c:25424199msgid "Show original filename (Default: auto)"4200msgstr "ursprünglichen Dateinamen anzeigen (Standard: auto)"42014202#: builtin/blame.c:25434203msgid "Show original linenumber (Default: off)"4204msgstr "ursprüngliche Zeilennummer anzeigen (Standard: aus)"42054206#: builtin/blame.c:25444207msgid "Show in a format designed for machine consumption"4208msgstr "Anzeige in einem Format für maschinelle Auswertung"42094210#: builtin/blame.c:25454211msgid "Show porcelain format with per-line commit information"4212msgstr ""4213"Anzeige in Format für Fremdprogramme mit Commit-Informationen pro Zeile"42144215#: builtin/blame.c:25464216msgid "Use the same output mode as git-annotate (Default: off)"4217msgstr ""4218"Den gleichen Ausgabemodus benutzen wie \"git-annotate\" (Standard: aus)"42194220#: builtin/blame.c:25474221msgid "Show raw timestamp (Default: off)"4222msgstr "Unbearbeiteten Zeitstempel anzeigen (Standard: aus)"42234224#: builtin/blame.c:25484225msgid "Show long commit SHA1 (Default: off)"4226msgstr "Langen Commit-SHA1 anzeigen (Standard: aus)"42274228#: builtin/blame.c:25494229msgid "Suppress author name and timestamp (Default: off)"4230msgstr "Den Namen des Autors und den Zeitstempel unterdrücken (Standard: aus)"42314232#: builtin/blame.c:25504233msgid "Show author email instead of name (Default: off)"4234msgstr ""4235"Anstatt des Namens die E-Mail-Adresse des Autors anzeigen (Standard: aus)"42364237#: builtin/blame.c:25514238msgid "Ignore whitespace differences"4239msgstr "Unterschiede im Whitespace ignorieren"42404241#: builtin/blame.c:25524242msgid "Spend extra cycles to find better match"4243msgstr "Länger arbeiten, um bessere Übereinstimmungen zu finden"42444245#: builtin/blame.c:25534246msgid "Use revisions from <file> instead of calling git-rev-list"4247msgstr "Commits von <Datei> benutzen, anstatt \"git-rev-list\" aufzurufen"42484249#: builtin/blame.c:25544250msgid "Use <file>'s contents as the final image"4251msgstr "Inhalte der <Datei>en als endgültiges Abbild benutzen"42524253#: builtin/blame.c:2555 builtin/blame.c:25564254msgid "score"4255msgstr "Bewertung"42564257#: builtin/blame.c:25554258msgid "Find line copies within and across files"4259msgstr "kopierte Zeilen innerhalb oder zwischen Dateien finden"42604261#: builtin/blame.c:25564262msgid "Find line movements within and across files"4263msgstr "verschobene Zeilen innerhalb oder zwischen Dateien finden"42644265#: builtin/blame.c:25574266msgid "n,m"4267msgstr "n,m"42684269#: builtin/blame.c:25574270msgid "Process only line range n,m, counting from 1"4271msgstr "nur Zeilen im Bereich n,m verarbeiten, gezählt von 1"42724273#. TRANSLATORS: This string is used to tell us the maximum4274#. display width for a relative timestamp in "git blame"4275#. output. For C locale, "4 years, 11 months ago", which4276#. takes 22 places, is the longest among various forms of4277#. relative timestamps, but your language may need more or4278#. fewer display columns.4279#: builtin/blame.c:26494280msgid "4 years, 11 months ago"4281msgstr "vor 4 Jahren, und 11 Monaten"42824283#: builtin/branch.c:264284msgid "git branch [<options>] [-r | -a] [--merged | --no-merged]"4285msgstr "git branch [<Optionen>] [-r | -a] [--merged | --no-merged]"42864287#: builtin/branch.c:274288msgid "git branch [<options>] [-l] [-f] <branch-name> [<start-point>]"4289msgstr "git branch [<Optionen>] [-l] [-f] <Branchname> [<Startpunkt>]"42904291#: builtin/branch.c:284292msgid "git branch [<options>] [-r] (-d | -D) <branch-name>..."4293msgstr "git branch [<Optionen>] [-r] (-d | -D) <Branchname>..."42944295#: builtin/branch.c:294296msgid "git branch [<options>] (-m | -M) [<old-branch>] <new-branch>"4297msgstr "git branch [<Optionen>] (-m | -M) [<alter-Branch>] <neuer-Branch>"42984299#: builtin/branch.c:304300msgid "git branch [<options>] [-r | -a] [--points-at]"4301msgstr "git branch [<Optionen>] [-r | -a] [--points-at]"43024303#: builtin/branch.c:1434304#, c-format4305msgid ""4306"deleting branch '%s' that has been merged to\n"4307" '%s', but not yet merged to HEAD."4308msgstr ""4309"entferne Branch '%s', der zusammengeführt wurde mit\n"4310" '%s', aber noch nicht mit HEAD zusammengeführt wurde."43114312#: builtin/branch.c:1474313#, c-format4314msgid ""4315"not deleting branch '%s' that is not yet merged to\n"4316" '%s', even though it is merged to HEAD."4317msgstr ""4318"entferne Branch '%s' nicht, der noch nicht zusammengeführt wurde mit\n"4319" '%s', obwohl er mit HEAD zusammengeführt wurde."43204321#: builtin/branch.c:1614322#, c-format4323msgid "Couldn't look up commit object for '%s'"4324msgstr "Konnte Commit-Objekt für '%s' nicht nachschlagen."43254326#: builtin/branch.c:1654327#, c-format4328msgid ""4329"The branch '%s' is not fully merged.\n"4330"If you are sure you want to delete it, run 'git branch -D %s'."4331msgstr ""4332"Der Branch '%s' ist nicht vollständig zusammengeführt.\n"4333"Wenn Sie sicher sind diesen Branch zu entfernen, führen Sie 'git branch -D "4334"%s' aus."43354336#: builtin/branch.c:1784337msgid "Update of config-file failed"4338msgstr "Aktualisierung der Konfigurationsdatei fehlgeschlagen."43394340#: builtin/branch.c:2064341msgid "cannot use -a with -d"4342msgstr "kann -a nicht mit -d benutzen"43434344#: builtin/branch.c:2124345msgid "Couldn't look up commit object for HEAD"4346msgstr "Konnte Commit-Objekt für HEAD nicht nachschlagen."43474348#: builtin/branch.c:2264349#, c-format4350msgid "Cannot delete branch '%s' checked out at '%s'"4351msgstr "Kann Branch '%s' nicht entfernen, ausgecheckt in '%s'."43524353#: builtin/branch.c:2414354#, c-format4355msgid "remote-tracking branch '%s' not found."4356msgstr "Remote-Tracking-Branch '%s' nicht gefunden"43574358#: builtin/branch.c:2424359#, c-format4360msgid "branch '%s' not found."4361msgstr "Branch '%s' nicht gefunden."43624363#: builtin/branch.c:2574364#, c-format4365msgid "Error deleting remote-tracking branch '%s'"4366msgstr "Fehler beim Entfernen des Remote-Tracking-Branches '%s'"43674368#: builtin/branch.c:2584369#, c-format4370msgid "Error deleting branch '%s'"4371msgstr "Fehler beim Entfernen des Branches '%s'"43724373#: builtin/branch.c:2654374#, c-format4375msgid "Deleted remote-tracking branch %s (was %s).\n"4376msgstr "Remote-Tracking-Branch %s entfernt (war %s).\n"43774378#: builtin/branch.c:2664379#, c-format4380msgid "Deleted branch %s (was %s).\n"4381msgstr "Branch %s entfernt (war %s).\n"43824383#: builtin/branch.c:3124384#, c-format4385msgid "[%s: gone]"4386msgstr "[%s: entfernt]"43874388#: builtin/branch.c:3174389#, c-format4390msgid "[%s]"4391msgstr "[%s]"43924393#: builtin/branch.c:3224394#, c-format4395msgid "[%s: behind %d]"4396msgstr "[%s: %d hinterher]"43974398#: builtin/branch.c:3244399#, c-format4400msgid "[behind %d]"4401msgstr "[%d hinterher]"44024403#: builtin/branch.c:3284404#, c-format4405msgid "[%s: ahead %d]"4406msgstr "[%s: %d voraus]"44074408#: builtin/branch.c:3304409#, c-format4410msgid "[ahead %d]"4411msgstr "[%d voraus]"44124413#: builtin/branch.c:3334414#, c-format4415msgid "[%s: ahead %d, behind %d]"4416msgstr "[%s: %d voraus, %d hinterher]"44174418#: builtin/branch.c:3364419#, c-format4420msgid "[ahead %d, behind %d]"4421msgstr "[%d voraus, %d hinterher]"44224423#: builtin/branch.c:3494424msgid " **** invalid ref ****"4425msgstr " **** ungültige Referenz ****"44264427#: builtin/branch.c:3754428#, c-format4429msgid "(no branch, rebasing %s)"4430msgstr "(kein Branch, Rebase von Branch %s im Gange)"44314432#: builtin/branch.c:3784433#, c-format4434msgid "(no branch, bisect started on %s)"4435msgstr "(kein Branch, binäre Suche begonnen bei %s)"44364437#. TRANSLATORS: make sure this matches4438#. "HEAD detached at " in wt-status.c4439#: builtin/branch.c:3844440#, c-format4441msgid "(HEAD detached at %s)"4442msgstr "(HEAD losgelöst bei %s)"44434444#. TRANSLATORS: make sure this matches4445#. "HEAD detached from " in wt-status.c4446#: builtin/branch.c:3894447#, c-format4448msgid "(HEAD detached from %s)"4449msgstr "(HEAD losgelöst von %s)"44504451#: builtin/branch.c:3934452msgid "(no branch)"4453msgstr "(kein Branch)"44544455#: builtin/branch.c:5444456#, c-format4457msgid "Branch %s is being rebased at %s"4458msgstr "Branch %s wird auf %s umgesetzt"44594460#: builtin/branch.c:5484461#, c-format4462msgid "Branch %s is being bisected at %s"4463msgstr "Binäre Suche von Branch %s zu %s im Gange"44644465#: builtin/branch.c:5634466msgid "cannot rename the current branch while not on any."4467msgstr ""4468"Kann aktuellen Branch nicht umbenennen, solange Sie sich auf keinem befinden."44694470#: builtin/branch.c:5734471#, c-format4472msgid "Invalid branch name: '%s'"4473msgstr "Ungültiger Branchname: '%s'"44744475#: builtin/branch.c:5904476msgid "Branch rename failed"4477msgstr "Umbenennung des Branches fehlgeschlagen"44784479#: builtin/branch.c:5944480#, c-format4481msgid "Renamed a misnamed branch '%s' away"4482msgstr "falsch benannten Branch '%s' umbenannt"44834484#: builtin/branch.c:5974485#, c-format4486msgid "Branch renamed to %s, but HEAD is not updated!"4487msgstr "Branch umbenannt zu %s, aber HEAD ist nicht aktualisiert!"44884489#: builtin/branch.c:6044490msgid "Branch is renamed, but update of config-file failed"4491msgstr ""4492"Branch ist umbenannt, aber die Aktualisierung der Konfigurationsdatei ist "4493"fehlgeschlagen."44944495#: builtin/branch.c:6204496#, c-format4497msgid ""4498"Please edit the description for the branch\n"4499" %s\n"4500"Lines starting with '%c' will be stripped.\n"4501msgstr ""4502"Bitte ändern Sie die Beschreibung für den Branch\n"4503" %s\n"4504"Zeilen, die mit '%c' beginnen, werden entfernt.\n"45054506#: builtin/branch.c:6514507msgid "Generic options"4508msgstr "Allgemeine Optionen"45094510#: builtin/branch.c:6534511msgid "show hash and subject, give twice for upstream branch"4512msgstr "Hash und Betreff anzeigen; -vv: zusätzlich Upstream-Branch"45134514#: builtin/branch.c:6544515msgid "suppress informational messages"4516msgstr "Informationsmeldungen unterdrücken"45174518#: builtin/branch.c:6554519msgid "set up tracking mode (see git-pull(1))"4520msgstr "den Übernahmemodus einstellen (siehe git-pull(1))"45214522#: builtin/branch.c:6574523msgid "change upstream info"4524msgstr "Informationen zum Upstream-Branch ändern"45254526#: builtin/branch.c:6594527msgid "upstream"4528msgstr "Upstream"45294530#: builtin/branch.c:6594531msgid "change the upstream info"4532msgstr "Informationen zum Upstream-Branch ändern"45334534#: builtin/branch.c:6614535msgid "use colored output"4536msgstr "farbige Ausgaben verwenden"45374538#: builtin/branch.c:6624539msgid "act on remote-tracking branches"4540msgstr "auf Remote-Tracking-Branches wirken"45414542#: builtin/branch.c:664 builtin/branch.c:6654543msgid "print only branches that contain the commit"4544msgstr "nur Branches ausgeben, welche diesen Commit beinhalten"45454546#: builtin/branch.c:6684547msgid "Specific git-branch actions:"4548msgstr "spezifische Aktionen für \"git-branch\":"45494550#: builtin/branch.c:6694551msgid "list both remote-tracking and local branches"4552msgstr "Remote-Tracking und lokale Branches auflisten"45534554#: builtin/branch.c:6714555msgid "delete fully merged branch"4556msgstr "vollständig zusammengeführten Branch entfernen"45574558#: builtin/branch.c:6724559msgid "delete branch (even if not merged)"4560msgstr "Branch löschen (auch wenn nicht zusammengeführt)"45614562#: builtin/branch.c:6734563msgid "move/rename a branch and its reflog"4564msgstr "einen Branch und dessen Reflog verschieben/umbenennen"45654566#: builtin/branch.c:6744567msgid "move/rename a branch, even if target exists"4568msgstr ""4569"einen Branch verschieben/umbenennen, auch wenn das Ziel bereits existiert"45704571#: builtin/branch.c:6754572msgid "list branch names"4573msgstr "Branchnamen auflisten"45744575#: builtin/branch.c:6764576msgid "create the branch's reflog"4577msgstr "das Reflog des Branches erzeugen"45784579#: builtin/branch.c:6784580msgid "edit the description for the branch"4581msgstr "die Beschreibung für den Branch bearbeiten"45824583#: builtin/branch.c:6794584msgid "force creation, move/rename, deletion"4585msgstr "Erstellung, Verschiebung/Umbenennung oder Löschung erzwingen"45864587#: builtin/branch.c:6804588msgid "print only branches that are merged"4589msgstr "nur zusammengeführte Branches ausgeben"45904591#: builtin/branch.c:6814592msgid "print only branches that are not merged"4593msgstr "nur nicht zusammengeführte Branches ausgeben"45944595#: builtin/branch.c:6824596msgid "list branches in columns"4597msgstr "Branches in Spalten auflisten"45984599#: builtin/branch.c:683 builtin/for-each-ref.c:38 builtin/tag.c:3664600msgid "key"4601msgstr "Schüssel"46024603#: builtin/branch.c:684 builtin/for-each-ref.c:39 builtin/tag.c:3674604msgid "field name to sort on"4605msgstr "sortiere nach diesem Feld"46064607#: builtin/branch.c:686 builtin/for-each-ref.c:41 builtin/notes.c:4024608#: builtin/notes.c:405 builtin/notes.c:565 builtin/notes.c:5684609#: builtin/tag.c:3694610msgid "object"4611msgstr "Objekt"46124613#: builtin/branch.c:6874614msgid "print only branches of the object"4615msgstr "nur Branches von diesem Objekt ausgeben"46164617#: builtin/branch.c:7054618msgid "Failed to resolve HEAD as a valid ref."4619msgstr "Konnte HEAD nicht als gültige Referenz auflösen."46204621#: builtin/branch.c:709 builtin/clone.c:7074622msgid "HEAD not found below refs/heads!"4623msgstr "HEAD wurde nicht unter \"refs/heads\" gefunden!"46244625#: builtin/branch.c:7294626msgid "--column and --verbose are incompatible"4627msgstr "Die Optionen --column und --verbose sind inkompatibel."46284629#: builtin/branch.c:740 builtin/branch.c:7824630msgid "branch name required"4631msgstr "Branchname erforderlich"46324633#: builtin/branch.c:7584634msgid "Cannot give description to detached HEAD"4635msgstr "zu losgelöstem HEAD kann keine Beschreibung hinterlegt werden"46364637#: builtin/branch.c:7634638msgid "cannot edit description of more than one branch"4639msgstr "Beschreibung von mehr als einem Branch kann nicht bearbeitet werden"46404641#: builtin/branch.c:7704642#, c-format4643msgid "No commit on branch '%s' yet."4644msgstr "Noch kein Commit in Branch '%s'."46454646#: builtin/branch.c:7734647#, c-format4648msgid "No branch named '%s'."4649msgstr "Branch '%s' nicht vorhanden."46504651#: builtin/branch.c:7884652msgid "too many branches for a rename operation"4653msgstr "zu viele Branches für eine Umbenennen-Operation angegeben"46544655#: builtin/branch.c:7934656msgid "too many branches to set new upstream"4657msgstr "zu viele Branches angegeben, um Upstream-Branch zu setzen"46584659#: builtin/branch.c:7974660#, c-format4661msgid ""4662"could not set upstream of HEAD to %s when it does not point to any branch."4663msgstr ""4664"Konnte keinen neuen Upstream-Branch von HEAD zu %s setzen, da dieser auf\n"4665"keinen Branch zeigt."46664667#: builtin/branch.c:800 builtin/branch.c:822 builtin/branch.c:8434668#, c-format4669msgid "no such branch '%s'"4670msgstr "Kein solcher Branch '%s'"46714672#: builtin/branch.c:8044673#, c-format4674msgid "branch '%s' does not exist"4675msgstr "Branch '%s' existiert nicht"46764677#: builtin/branch.c:8164678msgid "too many branches to unset upstream"4679msgstr ""4680"zu viele Branches angegeben, um Konfiguration zu Upstream-Branch zu entfernen"46814682#: builtin/branch.c:8204683msgid "could not unset upstream of HEAD when it does not point to any branch."4684msgstr ""4685"Konnte Konfiguration zu Upstream-Branch von HEAD nicht entfernen, da dieser\n"4686"auf keinen Branch zeigt."46874688#: builtin/branch.c:8264689#, c-format4690msgid "Branch '%s' has no upstream information"4691msgstr "Branch '%s' hat keinen Upstream-Branch gesetzt"46924693#: builtin/branch.c:8404694msgid "it does not make sense to create 'HEAD' manually"4695msgstr "'HEAD' darf nicht manuell erstellt werden"46964697#: builtin/branch.c:8464698msgid "-a and -r options to 'git branch' do not make sense with a branch name"4699msgstr ""4700"Die Optionen -a und -r bei 'git branch' können nicht gemeimsam mit einem "4701"Branchnamen verwendet werden."47024703#: builtin/branch.c:8494704#, c-format4705msgid ""4706"The --set-upstream flag is deprecated and will be removed. Consider using --"4707"track or --set-upstream-to\n"4708msgstr ""4709"Die --set-upstream Option ist veraltet und wird entfernt. Benutzen Sie --"4710"track oder --set-upstream-to\n"47114712#: builtin/branch.c:8664713#, c-format4714msgid ""4715"\n"4716"If you wanted to make '%s' track '%s', do this:\n"4717"\n"4718msgstr ""4719"\n"4720"Wenn Sie wollten, dass '%s' den Branch '%s' als Upstream-Branch hat, führen "4721"Sie aus:\n"47224723#: builtin/bundle.c:514724#, c-format4725msgid "%s is okay\n"4726msgstr "%s ist in Ordnung\n"47274728#: builtin/bundle.c:644729msgid "Need a repository to create a bundle."4730msgstr "Um ein Paket zu erstellen wird ein Repository benötigt."47314732#: builtin/bundle.c:684733msgid "Need a repository to unbundle."4734msgstr "Zum Entpacken wird ein Repository benötigt."47354736#: builtin/cat-file.c:4434737msgid ""4738"git cat-file (-t [--allow-unknown-type]|-s [--allow-unknown-type]|-e|-p|"4739"<type>|--textconv) <object>"4740msgstr ""4741"git cat-file (-t [--allow-unknown-type]|-s [--allow-unknown-type]|-e|-p|"4742"<Art>|--textconv) <Objekt>"47434744#: builtin/cat-file.c:4444745msgid "git cat-file (--batch | --batch-check) [--follow-symlinks]"4746msgstr "git cat-file (--batch | --batch-check) [--follow-symlinks]"47474748#: builtin/cat-file.c:4814749msgid "<type> can be one of: blob, tree, commit, tag"4750msgstr "<Art> kann sein: blob, tree, commit, tag"47514752#: builtin/cat-file.c:4824753msgid "show object type"4754msgstr "Objektart anzeigen"47554756#: builtin/cat-file.c:4834757msgid "show object size"4758msgstr "Objektgröße anzeigen"47594760#: builtin/cat-file.c:4854761msgid "exit with zero when there's no error"4762msgstr "mit Rückgabewert 0 beenden, wenn kein Fehler aufgetreten ist"47634764#: builtin/cat-file.c:4864765msgid "pretty-print object's content"4766msgstr "ansprechende Anzeige des Objektinhaltes"47674768#: builtin/cat-file.c:4884769msgid "for blob objects, run textconv on object's content"4770msgstr "eine Textkonvertierung auf den Inhalt von Blob-Objekten ausführen"47714772#: builtin/cat-file.c:4904773msgid "allow -s and -t to work with broken/corrupt objects"4774msgstr "-s und -t mit beschädigten Objekten erlauben"47754776#: builtin/cat-file.c:4914777msgid "buffer --batch output"4778msgstr "Ausgabe von --batch puffern"47794780#: builtin/cat-file.c:4934781msgid "show info and content of objects fed from the standard input"4782msgstr ""4783"Anzeige von Informationen und Inhalt von Objekten, gelesen von der Standard-"4784"Eingabe"47854786#: builtin/cat-file.c:4964787msgid "show info about objects fed from the standard input"4788msgstr ""4789"Anzeige von Informationen über Objekte, gelesen von der Standard-Eingabe"47904791#: builtin/cat-file.c:4994792msgid "follow in-tree symlinks (used with --batch or --batch-check)"4793msgstr ""4794"symbolischen Verknüpfungen innerhalb des Repositories folgen (verwendet mit "4795"--batch oder --batch-check)"47964797#: builtin/cat-file.c:5014798msgid "show all objects with --batch or --batch-check"4799msgstr "alle Objekte mit --batch oder --batch-check anzeigen"48004801#: builtin/check-attr.c:114802msgid "git check-attr [-a | --all | <attr>...] [--] <pathname>..."4803msgstr "git check-attr [-a | --all | <Attribut>...] [--] <Pfadname>..."48044805#: builtin/check-attr.c:124806msgid "git check-attr --stdin [-z] [-a | --all | <attr>...]"4807msgstr "git check-attr --stdin [-z] [-a | --all | <Attribut>...]"48084809#: builtin/check-attr.c:194810msgid "report all attributes set on file"4811msgstr "alle Attribute einer Datei ausgeben"48124813#: builtin/check-attr.c:204814msgid "use .gitattributes only from the index"4815msgstr "nur .gitattributes vom Index verwenden"48164817#: builtin/check-attr.c:21 builtin/check-ignore.c:22 builtin/hash-object.c:974818msgid "read file names from stdin"4819msgstr "Dateinamen von der Standard-Eingabe lesen"48204821#: builtin/check-attr.c:23 builtin/check-ignore.c:244822msgid "terminate input and output records by a NUL character"4823msgstr "Einträge von Ein- und Ausgabe mit NUL-Zeichen abschließen"48244825#: builtin/check-ignore.c:18 builtin/checkout.c:1138 builtin/gc.c:3254826msgid "suppress progress reporting"4827msgstr "Fortschrittsanzeige unterdrücken"48284829#: builtin/check-ignore.c:264830msgid "show non-matching input paths"4831msgstr "Eingabe-Pfade ohne Übereinstimmungen anzeigen"48324833#: builtin/check-ignore.c:284834msgid "ignore index when checking"4835msgstr "Index bei der Prüfung ignorieren"48364837#: builtin/check-ignore.c:1544838msgid "cannot specify pathnames with --stdin"4839msgstr "Angabe von Pfadnamen kann nicht gemeinsam mit --stdin verwendet werden"48404841#: builtin/check-ignore.c:1574842msgid "-z only makes sense with --stdin"4843msgstr "Die Option -z kann nur mit --stdin verwendet werden."48444845#: builtin/check-ignore.c:1594846msgid "no path specified"4847msgstr "kein Pfad angegeben"48484849#: builtin/check-ignore.c:1634850msgid "--quiet is only valid with a single pathname"4851msgstr "Die Option --quiet ist nur mit einem einzelnen Pfadnamen gültig."48524853#: builtin/check-ignore.c:1654854msgid "cannot have both --quiet and --verbose"4855msgstr ""4856"Die Optionen --quiet und --verbose können nicht gemeinsam verwendet werden."48574858#: builtin/check-ignore.c:1684859msgid "--non-matching is only valid with --verbose"4860msgstr "--non-matching ist nur mit --verbose zulässig"48614862#: builtin/check-mailmap.c:84863msgid "git check-mailmap [<options>] <contact>..."4864msgstr "git check-mailmap [<Optionen>] <Kontakt>..."48654866#: builtin/check-mailmap.c:134867msgid "also read contacts from stdin"4868msgstr "ebenfalls Kontakte von der Standard-Eingabe lesen"48694870#: builtin/check-mailmap.c:244871#, c-format4872msgid "unable to parse contact: %s"4873msgstr "Konnte Kontakt '%s' nicht parsen."48744875#: builtin/check-mailmap.c:474876msgid "no contacts specified"4877msgstr "keine Kontakte angegeben"48784879#: builtin/checkout-index.c:1274880msgid "git checkout-index [<options>] [--] [<file>...]"4881msgstr "git checkout-index [<Optionen>] [--] [<Datei>...]"48824883#: builtin/checkout-index.c:1444884msgid "stage should be between 1 and 3 or all"4885msgstr "--stage sollte zwischen 1 und 3 oder 'all' sein"48864887#: builtin/checkout-index.c:1604888msgid "check out all files in the index"4889msgstr "alle Dateien im Index auschecken"48904891#: builtin/checkout-index.c:1614892msgid "force overwrite of existing files"4893msgstr "das Überschreiben bereits existierender Dateien erzwingen"48944895#: builtin/checkout-index.c:1634896msgid "no warning for existing files and files not in index"4897msgstr ""4898"keine Warnung für existierende Dateien, und Dateien, die sich nicht im Index "4899"befinden"49004901#: builtin/checkout-index.c:1654902msgid "don't checkout new files"4903msgstr "keine neuen Dateien auschecken"49044905#: builtin/checkout-index.c:1674906msgid "update stat information in the index file"4907msgstr "Dateiinformationen in der Index-Datei aktualisieren"49084909#: builtin/checkout-index.c:1714910msgid "read list of paths from the standard input"4911msgstr "eine Liste von Pfaden von der Standard-Eingabe lesen"49124913#: builtin/checkout-index.c:1734914msgid "write the content to temporary files"4915msgstr "den Inhalt in temporäre Dateien schreiben"49164917#: builtin/checkout-index.c:174 builtin/column.c:304918#: builtin/submodule--helper.c:488 builtin/submodule--helper.c:4914919#: builtin/submodule--helper.c:494 builtin/submodule--helper.c:4974920#: builtin/submodule--helper.c:830 builtin/worktree.c:4694921msgid "string"4922msgstr "Zeichenkette"49234924#: builtin/checkout-index.c:1754925msgid "when creating files, prepend <string>"4926msgstr ""4927"wenn Dateien erzeugt werden, stelle <Zeichenkette> dem Dateinamen voran"49284929#: builtin/checkout-index.c:1774930msgid "copy out the files from named stage"4931msgstr "Dateien von dem benannten Stand kopieren"49324933#: builtin/checkout.c:254934msgid "git checkout [<options>] <branch>"4935msgstr "git checkout [<Optionen>] <Branch>"49364937#: builtin/checkout.c:264938msgid "git checkout [<options>] [<branch>] -- <file>..."4939msgstr "git checkout [<Optionen>] [<Branch>] -- <Datei>..."49404941#: builtin/checkout.c:134 builtin/checkout.c:1674942#, c-format4943msgid "path '%s' does not have our version"4944msgstr "Pfad '%s' hat nicht unsere Version."49454946#: builtin/checkout.c:136 builtin/checkout.c:1694947#, c-format4948msgid "path '%s' does not have their version"4949msgstr "Pfad '%s' hat nicht deren Version."49504951#: builtin/checkout.c:1524952#, c-format4953msgid "path '%s' does not have all necessary versions"4954msgstr "Pfad '%s' hat nicht alle notwendigen Versionen."49554956#: builtin/checkout.c:1964957#, c-format4958msgid "path '%s' does not have necessary versions"4959msgstr "Pfad '%s' hat nicht die notwendigen Versionen."49604961#: builtin/checkout.c:2134962#, c-format4963msgid "path '%s': cannot merge"4964msgstr "Pfad '%s': kann nicht zusammenführen"49654966#: builtin/checkout.c:2304967#, c-format4968msgid "Unable to add merge result for '%s'"4969msgstr "Konnte Merge-Ergebnis von '%s' nicht hinzufügen."49704971#: builtin/checkout.c:250 builtin/checkout.c:253 builtin/checkout.c:2564972#: builtin/checkout.c:2594973#, c-format4974msgid "'%s' cannot be used with updating paths"4975msgstr "'%s' kann nicht mit der Aktualisierung von Pfaden verwendet werden"49764977#: builtin/checkout.c:262 builtin/checkout.c:2654978#, c-format4979msgid "'%s' cannot be used with %s"4980msgstr "'%s' kann nicht mit '%s' verwendet werden"49814982#: builtin/checkout.c:2684983#, c-format4984msgid "Cannot update paths and switch to branch '%s' at the same time."4985msgstr ""4986"Kann nicht gleichzeitig Pfade aktualisieren und zu Branch '%s' wechseln"49874988#: builtin/checkout.c:339 builtin/checkout.c:3464989#, c-format4990msgid "path '%s' is unmerged"4991msgstr "Pfad '%s' ist nicht zusammengeführt."49924993#: builtin/checkout.c:4954994msgid "you need to resolve your current index first"4995msgstr "Sie müssen zuerst die Konflikte in Ihrem aktuellen Index auflösen."49964997#: builtin/checkout.c:6254998#, c-format4999msgid "Can not do reflog for '%s': %s\n"5000msgstr "Kann \"reflog\" für '%s' nicht durchführen: %s\n"50015002#: builtin/checkout.c:6645003msgid "HEAD is now at"5004msgstr "HEAD ist jetzt bei"50055006#: builtin/checkout.c:668 builtin/clone.c:6615007msgid "unable to update HEAD"5008msgstr "Konnte HEAD nicht aktualisieren."50095010#: builtin/checkout.c:6725011#, c-format5012msgid "Reset branch '%s'\n"5013msgstr "Setze Branch '%s' neu\n"50145015#: builtin/checkout.c:6755016#, c-format5017msgid "Already on '%s'\n"5018msgstr "Bereits auf '%s'\n"50195020#: builtin/checkout.c:6795021#, c-format5022msgid "Switched to and reset branch '%s'\n"5023msgstr "Zu umgesetztem Branch '%s' gewechselt\n"50245025#: builtin/checkout.c:681 builtin/checkout.c:10705026#, c-format5027msgid "Switched to a new branch '%s'\n"5028msgstr "Zu neuem Branch '%s' gewechselt\n"50295030#: builtin/checkout.c:6835031#, c-format5032msgid "Switched to branch '%s'\n"5033msgstr "Zu Branch '%s' gewechselt\n"50345035#: builtin/checkout.c:7345036#, c-format5037msgid " ... and %d more.\n"5038msgstr " ... und %d weitere.\n"50395040#: builtin/checkout.c:7405041#, c-format5042msgid ""5043"Warning: you are leaving %d commit behind, not connected to\n"5044"any of your branches:\n"5045"\n"5046"%s\n"5047msgid_plural ""5048"Warning: you are leaving %d commits behind, not connected to\n"5049"any of your branches:\n"5050"\n"5051"%s\n"5052msgstr[0] ""5053"Warnung: Sie lassen %d Commit zurück. Folgender Commit ist in\n"5054"keinem Ihrer Branches enthalten:\n"5055"\n"5056"%s\n"5057msgstr[1] ""5058"Warnung: Sie lassen %d Commits zurück. Folgende Commits sind in\n"5059"keinem Ihrer Branches enthalten:\n"5060"\n"5061"%s\n"50625063#: builtin/checkout.c:7595064#, c-format5065msgid ""5066"If you want to keep it by creating a new branch, this may be a good time\n"5067"to do so with:\n"5068"\n"5069" git branch <new-branch-name> %s\n"5070"\n"5071msgid_plural ""5072"If you want to keep them by creating a new branch, this may be a good time\n"5073"to do so with:\n"5074"\n"5075" git branch <new-branch-name> %s\n"5076"\n"5077msgstr[0] ""5078"Wenn Sie diese durch einen neuen Branch behalten möchten, dann könnte jetzt\n"5079"ein guter Zeitpunkt sein dies zu tun mit:\n"5080"\n"5081" git branch <neuer-Branchname> %s\n"5082"\n"5083msgstr[1] ""5084"Wenn Sie diese durch einen neuen Branch behalten möchten, dann könnte jetzt\n"5085"ein guter Zeitpunkt sein dies zu tun mit:\n"5086"\n"5087" git branch <neuer-Branchname> %s\n"5088"\n"50895090#: builtin/checkout.c:7955091msgid "internal error in revision walk"5092msgstr "interner Fehler im Revisionsgang"50935094#: builtin/checkout.c:7995095msgid "Previous HEAD position was"5096msgstr "Vorherige Position von HEAD war"50975098#: builtin/checkout.c:826 builtin/checkout.c:10655099msgid "You are on a branch yet to be born"5100msgstr "Sie sind auf einem Branch, der noch geboren wird"51015102#: builtin/checkout.c:9715103#, c-format5104msgid "only one reference expected, %d given."5105msgstr "nur eine Referenz erwartet, %d gegeben."51065107#: builtin/checkout.c:1011 builtin/worktree.c:2145108#, c-format5109msgid "invalid reference: %s"5110msgstr "Ungültige Referenz: %s"51115112#: builtin/checkout.c:10405113#, c-format5114msgid "reference is not a tree: %s"5115msgstr "Referenz ist kein \"Tree\"-Objekt: %s"51165117#: builtin/checkout.c:10795118msgid "paths cannot be used with switching branches"5119msgstr "Pfade können nicht beim Wechseln von Branches verwendet werden"51205121#: builtin/checkout.c:1082 builtin/checkout.c:10865122#, c-format5123msgid "'%s' cannot be used with switching branches"5124msgstr "'%s' kann nicht beim Wechseln von Branches verwendet werden"51255126#: builtin/checkout.c:1090 builtin/checkout.c:1093 builtin/checkout.c:10985127#: builtin/checkout.c:11015128#, c-format5129msgid "'%s' cannot be used with '%s'"5130msgstr "'%s' kann nicht mit '%s' verwendet werden"51315132#: builtin/checkout.c:11065133#, c-format5134msgid "Cannot switch branch to a non-commit '%s'"5135msgstr "Kann Branch nicht zu Nicht-Commit '%s' wechseln"51365137#: builtin/checkout.c:1139 builtin/checkout.c:1141 builtin/clone.c:885138#: builtin/remote.c:165 builtin/remote.c:167 builtin/worktree.c:3245139#: builtin/worktree.c:3265140msgid "branch"5141msgstr "Branch"51425143#: builtin/checkout.c:11405144msgid "create and checkout a new branch"5145msgstr "einen neuen Branch erzeugen und auschecken"51465147#: builtin/checkout.c:11425148msgid "create/reset and checkout a branch"5149msgstr "einen Branch erstellen/umsetzen und auschecken"51505151#: builtin/checkout.c:11435152msgid "create reflog for new branch"5153msgstr "das Reflog für den neuen Branch erzeugen"51545155#: builtin/checkout.c:1144 builtin/worktree.c:3285156msgid "detach HEAD at named commit"5157msgstr "HEAD bei benanntem Commit loslösen"51585159#: builtin/checkout.c:11455160msgid "set upstream info for new branch"5161msgstr "Informationen zum Upstream-Branch für den neuen Branch setzen"51625163#: builtin/checkout.c:11475164msgid "new-branch"5165msgstr "neuer Branch"51665167#: builtin/checkout.c:11475168msgid "new unparented branch"5169msgstr "neuer Branch ohne Eltern-Commit"51705171#: builtin/checkout.c:11485172msgid "checkout our version for unmerged files"5173msgstr "unsere Variante für nicht zusammengeführte Dateien auschecken"51745175#: builtin/checkout.c:11505176msgid "checkout their version for unmerged files"5177msgstr "ihre Variante für nicht zusammengeführte Dateien auschecken"51785179#: builtin/checkout.c:11525180msgid "force checkout (throw away local modifications)"5181msgstr "Auschecken erzwingen (verwirft lokale Änderungen)"51825183#: builtin/checkout.c:11535184msgid "perform a 3-way merge with the new branch"5185msgstr "einen 3-Wege-Merge mit dem neuen Branch ausführen"51865187#: builtin/checkout.c:1154 builtin/merge.c:2315188msgid "update ignored files (default)"5189msgstr "ignorierte Dateien aktualisieren (Standard)"51905191#: builtin/checkout.c:1155 builtin/log.c:1459 parse-options.h:2505192msgid "style"5193msgstr "Stil"51945195#: builtin/checkout.c:11565196msgid "conflict style (merge or diff3)"5197msgstr "Konfliktstil (merge oder diff3)"51985199#: builtin/checkout.c:11595200msgid "do not limit pathspecs to sparse entries only"5201msgstr "keine Einschränkung bei Pfadspezifikationen zum partiellen Auschecken"52025203#: builtin/checkout.c:11615204msgid "second guess 'git checkout <no-such-branch>'"5205msgstr "second guess 'git checkout <no-such-branch>'"52065207#: builtin/checkout.c:11635208msgid "do not check if another worktree is holding the given ref"5209msgstr ""5210"Prüfung, ob die Referenz bereits in einem anderen Arbeitsverzeichnis "5211"ausgecheckt wurde, deaktivieren"52125213#: builtin/checkout.c:1164 builtin/clone.c:60 builtin/fetch.c:1175214#: builtin/merge.c:228 builtin/pull.c:116 builtin/push.c:5365215#: builtin/send-pack.c:1685216msgid "force progress reporting"5217msgstr "Fortschrittsanzeige erzwingen"52185219#: builtin/checkout.c:11955220msgid "-b, -B and --orphan are mutually exclusive"5221msgstr "Die Optionen -b, -B und --orphan schließen sich gegenseitig aus."52225223#: builtin/checkout.c:12125224msgid "--track needs a branch name"5225msgstr "Bei der Option --track muss ein Branchname angegeben werden."52265227#: builtin/checkout.c:12175228msgid "Missing branch name; try -b"5229msgstr "Vermisse Branchnamen; versuchen Sie -b"52305231#: builtin/checkout.c:12535232msgid "invalid path specification"5233msgstr "ungültige Pfadspezifikation"52345235#: builtin/checkout.c:12605236#, c-format5237msgid ""5238"Cannot update paths and switch to branch '%s' at the same time.\n"5239"Did you intend to checkout '%s' which can not be resolved as commit?"5240msgstr ""5241"Kann nicht gleichzeitig Pfade aktualisieren und zu Branch '%s' wechseln.\n"5242"Haben Sie beabsichtigt '%s' auszuchecken, welcher nicht als Commit aufgelöst "5243"werden kann?"52445245#: builtin/checkout.c:12655246#, c-format5247msgid "git checkout: --detach does not take a path argument '%s'"5248msgstr "git checkout: --detach nimmt kein Pfad-Argument '%s'"52495250#: builtin/checkout.c:12695251msgid ""5252"git checkout: --ours/--theirs, --force and --merge are incompatible when\n"5253"checking out of the index."5254msgstr ""5255"git checkout: --ours/--theirs, --force und --merge sind inkompatibel wenn\n"5256"Sie aus dem Index auschecken."52575258#: builtin/clean.c:255259msgid ""5260"git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <paths>..."5261msgstr ""5262"git clean [-d] [-f] [-i] [-n] [-q] [-e <Muster>] [-x | -X] [--] <Pfade>..."52635264#: builtin/clean.c:295265#, c-format5266msgid "Removing %s\n"5267msgstr "Lösche %s\n"52685269#: builtin/clean.c:305270#, c-format5271msgid "Would remove %s\n"5272msgstr "Würde %s löschen\n"52735274#: builtin/clean.c:315275#, c-format5276msgid "Skipping repository %s\n"5277msgstr "Überspringe Repository %s\n"52785279#: builtin/clean.c:325280#, c-format5281msgid "Would skip repository %s\n"5282msgstr "Würde Repository %s überspringen\n"52835284#: builtin/clean.c:335285#, c-format5286msgid "failed to remove %s"5287msgstr "Fehler beim Löschen von %s"52885289#: builtin/clean.c:2915290msgid ""5291"Prompt help:\n"5292"1 - select a numbered item\n"5293"foo - select item based on unique prefix\n"5294" - (empty) select nothing"5295msgstr ""5296"Eingabehilfe:\n"5297"1 - nummeriertes Element auswählen\n"5298"foo - Element anhand eines eindeutigen Präfix auswählen\n"5299" - (leer) nichts auswählen"53005301#: builtin/clean.c:2955302msgid ""5303"Prompt help:\n"5304"1 - select a single item\n"5305"3-5 - select a range of items\n"5306"2-3,6-9 - select multiple ranges\n"5307"foo - select item based on unique prefix\n"5308"-... - unselect specified items\n"5309"* - choose all items\n"5310" - (empty) finish selecting"5311msgstr ""5312"Eingabehilfe:\n"5313"1 - einzelnes Element auswählen\n"5314"3-5 - Bereich von Elementen auswählen\n"5315"2-3,6-9 - mehrere Bereiche auswählen\n"5316"foo - Element anhand eines eindeutigen Präfix auswählen\n"5317"-... - angegebenes Element abwählen\n"5318"* - alle Elemente auswählen\n"5319" - (leer) Auswahl beenden"53205321#: builtin/clean.c:5115322#, c-format5323msgid "Huh (%s)?"5324msgstr "Wie bitte (%s)?"53255326#: builtin/clean.c:6535327#, c-format5328msgid "Input ignore patterns>> "5329msgstr "Ignorier-Muster eingeben>> "53305331#: builtin/clean.c:6905332#, c-format5333msgid "WARNING: Cannot find items matched by: %s"5334msgstr "WARNUNG: Kann keine Einträge finden die Muster entsprechen: %s"53355336#: builtin/clean.c:7115337msgid "Select items to delete"5338msgstr "Wählen Sie Einträge zum Löschen"53395340#. TRANSLATORS: Make sure to keep [y/N] as is5341#: builtin/clean.c:7525342#, c-format5343msgid "Remove %s [y/N]? "5344msgstr "'%s' löschen [y/N]? "53455346#: builtin/clean.c:7775347msgid "Bye."5348msgstr "Tschüss."53495350#: builtin/clean.c:7855351msgid ""5352"clean - start cleaning\n"5353"filter by pattern - exclude items from deletion\n"5354"select by numbers - select items to be deleted by numbers\n"5355"ask each - confirm each deletion (like \"rm -i\")\n"5356"quit - stop cleaning\n"5357"help - this screen\n"5358"? - help for prompt selection"5359msgstr ""5360"clean - Clean starten\n"5361"filter by pattern - Einträge von Löschung ausschließen\n"5362"select by numbers - Auswahl von Einträgen über Nummern\n"5363"ask each - jede Löschung bestätigen (wie \"rm -i\")\n"5364"quit - Clean beenden\n"5365"help - diese Meldung anzeigen\n"5366"? - Hilfe zur Auswahl mittels Eingabe anzeigen"53675368#: builtin/clean.c:8125369msgid "*** Commands ***"5370msgstr "*** Befehle ***"53715372#: builtin/clean.c:8135373msgid "What now"5374msgstr "Was nun"53755376#: builtin/clean.c:8215377msgid "Would remove the following item:"5378msgid_plural "Would remove the following items:"5379msgstr[0] "Würde das folgende Element entfernen:"5380msgstr[1] "Würde die folgenden Elemente entfernen:"53815382#: builtin/clean.c:8385383msgid "No more files to clean, exiting."5384msgstr "Keine Dateien mehr zum Löschen, beende."53855386#: builtin/clean.c:8695387msgid "do not print names of files removed"5388msgstr "keine Namen von gelöschten Dateien ausgeben"53895390#: builtin/clean.c:8715391msgid "force"5392msgstr "Aktion erzwingen"53935394#: builtin/clean.c:8725395msgid "interactive cleaning"5396msgstr "interaktives Clean"53975398#: builtin/clean.c:8745399msgid "remove whole directories"5400msgstr "ganze Verzeichnisse löschen"54015402#: builtin/clean.c:875 builtin/describe.c:407 builtin/grep.c:7245403#: builtin/ls-files.c:457 builtin/name-rev.c:314 builtin/show-ref.c:1825404msgid "pattern"5405msgstr "Muster"54065407#: builtin/clean.c:8765408msgid "add <pattern> to ignore rules"5409msgstr "<Muster> zu den Regeln für ignorierte Pfade hinzufügen"54105411#: builtin/clean.c:8775412msgid "remove ignored files, too"5413msgstr "auch ignorierte Dateien löschen"54145415#: builtin/clean.c:8795416msgid "remove only ignored files"5417msgstr "nur ignorierte Dateien löschen"54185419#: builtin/clean.c:8975420msgid "-x and -X cannot be used together"5421msgstr "Die Optionen -x und -X können nicht gemeinsam verwendet werden."54225423#: builtin/clean.c:9015424msgid ""5425"clean.requireForce set to true and neither -i, -n, nor -f given; refusing to "5426"clean"5427msgstr ""5428"clean.requireForce auf \"true\" gesetzt und weder -i, -n noch -f gegeben; "5429"\"clean\" verweigert"54305431#: builtin/clean.c:9045432msgid ""5433"clean.requireForce defaults to true and neither -i, -n, nor -f given; "5434"refusing to clean"5435msgstr ""5436"clean.requireForce standardmäßig auf \"true\" gesetzt und weder -i, -n noch -"5437"f gegeben; \"clean\" verweigert"54385439#: builtin/clone.c:375440msgid "git clone [<options>] [--] <repo> [<dir>]"5441msgstr "git clone [<Optionen>] [--] <Repository> [<Verzeichnis>]"54425443#: builtin/clone.c:625444msgid "don't create a checkout"5445msgstr "kein Auschecken"54465447#: builtin/clone.c:63 builtin/clone.c:65 builtin/init-db.c:4765448msgid "create a bare repository"5449msgstr "ein Bare-Repository erstellen"54505451#: builtin/clone.c:675452msgid "create a mirror repository (implies bare)"5453msgstr "ein Spiegelarchiv erstellen (impliziert --bare)"54545455#: builtin/clone.c:695456msgid "to clone from a local repository"5457msgstr "von einem lokalen Repository klonen"54585459#: builtin/clone.c:715460msgid "don't use local hardlinks, always copy"5461msgstr "lokal keine harten Verweise verwenden, immer Kopien"54625463#: builtin/clone.c:735464msgid "setup as shared repository"5465msgstr "als verteiltes Repository einrichten"54665467#: builtin/clone.c:75 builtin/clone.c:775468msgid "initialize submodules in the clone"5469msgstr "Submodule im Klon initialisieren"54705471#: builtin/clone.c:795472msgid "number of submodules cloned in parallel"5473msgstr "Anzahl der parallel zu klonenden Submodule"54745475#: builtin/clone.c:80 builtin/init-db.c:4735476msgid "template-directory"5477msgstr "Vorlagenverzeichnis"54785479#: builtin/clone.c:81 builtin/init-db.c:4745480msgid "directory from which templates will be used"5481msgstr "Verzeichnis, von welchem die Vorlagen verwendet werden"54825483#: builtin/clone.c:83 builtin/submodule--helper.c:4955484#: builtin/submodule--helper.c:8335485msgid "reference repository"5486msgstr "Repository referenzieren"54875488#: builtin/clone.c:855489msgid "use --reference only while cloning"5490msgstr "--reference nur während des Klonens benutzen"54915492#: builtin/clone.c:86 builtin/column.c:26 builtin/merge-file.c:445493msgid "name"5494msgstr "Name"54955496#: builtin/clone.c:875497msgid "use <name> instead of 'origin' to track upstream"5498msgstr "<Name> statt 'origin' für Upstream-Repository verwenden"54995500#: builtin/clone.c:895501msgid "checkout <branch> instead of the remote's HEAD"5502msgstr "<Branch> auschecken, anstatt HEAD des Remote-Repositories"55035504#: builtin/clone.c:915505msgid "path to git-upload-pack on the remote"5506msgstr "Pfad zu \"git-upload-pack\" auf der Gegenseite"55075508#: builtin/clone.c:92 builtin/fetch.c:118 builtin/grep.c:667 builtin/pull.c:2015509msgid "depth"5510msgstr "Tiefe"55115512#: builtin/clone.c:935513msgid "create a shallow clone of that depth"5514msgstr ""5515"einen Klon mit unvollständiger Historie (shallow) in dieser Tiefe erstellen"55165517#: builtin/clone.c:955518msgid "clone only one branch, HEAD or --branch"5519msgstr "nur einen Branch klonen, HEAD oder --branch"55205521#: builtin/clone.c:975522msgid "any cloned submodules will be shallow"5523msgstr "jedes geklonte Submodul mit unvollständiger Historie (shallow)"55245525#: builtin/clone.c:98 builtin/init-db.c:4825526msgid "gitdir"5527msgstr ".git-Verzeichnis"55285529#: builtin/clone.c:99 builtin/init-db.c:4835530msgid "separate git dir from working tree"5531msgstr "Git-Verzeichnis vom Arbeitsverzeichnis separieren"55325533#: builtin/clone.c:1005534msgid "key=value"5535msgstr "Schlüssel=Wert"55365537#: builtin/clone.c:1015538msgid "set config inside the new repository"5539msgstr "Konfiguration innerhalb des neuen Repositories setzen"55405541#: builtin/clone.c:102 builtin/fetch.c:132 builtin/push.c:5475542msgid "use IPv4 addresses only"5543msgstr "nur IPv4-Adressen benutzen"55445545#: builtin/clone.c:104 builtin/fetch.c:134 builtin/push.c:5495546msgid "use IPv6 addresses only"5547msgstr "nur IPv6-Adressen benutzen"55485549#: builtin/clone.c:2415550msgid ""5551"No directory name could be guessed.\n"5552"Please specify a directory on the command line"5553msgstr ""5554"Konnte keinen Verzeichnisnamen erraten.\n"5555"Bitte geben Sie ein Verzeichnis auf der Befehlszeile an."55565557#: builtin/clone.c:3075558#, c-format5559msgid "reference repository '%s' as a linked checkout is not supported yet."5560msgstr ""5561"Referenziertes Repository '%s' wird noch nicht als verknüpftes\n"5562"Arbeitsverzeichnis unterstützt."55635564#: builtin/clone.c:3095565#, c-format5566msgid "reference repository '%s' is not a local repository."5567msgstr "Referenziertes Repository '%s' ist kein lokales Repository."55685569#: builtin/clone.c:3145570#, c-format5571msgid "reference repository '%s' is shallow"5572msgstr ""5573"Referenziertes Repository '%s' hat eine unvollständige Historie (shallow)."55745575#: builtin/clone.c:3175576#, c-format5577msgid "reference repository '%s' is grafted"5578msgstr ""5579"Referenziertes Repository '%s' ist mit künstlichen Vorgängern (\"grafts\") "5580"eingehängt."55815582#: builtin/clone.c:3765583#, c-format5584msgid "failed to open '%s'"5585msgstr "Fehler beim Öffnen von '%s'"55865587#: builtin/clone.c:3845588#, c-format5589msgid "%s exists and is not a directory"5590msgstr "%s existiert und ist kein Verzeichnis"55915592#: builtin/clone.c:3985593#, c-format5594msgid "failed to stat %s\n"5595msgstr "Konnte %s nicht lesen\n"55965597#: builtin/clone.c:4205598#, c-format5599msgid "failed to create link '%s'"5600msgstr "Konnte Verweis '%s' nicht erstellen"56015602#: builtin/clone.c:4245603#, c-format5604msgid "failed to copy file to '%s'"5605msgstr "Konnte Datei nicht nach '%s' kopieren"56065607#: builtin/clone.c:4495608#, c-format5609msgid "done.\n"5610msgstr "Fertig.\n"56115612#: builtin/clone.c:4615613msgid ""5614"Clone succeeded, but checkout failed.\n"5615"You can inspect what was checked out with 'git status'\n"5616"and retry the checkout with 'git checkout -f HEAD'\n"5617msgstr ""5618"Klonen erfolgreich, Auschecken ist aber fehlgeschlagen.\n"5619"Sie können mit 'git status' prüfen, was ausgecheckt worden ist\n"5620"und das Auschecken mit 'git checkout -f HEAD' erneut versuchen.\n"56215622#: builtin/clone.c:5385623#, c-format5624msgid "Could not find remote branch %s to clone."5625msgstr "Konnte zu klonenden Remote-Branch %s nicht finden."56265627#: builtin/clone.c:6335628msgid "remote did not send all necessary objects"5629msgstr "Remote-Repository hat nicht alle erforderlichen Objekte gesendet."56305631#: builtin/clone.c:6495632#, c-format5633msgid "unable to update %s"5634msgstr "kann %s nicht aktualisieren"56355636#: builtin/clone.c:6985637msgid "remote HEAD refers to nonexistent ref, unable to checkout.\n"5638msgstr ""5639"Externer HEAD bezieht sich auf eine nicht existierende Referenz und kann "5640"nicht ausgecheckt werden.\n"56415642#: builtin/clone.c:7295643msgid "unable to checkout working tree"5644msgstr "Arbeitsverzeichnis konnte nicht ausgecheckt werden"56455646#: builtin/clone.c:7665647msgid "unable to write parameters to config file"5648msgstr "konnte Parameter nicht in Konfigurationsdatei schreiben"56495650#: builtin/clone.c:8295651msgid "cannot repack to clean up"5652msgstr "Kann \"repack\" zum Aufräumen nicht aufrufen"56535654#: builtin/clone.c:8315655msgid "cannot unlink temporary alternates file"5656msgstr "Kann temporäre \"alternates\"-Datei nicht entfernen"56575658#: builtin/clone.c:863 builtin/receive-pack.c:18555659msgid "Too many arguments."5660msgstr "Zu viele Argumente."56615662#: builtin/clone.c:8675663msgid "You must specify a repository to clone."5664msgstr "Sie müssen ein Repository zum Klonen angeben."56655666#: builtin/clone.c:8785667#, c-format5668msgid "--bare and --origin %s options are incompatible."5669msgstr "Die Optionen --bare und --origin %s sind inkompatibel."56705671#: builtin/clone.c:8815672msgid "--bare and --separate-git-dir are incompatible."5673msgstr "Die Optionen --bare und --separate-git-dir sind inkompatibel."56745675#: builtin/clone.c:8945676#, c-format5677msgid "repository '%s' does not exist"5678msgstr "Repository '%s' existiert nicht."56795680#: builtin/clone.c:900 builtin/fetch.c:12935681#, c-format5682msgid "depth %s is not a positive number"5683msgstr "Tiefe %s ist keine positive Zahl"56845685#: builtin/clone.c:9105686#, c-format5687msgid "destination path '%s' already exists and is not an empty directory."5688msgstr "Zielpfad '%s' existiert bereits und ist kein leeres Verzeichnis."56895690#: builtin/clone.c:9205691#, c-format5692msgid "working tree '%s' already exists."5693msgstr "Arbeitsverzeichnis '%s' existiert bereits."56945695#: builtin/clone.c:935 builtin/clone.c:946 builtin/submodule--helper.c:5445696#: builtin/worktree.c:222 builtin/worktree.c:2495697#, c-format5698msgid "could not create leading directories of '%s'"5699msgstr "Konnte führende Verzeichnisse von '%s' nicht erstellen."57005701#: builtin/clone.c:9385702#, c-format5703msgid "could not create work tree dir '%s'"5704msgstr "Konnte Arbeitsverzeichnis '%s' nicht erstellen"57055706#: builtin/clone.c:9565707#, c-format5708msgid "Cloning into bare repository '%s'...\n"5709msgstr "Klone in Bare-Repository '%s' ...\n"57105711#: builtin/clone.c:9585712#, c-format5713msgid "Cloning into '%s'...\n"5714msgstr "Klone nach '%s' ...\n"57155716#: builtin/clone.c:9975717msgid "--depth is ignored in local clones; use file:// instead."5718msgstr ""5719"Die Option --depth wird in lokalen Klonen ignoriert; benutzen Sie "5720"stattdessen file://"57215722#: builtin/clone.c:10005723msgid "source repository is shallow, ignoring --local"5724msgstr ""5725"Quelle ist ein Repository mit unvollständiger Historie (shallow),ignoriere --"5726"local"57275728#: builtin/clone.c:10055729msgid "--local is ignored"5730msgstr "--local wird ignoriert"57315732#: builtin/clone.c:10095733#, c-format5734msgid "Don't know how to clone %s"5735msgstr "Weiß nicht wie %s zu klonen ist."57365737#: builtin/clone.c:1058 builtin/clone.c:10665738#, c-format5739msgid "Remote branch %s not found in upstream %s"5740msgstr "Remote-Branch %s nicht im Upstream-Repository %s gefunden"57415742#: builtin/clone.c:10695743msgid "You appear to have cloned an empty repository."5744msgstr "Sie scheinen ein leeres Repository geklont zu haben."57455746#: builtin/column.c:95747msgid "git column [<options>]"5748msgstr "git column [<Optionen>]"57495750#: builtin/column.c:265751msgid "lookup config vars"5752msgstr "Konfigurationsvariablen nachschlagen"57535754#: builtin/column.c:27 builtin/column.c:285755msgid "layout to use"5756msgstr "zu verwendende Anordnung"57575758#: builtin/column.c:295759msgid "Maximum width"5760msgstr "maximale Breite"57615762#: builtin/column.c:305763msgid "Padding space on left border"5764msgstr "Abstand zum linken Rand"57655766#: builtin/column.c:315767msgid "Padding space on right border"5768msgstr "Abstand zur rechten Rand"57695770#: builtin/column.c:325771msgid "Padding space between columns"5772msgstr "Abstand zwischen Spalten"57735774#: builtin/column.c:515775msgid "--command must be the first argument"5776msgstr "Die Option --command muss an erster Stelle stehen."57775778#: builtin/commit.c:385779msgid "git commit [<options>] [--] <pathspec>..."5780msgstr "git commit [<Optionen>] [--] <Pfadspezifikation>..."57815782#: builtin/commit.c:435783msgid "git status [<options>] [--] <pathspec>..."5784msgstr "git status [<Optionen>] [--] <Pfadspezifikation>..."57855786#: builtin/commit.c:485787msgid ""5788"Your name and email address were configured automatically based\n"5789"on your username and hostname. Please check that they are accurate.\n"5790"You can suppress this message by setting them explicitly. Run the\n"5791"following command and follow the instructions in your editor to edit\n"5792"your configuration file:\n"5793"\n"5794" git config --global --edit\n"5795"\n"5796"After doing this, you may fix the identity used for this commit with:\n"5797"\n"5798" git commit --amend --reset-author\n"5799msgstr ""5800"Ihr Name und E-Mail Adresse wurden automatisch auf Basis\n"5801"Ihres Benutzer- und Rechnernamens konfiguriert. Bitte prüfen Sie, dass\n"5802"diese zutreffend sind. Sie können diese Meldung unterdrücken, indem Sie\n"5803"diese explizit setzen. Führen Sie dazu den folgenden Befehl aus und folgen\n"5804"Sie den Anweisungen in Ihrem Editor, um die Konfigurationsdatei zu "5805"bearbeiten:\n"5806"\n"5807" git config --global --edit\n"5808"\n"5809"Nachdem Sie das getan haben, können Sie Ihre Identität für diesen Commit\n"5810"ändern mit:\n"5811"\n"5812" git commit --amend --reset-author\n"58135814#: builtin/commit.c:615815msgid ""5816"Your name and email address were configured automatically based\n"5817"on your username and hostname. Please check that they are accurate.\n"5818"You can suppress this message by setting them explicitly:\n"5819"\n"5820" git config --global user.name \"Your Name\"\n"5821" git config --global user.email you@example.com\n"5822"\n"5823"After doing this, you may fix the identity used for this commit with:\n"5824"\n"5825" git commit --amend --reset-author\n"5826msgstr ""5827"Ihr Name und E-Mail Adresse wurden automatisch auf Basis\n"5828"Ihres Benutzer- und Rechnernamens konfiguriert. Bitte prüfen Sie, dass\n"5829"diese zutreffend sind. Sie können diese Meldung unterdrücken, indem Sie\n"5830"diese explizit setzen:\n"5831"\n"5832" git config --global user.name \"Ihr Name\"\n"5833" git config --global user.email ihre@emailadresse.de\n"5834"\n"5835"Nachdem Sie das getan haben, können Sie Ihre Identität für diesen Commit "5836"ändern:\n"5837"\n"5838" git commit --amend --reset-author\n"58395840#: builtin/commit.c:735841msgid ""5842"You asked to amend the most recent commit, but doing so would make\n"5843"it empty. You can repeat your command with --allow-empty, or you can\n"5844"remove the commit entirely with \"git reset HEAD^\".\n"5845msgstr ""5846"Sie fragten den jüngsten Commit nachzubessern, aber das würde diesen leer\n"5847"machen. Sie können Ihren Befehl mit --allow-empty wiederholen, oder diesen\n"5848"Commit mit \"git reset HEAD^\" vollständig entfernen.\n"58495850#: builtin/commit.c:785851msgid ""5852"The previous cherry-pick is now empty, possibly due to conflict resolution.\n"5853"If you wish to commit it anyway, use:\n"5854"\n"5855" git commit --allow-empty\n"5856"\n"5857msgstr ""5858"Der letzte \"cherry-pick\" ist jetzt leer, möglicherweise durch eine "5859"Konfliktauflösung.\n"5860"Wenn Sie dies trotzdem committen wollen, benutzen Sie:\n"5861"\n"5862" git commit --allow-empty\n"5863"\n"58645865#: builtin/commit.c:855866msgid "Otherwise, please use 'git reset'\n"5867msgstr "Andernfalls benutzen Sie bitte 'git reset'\n"58685869#: builtin/commit.c:885870msgid ""5871"If you wish to skip this commit, use:\n"5872"\n"5873" git reset\n"5874"\n"5875"Then \"git cherry-pick --continue\" will resume cherry-picking\n"5876"the remaining commits.\n"5877msgstr ""5878"Wenn Sie diesen Commit auslassen möchten, benutzen Sie:\n"5879"\n"5880" git reset\n"5881"\n"5882"Benutzen Sie anschließend \"git cherry-pick --continue\", um die\n"5883"Cherry-Pick-Operation mit den verbleibenden Commits fortzusetzen.\n"58845885#: builtin/commit.c:3085886msgid "failed to unpack HEAD tree object"5887msgstr "Fehler beim Entpacken des \"Tree\"-Objektes von HEAD."58885889#: builtin/commit.c:3495890msgid "unable to create temporary index"5891msgstr "Konnte temporären Index nicht erstellen."58925893#: builtin/commit.c:3555894msgid "interactive add failed"5895msgstr "interaktives Hinzufügen fehlgeschlagen"58965897#: builtin/commit.c:3685898msgid "unable to update temporary index"5899msgstr "Konnte temporären Index nicht aktualisieren."59005901#: builtin/commit.c:3705902msgid "Failed to update main cache tree"5903msgstr "Konnte Haupt-Cache-Verzeichnis nicht aktualisieren"59045905#: builtin/commit.c:394 builtin/commit.c:417 builtin/commit.c:4665906msgid "unable to write new_index file"5907msgstr "Konnte new_index Datei nicht schreiben"59085909#: builtin/commit.c:4485910msgid "cannot do a partial commit during a merge."5911msgstr "Kann keinen Teil-Commit durchführen, während ein Merge im Gange ist."59125913#: builtin/commit.c:4505914msgid "cannot do a partial commit during a cherry-pick."5915msgstr ""5916"Kann keinen Teil-Commit durchführen, während \"cherry-pick\" im Gange ist."59175918#: builtin/commit.c:4595919msgid "cannot read the index"5920msgstr "Kann Index nicht lesen"59215922#: builtin/commit.c:4785923msgid "unable to write temporary index file"5924msgstr "Konnte temporäre Index-Datei nicht schreiben."59255926#: builtin/commit.c:5835927#, c-format5928msgid "commit '%s' lacks author header"5929msgstr "Commit '%s' fehlt Autor-Kopfbereich"59305931#: builtin/commit.c:5855932#, c-format5933msgid "commit '%s' has malformed author line"5934msgstr "Commit '%s' hat fehlerhafte Autor-Zeile"59355936#: builtin/commit.c:6045937msgid "malformed --author parameter"5938msgstr "Fehlerhafter --author Parameter"59395940#: builtin/commit.c:6125941#, c-format5942msgid "invalid date format: %s"5943msgstr "Ungültiges Datumsformat: %s"59445945#: builtin/commit.c:6565946msgid ""5947"unable to select a comment character that is not used\n"5948"in the current commit message"5949msgstr ""5950"Konnte kein Kommentar-Zeichen auswählen, das nicht in\n"5951"der aktuellen Commit-Beschreibung verwendet wird."59525953#: builtin/commit.c:693 builtin/commit.c:726 builtin/commit.c:10925954#, c-format5955msgid "could not lookup commit %s"5956msgstr "Konnte Commit %s nicht nachschlagen"59575958#: builtin/commit.c:705 builtin/shortlog.c:2865959#, c-format5960msgid "(reading log message from standard input)\n"5961msgstr "(lese Log-Nachricht von Standard-Eingabe)\n"59625963#: builtin/commit.c:7075964msgid "could not read log from standard input"5965msgstr "Konnte Log nicht von Standard-Eingabe lesen."59665967#: builtin/commit.c:7115968#, c-format5969msgid "could not read log file '%s'"5970msgstr "Konnte Log-Datei '%s' nicht lesen"59715972#: builtin/commit.c:738 builtin/commit.c:7465973msgid "could not read SQUASH_MSG"5974msgstr "Konnte SQUASH_MSG nicht lesen"59755976#: builtin/commit.c:7435977msgid "could not read MERGE_MSG"5978msgstr "Konnte MERGE_MSG nicht lesen"59795980#: builtin/commit.c:7975981msgid "could not write commit template"5982msgstr "Konnte Commit-Vorlage nicht schreiben"59835984#: builtin/commit.c:8155985#, c-format5986msgid ""5987"\n"5988"It looks like you may be committing a merge.\n"5989"If this is not correct, please remove the file\n"5990"\t%s\n"5991"and try again.\n"5992msgstr ""5993"\n"5994"Es sieht so aus, als committen Sie einen Merge.\n"5995"Falls das nicht korrekt ist, löschen Sie bitte die Datei\n"5996"\t%s\n"5997"und versuchen Sie es erneut.\n"59985999#: builtin/commit.c:8206000#, c-format6001msgid ""6002"\n"6003"It looks like you may be committing a cherry-pick.\n"6004"If this is not correct, please remove the file\n"6005"\t%s\n"6006"and try again.\n"6007msgstr ""6008"\n"6009"Es sieht so aus, als committen Sie einen \"cherry-pick\".\n"6010"Falls das nicht korrekt ist, löschen Sie bitte die Datei\n"6011"\t%s\n"6012"und versuchen Sie es erneut.\n"60136014#: builtin/commit.c:8336015#, c-format6016msgid ""6017"Please enter the commit message for your changes. Lines starting\n"6018"with '%c' will be ignored, and an empty message aborts the commit.\n"6019msgstr ""6020"Bitte geben Sie eine Commit-Beschreibung für Ihre Änderungen ein. Zeilen,\n"6021"die mit '%c' beginnen, werden ignoriert, und eine leere Beschreibung\n"6022"bricht den Commit ab.\n"60236024#: builtin/commit.c:8406025#, c-format6026msgid ""6027"Please enter the commit message for your changes. Lines starting\n"6028"with '%c' will be kept; you may remove them yourself if you want to.\n"6029"An empty message aborts the commit.\n"6030msgstr ""6031"Bitte geben Sie eine Commit-Beschreibung für Ihre Änderungen ein. Zeilen, "6032"die\n"6033"mit '%c' beginnen, werden beibehalten; wenn Sie möchten, können Sie diese "6034"entfernen.\n"6035"Eine leere Beschreibung bricht den Commit ab.\n"60366037#: builtin/commit.c:8606038#, c-format6039msgid "%sAuthor: %.*s <%.*s>"6040msgstr "%sAutor: %.*s <%.*s>"60416042#: builtin/commit.c:8686043#, c-format6044msgid "%sDate: %s"6045msgstr "%sDatum: %s"60466047#: builtin/commit.c:8756048#, c-format6049msgid "%sCommitter: %.*s <%.*s>"6050msgstr "%sCommit-Ersteller: %.*s <%.*s>"60516052#: builtin/commit.c:8936053msgid "Cannot read index"6054msgstr "Kann Index nicht lesen"60556056#: builtin/commit.c:9506057msgid "Error building trees"6058msgstr "Fehler beim Erzeugen der \"Tree\"-Objekte"60596060#: builtin/commit.c:965 builtin/tag.c:2666061#, c-format6062msgid "Please supply the message using either -m or -F option.\n"6063msgstr ""6064"Bitte liefern Sie eine Beschreibung entweder mit der Option -m oder -F.\n"60656066#: builtin/commit.c:10676067#, c-format6068msgid "--author '%s' is not 'Name <email>' and matches no existing author"6069msgstr ""6070"--author '%s' ist nicht im Format 'Name <E-Mail>' und stimmt mit keinem "6071"vorhandenen Autor überein"60726073#: builtin/commit.c:1082 builtin/commit.c:13226074#, c-format6075msgid "Invalid untracked files mode '%s'"6076msgstr "Ungültiger Modus '%s' für unversionierte Dateien"60776078#: builtin/commit.c:11196079msgid "--long and -z are incompatible"6080msgstr "Die Optionen --long und -z sind inkompatibel."60816082#: builtin/commit.c:11496083msgid "Using both --reset-author and --author does not make sense"6084msgstr ""6085"Die Optionen --reset-author und --author können nicht gemeinsam verwendet "6086"werden."60876088#: builtin/commit.c:11586089msgid "You have nothing to amend."6090msgstr "Sie haben nichts für \"--amend\"."60916092#: builtin/commit.c:11616093msgid "You are in the middle of a merge -- cannot amend."6094msgstr "Ein Merge ist im Gange -- kann \"--amend\" nicht ausführen."60956096#: builtin/commit.c:11636097msgid "You are in the middle of a cherry-pick -- cannot amend."6098msgstr "\"cherry-pick\" ist im Gange -- kann \"--amend\" nicht ausführen."60996100#: builtin/commit.c:11666101msgid "Options --squash and --fixup cannot be used together"6102msgstr ""6103"Die Optionen --squash und --fixup können nicht gemeinsam verwendet werden."61046105#: builtin/commit.c:11766106msgid "Only one of -c/-C/-F/--fixup can be used."6107msgstr "Es kann nur eine Option von -c/-C/-F/--fixup verwendet werden."61086109#: builtin/commit.c:11786110msgid "Option -m cannot be combined with -c/-C/-F/--fixup."6111msgstr "Die Option -m kann nicht mit -c/-C/-F/--fixup kombiniert werden."61126113#: builtin/commit.c:11866114msgid "--reset-author can be used only with -C, -c or --amend."6115msgstr ""6116"Die Option --reset--author kann nur mit -C, -c oder --amend verwendet werden."61176118#: builtin/commit.c:12036119msgid "Only one of --include/--only/--all/--interactive/--patch can be used."6120msgstr ""6121"Es kann nur eine Option von --include/--only/--all/--interactive/--patch "6122"verwendet werden."61236124#: builtin/commit.c:12056125msgid "No paths with --include/--only does not make sense."6126msgstr ""6127"Die Optionen --include und --only können nur mit der Angabe von Pfaden "6128"verwendet werden."61296130#: builtin/commit.c:12076131msgid "Clever... amending the last one with dirty index."6132msgstr "Klug ... den letzten Commit mit einem geänderten Index nachbessern."61336134#: builtin/commit.c:12096135msgid "Explicit paths specified without -i or -o; assuming --only paths..."6136msgstr "Explizite Pfade ohne -i oder -o angegeben; nehme --only an"61376138#: builtin/commit.c:1221 builtin/tag.c:4746139#, c-format6140msgid "Invalid cleanup mode %s"6141msgstr "Ungültiger \"cleanup\" Modus %s"61426143#: builtin/commit.c:12266144msgid "Paths with -a does not make sense."6145msgstr "Die Option -a kann nicht mit der Angabe von Pfaden verwendet werden."61466147#: builtin/commit.c:1336 builtin/commit.c:16226148msgid "show status concisely"6149msgstr "Status im Kurzformat anzeigen"61506151#: builtin/commit.c:1338 builtin/commit.c:16246152msgid "show branch information"6153msgstr "Branchinformationen anzeigen"61546155#: builtin/commit.c:1340 builtin/commit.c:1626 builtin/push.c:5226156#: builtin/worktree.c:4406157msgid "machine-readable output"6158msgstr "maschinenlesbare Ausgabe"61596160#: builtin/commit.c:1343 builtin/commit.c:16286161msgid "show status in long format (default)"6162msgstr "Status im Langformat anzeigen (Standard)"61636164#: builtin/commit.c:1346 builtin/commit.c:16316165msgid "terminate entries with NUL"6166msgstr "Einträge mit NUL-Zeichen abschließen"61676168#: builtin/commit.c:1348 builtin/commit.c:1634 builtin/fast-export.c:9816169#: builtin/fast-export.c:984 builtin/tag.c:3536170msgid "mode"6171msgstr "Modus"61726173#: builtin/commit.c:1349 builtin/commit.c:16346174msgid "show untracked files, optional modes: all, normal, no. (Default: all)"6175msgstr ""6176"unversionierte Dateien anzeigen, optionale Modi: all, normal, no. (Standard: "6177"all)"61786179#: builtin/commit.c:13526180msgid "show ignored files"6181msgstr "ignorierte Dateien anzeigen"61826183#: builtin/commit.c:1353 parse-options.h:1556184msgid "when"6185msgstr "wann"61866187#: builtin/commit.c:13546188msgid ""6189"ignore changes to submodules, optional when: all, dirty, untracked. "6190"(Default: all)"6191msgstr ""6192"Änderungen in Submodulen ignorieren, optional wenn: all, dirty, untracked. "6193"(Standard: all)"61946195#: builtin/commit.c:13566196msgid "list untracked files in columns"6197msgstr "unversionierte Dateien in Spalten auflisten"61986199#: builtin/commit.c:14426200msgid "couldn't look up newly created commit"6201msgstr "Konnte neu erstellten Commit nicht nachschlagen."62026203#: builtin/commit.c:14446204msgid "could not parse newly created commit"6205msgstr "Konnte neulich erstellten Commit nicht analysieren."62066207#: builtin/commit.c:14896208msgid "detached HEAD"6209msgstr "losgelöster HEAD"62106211#: builtin/commit.c:14926212msgid " (root-commit)"6213msgstr " (Basis-Commit)"62146215#: builtin/commit.c:15926216msgid "suppress summary after successful commit"6217msgstr "Zusammenfassung nach erfolgreichem Commit unterdrücken"62186219#: builtin/commit.c:15936220msgid "show diff in commit message template"6221msgstr "Unterschiede in Commit-Beschreibungsvorlage anzeigen"62226223#: builtin/commit.c:15956224msgid "Commit message options"6225msgstr "Optionen für Commit-Beschreibung"62266227#: builtin/commit.c:1596 builtin/tag.c:3516228msgid "read message from file"6229msgstr "Beschreibung von Datei lesen"62306231#: builtin/commit.c:15976232msgid "author"6233msgstr "Autor"62346235#: builtin/commit.c:15976236msgid "override author for commit"6237msgstr "Autor eines Commits überschreiben"62386239#: builtin/commit.c:1598 builtin/gc.c:3266240msgid "date"6241msgstr "Datum"62426243#: builtin/commit.c:15986244msgid "override date for commit"6245msgstr "Datum eines Commits überschreiben"62466247#: builtin/commit.c:1599 builtin/merge.c:220 builtin/notes.c:3966248#: builtin/notes.c:559 builtin/tag.c:3496249msgid "message"6250msgstr "Beschreibung"62516252#: builtin/commit.c:15996253msgid "commit message"6254msgstr "Commit-Beschreibung"62556256#: builtin/commit.c:1600 builtin/commit.c:1601 builtin/commit.c:16026257#: builtin/commit.c:1603 parse-options.h:256 ref-filter.h:796258msgid "commit"6259msgstr "Commit"62606261#: builtin/commit.c:16006262msgid "reuse and edit message from specified commit"6263msgstr "Beschreibung des angegebenen Commits wiederverwenden und editieren"62646265#: builtin/commit.c:16016266msgid "reuse message from specified commit"6267msgstr "Beschreibung des angegebenen Commits wiederverwenden"62686269#: builtin/commit.c:16026270msgid "use autosquash formatted message to fixup specified commit"6271msgstr ""6272"eine automatisch zusammengesetzte Beschreibung zum Nachbessern des "6273"angegebenen Commits verwenden"62746275#: builtin/commit.c:16036276msgid "use autosquash formatted message to squash specified commit"6277msgstr ""6278"eine automatisch zusammengesetzte Beschreibung beim \"squash\" des "6279"angegebenen Commits verwenden"62806281#: builtin/commit.c:16046282msgid "the commit is authored by me now (used with -C/-c/--amend)"6283msgstr "Sie als Autor des Commits setzen (verwendet mit -C/-c/--amend)"62846285#: builtin/commit.c:1605 builtin/log.c:1409 builtin/revert.c:866286msgid "add Signed-off-by:"6287msgstr "'Signed-off-by:'-Zeile hinzufügen"62886289#: builtin/commit.c:16066290msgid "use specified template file"6291msgstr "angegebene Vorlagendatei verwenden"62926293#: builtin/commit.c:16076294msgid "force edit of commit"6295msgstr "Bearbeitung des Commits erzwingen"62966297#: builtin/commit.c:16086298msgid "default"6299msgstr "Standard"63006301#: builtin/commit.c:1608 builtin/tag.c:3546302msgid "how to strip spaces and #comments from message"6303msgstr ""6304"wie Leerzeichen und #Kommentare von der Beschreibung getrennt werden sollen"63056306#: builtin/commit.c:16096307msgid "include status in commit message template"6308msgstr "Status in die Commit-Beschreibungsvorlage einfügen"63096310#: builtin/commit.c:1611 builtin/merge.c:230 builtin/pull.c:1656311#: builtin/revert.c:936312msgid "GPG sign commit"6313msgstr "Commit mit GPG signieren"63146315#: builtin/commit.c:16146316msgid "Commit contents options"6317msgstr "Optionen für Commit-Inhalt"63186319#: builtin/commit.c:16156320msgid "commit all changed files"6321msgstr "alle geänderten Dateien committen"63226323#: builtin/commit.c:16166324msgid "add specified files to index for commit"6325msgstr "die angegebenen Dateien zusätzlich zum Commit vormerken"63266327#: builtin/commit.c:16176328msgid "interactively add files"6329msgstr "interaktives Hinzufügen von Dateien"63306331#: builtin/commit.c:16186332msgid "interactively add changes"6333msgstr "interaktives Hinzufügen von Änderungen"63346335#: builtin/commit.c:16196336msgid "commit only specified files"6337msgstr "nur die angegebenen Dateien committen"63386339#: builtin/commit.c:16206340msgid "bypass pre-commit and commit-msg hooks"6341msgstr "Hooks pre-commit und commit-msg umgehen"63426343#: builtin/commit.c:16216344msgid "show what would be committed"6345msgstr "anzeigen, was committet werden würde"63466347#: builtin/commit.c:16326348msgid "amend previous commit"6349msgstr "vorherigen Commit ändern"63506351#: builtin/commit.c:16336352msgid "bypass post-rewrite hook"6353msgstr "\"post-rewrite hook\" umgehen"63546355#: builtin/commit.c:16386356msgid "ok to record an empty change"6357msgstr "Aufzeichnung einer leeren Änderung erlauben"63586359#: builtin/commit.c:16406360msgid "ok to record a change with an empty message"6361msgstr "Aufzeichnung einer Änderung mit einer leeren Beschreibung erlauben"63626363#: builtin/commit.c:16696364msgid "could not parse HEAD commit"6365msgstr "Konnte Commit von HEAD nicht analysieren."63666367#: builtin/commit.c:17196368#, c-format6369msgid "Corrupt MERGE_HEAD file (%s)"6370msgstr "Beschädigte MERGE_HEAD-Datei (%s)"63716372#: builtin/commit.c:17266373msgid "could not read MERGE_MODE"6374msgstr "Konnte MERGE_MODE nicht lesen"63756376#: builtin/commit.c:17456377#, c-format6378msgid "could not read commit message: %s"6379msgstr "Konnte Commit-Beschreibung nicht lesen: %s"63806381#: builtin/commit.c:17566382#, c-format6383msgid "Aborting commit; you did not edit the message.\n"6384msgstr "Commit abgebrochen; Sie haben die Beschreibung nicht editiert.\n"63856386#: builtin/commit.c:17616387#, c-format6388msgid "Aborting commit due to empty commit message.\n"6389msgstr "Commit aufgrund leerer Beschreibung abgebrochen.\n"63906391#: builtin/commit.c:18096392msgid ""6393"Repository has been updated, but unable to write\n"6394"new_index file. Check that disk is not full and quota is\n"6395"not exceeded, and then \"git reset HEAD\" to recover."6396msgstr ""6397"Das Repository wurde aktualisiert, aber die \"new_index\"-Datei\n"6398"konnte nicht geschrieben werden. Prüfen Sie, dass Ihre Festplatte nicht\n"6399"voll und Ihr Kontingent nicht aufgebraucht ist und führen Sie\n"6400"anschließend \"git reset HEAD\" zu Wiederherstellung aus."64016402#: builtin/config.c:96403msgid "git config [<options>]"6404msgstr "git config [<Optionen>]"64056406#: builtin/config.c:556407msgid "Config file location"6408msgstr "Ort der Konfigurationsdatei"64096410#: builtin/config.c:566411msgid "use global config file"6412msgstr "globale Konfigurationsdatei verwenden"64136414#: builtin/config.c:576415msgid "use system config file"6416msgstr "systemweite Konfigurationsdatei verwenden"64176418#: builtin/config.c:586419msgid "use repository config file"6420msgstr "Konfigurationsdatei des Repositories verwenden"64216422#: builtin/config.c:596423msgid "use given config file"6424msgstr "die angegebene Konfigurationsdatei verwenden"64256426#: builtin/config.c:606427msgid "blob-id"6428msgstr "Blob-Id"64296430#: builtin/config.c:606431msgid "read config from given blob object"6432msgstr "Konfiguration von angegebenem Blob-Objekt lesen"64336434#: builtin/config.c:616435msgid "Action"6436msgstr "Aktion"64376438#: builtin/config.c:626439msgid "get value: name [value-regex]"6440msgstr "Wert zurückgeben: Name [Wert-regex]"64416442#: builtin/config.c:636443msgid "get all values: key [value-regex]"6444msgstr "alle Werte zurückgeben: Schlüssel [Wert-regex]"64456446#: builtin/config.c:646447msgid "get values for regexp: name-regex [value-regex]"6448msgstr "Werte für den regulären Ausdruck zurückgeben: Name-regex [Wert-regex]"64496450#: builtin/config.c:656451msgid "get value specific for the URL: section[.var] URL"6452msgstr "Wert spezifisch für eine URL zurückgeben: section[.var] URL"64536454#: builtin/config.c:666455msgid "replace all matching variables: name value [value_regex]"6456msgstr "alle passenden Variablen ersetzen: Name Wert [Wert-regex] "64576458#: builtin/config.c:676459msgid "add a new variable: name value"6460msgstr "neue Variable hinzufügen: Name Wert"64616462#: builtin/config.c:686463msgid "remove a variable: name [value-regex]"6464msgstr "eine Variable entfernen: Name [Wert-regex]"64656466#: builtin/config.c:696467msgid "remove all matches: name [value-regex]"6468msgstr "alle Übereinstimmungen entfernen: Name [Wert-regex]"64696470#: builtin/config.c:706471msgid "rename section: old-name new-name"6472msgstr "eine Sektion umbenennen: alter-Name neuer-Name"64736474#: builtin/config.c:716475msgid "remove a section: name"6476msgstr "eine Sektion entfernen: Name"64776478#: builtin/config.c:726479msgid "list all"6480msgstr "alles auflisten"64816482#: builtin/config.c:736483msgid "open an editor"6484msgstr "einen Editor öffnen"64856486#: builtin/config.c:746487msgid "find the color configured: slot [default]"6488msgstr "die konfigurierte Farbe finden: Slot [Standard]"64896490#: builtin/config.c:756491msgid "find the color setting: slot [stdout-is-tty]"6492msgstr "die Farbeinstellung finden: Slot [Standard-Ausgabe-ist-Terminal]"64936494#: builtin/config.c:766495msgid "Type"6496msgstr "Typ"64976498#: builtin/config.c:776499msgid "value is \"true\" or \"false\""6500msgstr "Wert ist \"true\" oder \"false\""65016502#: builtin/config.c:786503msgid "value is decimal number"6504msgstr "Wert ist eine Dezimalzahl"65056506#: builtin/config.c:796507msgid "value is --bool or --int"6508msgstr "Wert ist --bool oder --int"65096510#: builtin/config.c:806511msgid "value is a path (file or directory name)"6512msgstr "Wert ist ein Pfad (Datei oder Verzeichnisname)"65136514#: builtin/config.c:816515msgid "Other"6516msgstr "Sonstiges"65176518#: builtin/config.c:826519msgid "terminate values with NUL byte"6520msgstr "schließt Werte mit NUL-Byte ab"65216522#: builtin/config.c:836523msgid "show variable names only"6524msgstr "nur Variablennamen anzeigen"65256526#: builtin/config.c:846527msgid "respect include directives on lookup"6528msgstr "beachtet \"include\"-Direktiven beim Nachschlagen"65296530#: builtin/config.c:856531msgid "show origin of config (file, standard input, blob, command line)"6532msgstr ""6533"Ursprung der Konfiguration anzeigen (Datei, Standard-Eingabe, Blob, "6534"Befehlszeile)"65356536#: builtin/config.c:3276537msgid "unable to parse default color value"6538msgstr "konnte Standard-Farbwert nicht parsen"65396540#: builtin/config.c:4716541#, c-format6542msgid ""6543"# This is Git's per-user configuration file.\n"6544"[user]\n"6545"# Please adapt and uncomment the following lines:\n"6546"#\tname = %s\n"6547"#\temail = %s\n"6548msgstr ""6549"# Das ist Git's benutzerspezifische Konfiguraionsdatei.\n"6550"[user]\n"6551"# Bitte passen Sie die folgenden Zeilen an und kommentieren Sie diese aus:\n"6552"#\tname = %s\n"6553"#\temail = %s\n"65546555#: builtin/config.c:6136556#, c-format6557msgid "cannot create configuration file %s"6558msgstr "Konnte Konfigurationsdatei '%s' nicht erstellen."65596560#: builtin/count-objects.c:776561msgid "git count-objects [-v] [-H | --human-readable]"6562msgstr "git count-objects [-v] [-H | --human-readable]"65636564#: builtin/count-objects.c:876565msgid "print sizes in human readable format"6566msgstr "gibt Größenangaben in menschenlesbaren Format aus"65676568#: builtin/describe.c:176569msgid "git describe [<options>] [<commit-ish>...]"6570msgstr "git describe [<Optionen>] [<Commit-Angabe>...]"65716572#: builtin/describe.c:186573msgid "git describe [<options>] --dirty"6574msgstr "git describe [<Optionen>] --dirty"65756576#: builtin/describe.c:2176577#, c-format6578msgid "annotated tag %s not available"6579msgstr "annotiertes Tag %s ist nicht verfügbar"65806581#: builtin/describe.c:2216582#, c-format6583msgid "annotated tag %s has no embedded name"6584msgstr "annotiertes Tag %s hat keinen eingebetteten Namen"65856586#: builtin/describe.c:2236587#, c-format6588msgid "tag '%s' is really '%s' here"6589msgstr "Tag '%s' ist eigentlich '%s' hier"65906591#: builtin/describe.c:250 builtin/log.c:4806592#, c-format6593msgid "Not a valid object name %s"6594msgstr "%s ist kein gültiger Objekt-Name"65956596#: builtin/describe.c:2536597#, c-format6598msgid "%s is not a valid '%s' object"6599msgstr "%s ist kein gültiges '%s' Objekt"66006601#: builtin/describe.c:2706602#, c-format6603msgid "no tag exactly matches '%s'"6604msgstr "kein Tag entspricht exakt '%s'"66056606#: builtin/describe.c:2726607#, c-format6608msgid "searching to describe %s\n"6609msgstr "suche zur Beschreibung von %s\n"66106611#: builtin/describe.c:3196612#, c-format6613msgid "finished search at %s\n"6614msgstr "beendete Suche bei %s\n"66156616#: builtin/describe.c:3466617#, c-format6618msgid ""6619"No annotated tags can describe '%s'.\n"6620"However, there were unannotated tags: try --tags."6621msgstr ""6622"Keine annotierten Tags können '%s' beschreiben.\n"6623"Jedoch gab es nicht-annotierte Tags: versuchen Sie --tags."66246625#: builtin/describe.c:3506626#, c-format6627msgid ""6628"No tags can describe '%s'.\n"6629"Try --always, or create some tags."6630msgstr ""6631"Keine Tags können '%s' beschreiben.\n"6632"Versuchen Sie --always oder erstellen Sie einige Tags."66336634#: builtin/describe.c:3716635#, c-format6636msgid "traversed %lu commits\n"6637msgstr "%lu Commits durchlaufen\n"66386639#: builtin/describe.c:3746640#, c-format6641msgid ""6642"more than %i tags found; listed %i most recent\n"6643"gave up search at %s\n"6644msgstr ""6645"mehr als %i Tags gefunden; Führe die ersten %i auf\n"6646"Suche bei %s aufgegeben\n"66476648#: builtin/describe.c:3966649msgid "find the tag that comes after the commit"6650msgstr "das Tag finden, das nach dem Commit kommt"66516652#: builtin/describe.c:3976653msgid "debug search strategy on stderr"6654msgstr "die Suchstrategie in der Standard-Fehlerausgabe protokollieren"66556656#: builtin/describe.c:3986657msgid "use any ref"6658msgstr "alle Referenzen verwenden"66596660#: builtin/describe.c:3996661msgid "use any tag, even unannotated"6662msgstr "jedes Tag verwenden, auch nicht-annotierte"66636664#: builtin/describe.c:4006665msgid "always use long format"6666msgstr "immer langes Format verwenden"66676668#: builtin/describe.c:4016669msgid "only follow first parent"6670msgstr "nur erstem Elternteil folgen"66716672#: builtin/describe.c:4046673msgid "only output exact matches"6674msgstr "nur exakte Übereinstimmungen ausgeben"66756676#: builtin/describe.c:4066677msgid "consider <n> most recent tags (default: 10)"6678msgstr "die jüngsten <n> Tags betrachten (Standard: 10)"66796680#: builtin/describe.c:4086681msgid "only consider tags matching <pattern>"6682msgstr "nur Tags, die <Muster> entsprechen, betrachten"66836684#: builtin/describe.c:410 builtin/name-rev.c:3216685msgid "show abbreviated commit object as fallback"6686msgstr "gekürztes Commit-Objekt anzeigen, wenn sonst nichts zutrifft"66876688#: builtin/describe.c:4116689msgid "mark"6690msgstr "Kennzeichen"66916692#: builtin/describe.c:4126693msgid "append <mark> on dirty working tree (default: \"-dirty\")"6694msgstr ""6695"<Kennzeichen> bei geändertem Arbeitsverzeichnis hinzufügen (Standard: \"-"6696"dirty\")"66976698#: builtin/describe.c:4306699msgid "--long is incompatible with --abbrev=0"6700msgstr "Die Optionen --long und --abbrev=0 sind inkompatibel."67016702#: builtin/describe.c:4566703msgid "No names found, cannot describe anything."6704msgstr "Keine Namen gefunden, kann nichts beschreiben."67056706#: builtin/describe.c:4766707msgid "--dirty is incompatible with commit-ishes"6708msgstr "Die Option --dirty kann nicht mit Commits verwendet werden."67096710#: builtin/diff.c:866711#, c-format6712msgid "'%s': not a regular file or symlink"6713msgstr "'%s': keine reguläre Datei oder symbolische Verknüpfung"67146715#: builtin/diff.c:2376716#, c-format6717msgid "invalid option: %s"6718msgstr "Ungültige Option: %s"67196720#: builtin/diff.c:3606721msgid "Not a git repository"6722msgstr "Kein Git-Repository"67236724#: builtin/diff.c:4036725#, c-format6726msgid "invalid object '%s' given."6727msgstr "Objekt '%s' ist ungültig."67286729#: builtin/diff.c:4126730#, c-format6731msgid "more than two blobs given: '%s'"6732msgstr "Mehr als zwei Blobs angegeben: '%s'"67336734#: builtin/diff.c:4196735#, c-format6736msgid "unhandled object '%s' given."6737msgstr "unbehandeltes Objekt '%s' angegeben"67386739#: builtin/fast-export.c:256740msgid "git fast-export [rev-list-opts]"6741msgstr "git fast-export [rev-list-opts]"67426743#: builtin/fast-export.c:9806744msgid "show progress after <n> objects"6745msgstr "Fortschritt nach <n> Objekten anzeigen"67466747#: builtin/fast-export.c:9826748msgid "select handling of signed tags"6749msgstr "Behandlung von signierten Tags wählen"67506751#: builtin/fast-export.c:9856752msgid "select handling of tags that tag filtered objects"6753msgstr "Behandlung von Tags wählen, die gefilterte Objekte markieren"67546755#: builtin/fast-export.c:9886756msgid "Dump marks to this file"6757msgstr "Kennzeichen in diese Datei schreiben"67586759#: builtin/fast-export.c:9906760msgid "Import marks from this file"6761msgstr "Kennzeichen von dieser Datei importieren"67626763#: builtin/fast-export.c:9926764msgid "Fake a tagger when tags lack one"6765msgstr "künstlich einen Tag-Ersteller erzeugen, wenn das Tag keinen hat"67666767#: builtin/fast-export.c:9946768msgid "Output full tree for each commit"6769msgstr "für jeden Commit das gesamte Verzeichnis ausgeben"67706771#: builtin/fast-export.c:9966772msgid "Use the done feature to terminate the stream"6773msgstr "die \"done\"-Funktion benutzen, um den Datenstrom abzuschließen"67746775#: builtin/fast-export.c:9976776msgid "Skip output of blob data"6777msgstr "Ausgabe von Blob-Daten überspringen"67786779#: builtin/fast-export.c:9986780msgid "refspec"6781msgstr "Refspec"67826783#: builtin/fast-export.c:9996784msgid "Apply refspec to exported refs"6785msgstr "Refspec auf exportierte Referenzen anwenden"67866787#: builtin/fast-export.c:10006788msgid "anonymize output"6789msgstr "Ausgabe anonymisieren"67906791#: builtin/fetch.c:216792msgid "git fetch [<options>] [<repository> [<refspec>...]]"6793msgstr "git fetch [<Optionen>] [<Repository> [<Refspec>...]]"67946795#: builtin/fetch.c:226796msgid "git fetch [<options>] <group>"6797msgstr "git fetch [<Optionen>] <Gruppe>"67986799#: builtin/fetch.c:236800msgid "git fetch --multiple [<options>] [(<repository> | <group>)...]"6801msgstr "git fetch --multiple [<Optionen>] [(<Repository> | <Gruppe>)...]"68026803#: builtin/fetch.c:246804msgid "git fetch --all [<options>]"6805msgstr "git fetch --all [<Optionen>]"68066807#: builtin/fetch.c:93 builtin/pull.c:1746808msgid "fetch from all remotes"6809msgstr "fordert von allen Remote-Repositories an"68106811#: builtin/fetch.c:95 builtin/pull.c:1776812msgid "append to .git/FETCH_HEAD instead of overwriting"6813msgstr "an .git/FETCH_HEAD anhängen, anstatt zu überschreiben"68146815#: builtin/fetch.c:97 builtin/pull.c:1806816msgid "path to upload pack on remote end"6817msgstr "Pfad des Programms zum Hochladen von Paketen auf der Gegenseite"68186819#: builtin/fetch.c:98 builtin/pull.c:1826820msgid "force overwrite of local branch"6821msgstr "das Überschreiben von lokalen Branches erzwingen"68226823#: builtin/fetch.c:1006824msgid "fetch from multiple remotes"6825msgstr "von mehreren Remote-Repositories anfordern"68266827#: builtin/fetch.c:102 builtin/pull.c:1846828msgid "fetch all tags and associated objects"6829msgstr "alle Tags und verbundene Objekte anfordern"68306831#: builtin/fetch.c:1046832msgid "do not fetch all tags (--no-tags)"6833msgstr "nicht alle Tags anfordern (--no-tags)"68346835#: builtin/fetch.c:1066836msgid "number of submodules fetched in parallel"6837msgstr "Anzahl der parallel anzufordernden Submodule"68386839#: builtin/fetch.c:108 builtin/pull.c:1876840msgid "prune remote-tracking branches no longer on remote"6841msgstr ""6842"Remote-Tracking-Branches entfernen, die sich nicht mehr im Remote-Repository "6843"befinden"68446845#: builtin/fetch.c:109 builtin/pull.c:1906846msgid "on-demand"6847msgstr "bei-Bedarf"68486849#: builtin/fetch.c:110 builtin/pull.c:1916850msgid "control recursive fetching of submodules"6851msgstr "rekursive Anforderungen von Submodulen kontrollieren"68526853#: builtin/fetch.c:114 builtin/pull.c:1996854msgid "keep downloaded pack"6855msgstr "heruntergeladenes Paket behalten"68566857#: builtin/fetch.c:1166858msgid "allow updating of HEAD ref"6859msgstr "Aktualisierung der \"HEAD\"-Referenz erlauben"68606861#: builtin/fetch.c:119 builtin/pull.c:2026862msgid "deepen history of shallow clone"6863msgstr ""6864"die Historie eines Klons mit unvollständiger Historie (shallow) vertiefen"68656866#: builtin/fetch.c:121 builtin/pull.c:2056867msgid "convert to a complete repository"6868msgstr "zu einem vollständigen Repository konvertieren"68696870#: builtin/fetch.c:123 builtin/log.c:14266871msgid "dir"6872msgstr "Verzeichnis"68736874#: builtin/fetch.c:1246875msgid "prepend this to submodule path output"6876msgstr "dies an die Ausgabe der Submodul-Pfade voranstellen"68776878#: builtin/fetch.c:1276879msgid "default mode for recursion"6880msgstr "Standard-Modus für Rekursion"68816882#: builtin/fetch.c:129 builtin/pull.c:2086883msgid "accept refs that update .git/shallow"6884msgstr "Referenzen, die .git/shallow aktualisieren, akzeptieren"68856886#: builtin/fetch.c:130 builtin/pull.c:2106887msgid "refmap"6888msgstr "Refmap"68896890#: builtin/fetch.c:131 builtin/pull.c:2116891msgid "specify fetch refmap"6892msgstr "Refmap für 'fetch' angeben"68936894#: builtin/fetch.c:3876895msgid "Couldn't find remote ref HEAD"6896msgstr "Konnte Remote-Referenz von HEAD nicht finden."68976898#: builtin/fetch.c:5036899#, c-format6900msgid "configuration fetch.output contains invalid value %s"6901msgstr "Konfiguration fetch.output enthält ungültigen Wert %s"69026903#: builtin/fetch.c:5926904#, c-format6905msgid "object %s not found"6906msgstr "Objekt %s nicht gefunden"69076908#: builtin/fetch.c:5966909msgid "[up to date]"6910msgstr "[aktuell]"69116912#: builtin/fetch.c:609 builtin/fetch.c:6896913msgid "[rejected]"6914msgstr "[zurückgewiesen]"69156916#: builtin/fetch.c:6106917msgid "can't fetch in current branch"6918msgstr "kann \"fetch\" im aktuellen Branch nicht ausführen"69196920#: builtin/fetch.c:6196921msgid "[tag update]"6922msgstr "[Tag Aktualisierung]"69236924#: builtin/fetch.c:620 builtin/fetch.c:653 builtin/fetch.c:6696925#: builtin/fetch.c:6846926msgid "unable to update local ref"6927msgstr "kann lokale Referenz nicht aktualisieren"69286929#: builtin/fetch.c:6396930msgid "[new tag]"6931msgstr "[neues Tag]"69326933#: builtin/fetch.c:6426934msgid "[new branch]"6935msgstr "[neuer Branch]"69366937#: builtin/fetch.c:6456938msgid "[new ref]"6939msgstr "[neue Referenz]"69406941#: builtin/fetch.c:6846942msgid "forced update"6943msgstr "Aktualisierung erzwungen"69446945#: builtin/fetch.c:6896946msgid "non-fast-forward"6947msgstr "kein Vorspulen"69486949#: builtin/fetch.c:7336950#, c-format6951msgid "%s did not send all necessary objects\n"6952msgstr "%s hat nicht alle erforderlichen Objekte gesendet\n"69536954#: builtin/fetch.c:7536955#, c-format6956msgid "reject %s because shallow roots are not allowed to be updated"6957msgstr ""6958"%s wurde zurückgewiesen, da Ursprungs-Commits von Repositoriesmit "6959"unvollständiger Historie (shallow) nicht aktualisiert werden dürfen."69606961#: builtin/fetch.c:839 builtin/fetch.c:9346962#, c-format6963msgid "From %.*s\n"6964msgstr "Von %.*s\n"69656966#: builtin/fetch.c:8506967#, c-format6968msgid ""6969"some local refs could not be updated; try running\n"6970" 'git remote prune %s' to remove any old, conflicting branches"6971msgstr ""6972"Einige lokale Referenzen konnten nicht aktualisiert werden; versuchen Sie\n"6973"'git remote prune %s', um jeden älteren, widersprüchlichen Branch zu löschen."69746975#: builtin/fetch.c:9046976#, c-format6977msgid " (%s will become dangling)"6978msgstr " (%s wird unreferenziert)"69796980#: builtin/fetch.c:9056981#, c-format6982msgid " (%s has become dangling)"6983msgstr " (%s wurde unreferenziert)"69846985#: builtin/fetch.c:9376986msgid "[deleted]"6987msgstr "[gelöscht]"69886989#: builtin/fetch.c:938 builtin/remote.c:10206990msgid "(none)"6991msgstr "(nichts)"69926993#: builtin/fetch.c:9606994#, c-format6995msgid "Refusing to fetch into current branch %s of non-bare repository"6996msgstr ""6997"Der \"fetch\" in den aktuellen Branch %s von einem nicht-Bare-Repository "6998"wurde verweigert."69997000#: builtin/fetch.c:9797001#, c-format7002msgid "Option \"%s\" value \"%s\" is not valid for %s"7003msgstr "Option \"%s\" Wert \"%s\" ist nicht gültig für %s"70047005#: builtin/fetch.c:9827006#, c-format7007msgid "Option \"%s\" is ignored for %s\n"7008msgstr "Option \"%s\" wird ignoriert für %s\n"70097010#: builtin/fetch.c:10397011#, c-format7012msgid "Don't know how to fetch from %s"7013msgstr "Weiß nicht wie von %s angefordert wird."70147015#: builtin/fetch.c:11997016#, c-format7017msgid "Fetching %s\n"7018msgstr "Fordere an von %s\n"70197020#: builtin/fetch.c:1201 builtin/remote.c:967021#, c-format7022msgid "Could not fetch %s"7023msgstr "Konnte nicht von %s anfordern"70247025#: builtin/fetch.c:12197026msgid ""7027"No remote repository specified. Please, specify either a URL or a\n"7028"remote name from which new revisions should be fetched."7029msgstr ""7030"Kein Remote-Repository angegeben. Bitte geben Sie entweder eine URL\n"7031"oder den Namen des Remote-Repositories an, von welchem neue\n"7032"Commits angefordert werden sollen."70337034#: builtin/fetch.c:12427035msgid "You need to specify a tag name."7036msgstr "Sie müssen den Namen des Tags angeben."70377038#: builtin/fetch.c:12847039msgid "--depth and --unshallow cannot be used together"7040msgstr ""7041"Die Optionen --depth und --unshallow können nicht gemeinsam verwendet werden."70427043#: builtin/fetch.c:12867044msgid "--unshallow on a complete repository does not make sense"7045msgstr ""7046"Die Option --unshallow kann nicht in einem Repository mit unvollständiger "7047"Historie verwendet werden."70487049#: builtin/fetch.c:13067050msgid "fetch --all does not take a repository argument"7051msgstr "fetch --all akzeptiert kein Repository als Argument"70527053#: builtin/fetch.c:13087054msgid "fetch --all does not make sense with refspecs"7055msgstr "fetch --all kann nicht mit Refspecs verwendet werden."70567057#: builtin/fetch.c:13197058#, c-format7059msgid "No such remote or remote group: %s"7060msgstr "Kein Remote-Repository (einzeln oder Gruppe): %s"70617062#: builtin/fetch.c:13277063msgid "Fetching a group and specifying refspecs does not make sense"7064msgstr ""7065"Das Abholen einer Gruppe von Remote-Repositories kann nicht mit der Angabe\n"7066"von Refspecs verwendet werden."70677068#: builtin/fmt-merge-msg.c:147069msgid ""7070"git fmt-merge-msg [-m <message>] [--log[=<n>] | --no-log] [--file <file>]"7071msgstr ""7072"git fmt-merge-msg [-m <Beschreibung>] [--log[=<n>] | --no-log] [--file "7073"<Datei>]"70747075#: builtin/fmt-merge-msg.c:6677076msgid "populate log with at most <n> entries from shortlog"7077msgstr "Historie mit höchstens <n> Einträgen von \"shortlog\" hinzufügen"70787079#: builtin/fmt-merge-msg.c:6707080msgid "alias for --log (deprecated)"7081msgstr "Alias für --log (veraltet)"70827083#: builtin/fmt-merge-msg.c:6737084msgid "text"7085msgstr "Text"70867087#: builtin/fmt-merge-msg.c:6747088msgid "use <text> as start of message"7089msgstr "<Text> als Beschreibungsanfang verwenden"70907091#: builtin/fmt-merge-msg.c:6757092msgid "file to read from"7093msgstr "Datei zum Einlesen"70947095#: builtin/for-each-ref.c:97096msgid "git for-each-ref [<options>] [<pattern>]"7097msgstr "git for-each-ref [<Optionen>] [<Muster>]"70987099#: builtin/for-each-ref.c:107100msgid "git for-each-ref [--points-at <object>]"7101msgstr "git for-each-ref [--points-at <Objekt>]"71027103#: builtin/for-each-ref.c:117104msgid "git for-each-ref [(--merged | --no-merged) [<object>]]"7105msgstr "git for-each-ref [(--merged | --no-merged) [<Objekt>]]"71067107#: builtin/for-each-ref.c:127108msgid "git for-each-ref [--contains [<object>]]"7109msgstr "git for-each-ref [--contains [<Objekt>]]"71107111#: builtin/for-each-ref.c:277112msgid "quote placeholders suitably for shells"7113msgstr "Platzhalter als Shell-String formatieren"71147115#: builtin/for-each-ref.c:297116msgid "quote placeholders suitably for perl"7117msgstr "Platzhalter als Perl-String formatieren"71187119#: builtin/for-each-ref.c:317120msgid "quote placeholders suitably for python"7121msgstr "Platzhalter als Python-String formatieren"71227123#: builtin/for-each-ref.c:337124msgid "quote placeholders suitably for Tcl"7125msgstr "Platzhalter als Tcl-String formatieren"71267127#: builtin/for-each-ref.c:367128msgid "show only <n> matched refs"7129msgstr "nur <n> passende Referenzen anzeigen"71307131#: builtin/for-each-ref.c:37 builtin/tag.c:3727132msgid "format to use for the output"7133msgstr "für die Ausgabe zu verwendendes Format"71347135#: builtin/for-each-ref.c:417136msgid "print only refs which points at the given object"7137msgstr "nur auf dieses Objekt zeigende Referenzen ausgeben"71387139#: builtin/for-each-ref.c:437140msgid "print only refs that are merged"7141msgstr "nur zusammengeführte Referenzen ausgeben"71427143#: builtin/for-each-ref.c:447144msgid "print only refs that are not merged"7145msgstr "nur nicht zusammengeführte Referenzen ausgeben"71467147#: builtin/for-each-ref.c:457148msgid "print only refs which contain the commit"7149msgstr "nur Referenzen ausgeben, die diesen Commit enthalten"71507151#: builtin/fsck.c:5197152msgid "Checking object directories"7153msgstr "Prüfe Objekt-Verzeichnisse"71547155#: builtin/fsck.c:5887156msgid "git fsck [<options>] [<object>...]"7157msgstr "git fsck [<Optionen>] [<Objekt>...]"71587159#: builtin/fsck.c:5947160msgid "show unreachable objects"7161msgstr "unerreichbare Objekte anzeigen"71627163#: builtin/fsck.c:5957164msgid "show dangling objects"7165msgstr "unreferenzierte Objekte anzeigen"71667167#: builtin/fsck.c:5967168msgid "report tags"7169msgstr "Tags melden"71707171#: builtin/fsck.c:5977172msgid "report root nodes"7173msgstr "Hauptwurzeln melden"71747175#: builtin/fsck.c:5987176msgid "make index objects head nodes"7177msgstr "Index-Objekte in Erreichbarkeitsprüfung einbeziehen"71787179#: builtin/fsck.c:5997180msgid "make reflogs head nodes (default)"7181msgstr "Reflogs in Erreichbarkeitsprüfung einbeziehen (Standard)"71827183#: builtin/fsck.c:6007184msgid "also consider packs and alternate objects"7185msgstr "ebenso Pakete und alternative Objekte betrachten"71867187#: builtin/fsck.c:6017188msgid "check only connectivity"7189msgstr "nur Konnektivität prüfen"71907191#: builtin/fsck.c:6027192msgid "enable more strict checking"7193msgstr "genauere Prüfung aktivieren"71947195#: builtin/fsck.c:6047196msgid "write dangling objects in .git/lost-found"7197msgstr "unreferenzierte Objekte nach .git/lost-found schreiben"71987199#: builtin/fsck.c:605 builtin/prune.c:1077200msgid "show progress"7201msgstr "Fortschrittsanzeige anzeigen"72027203#: builtin/fsck.c:6067204msgid "show verbose names for reachable objects"7205msgstr "ausführliche Namen für erreichbare Objekte anzeigen"72067207#: builtin/fsck.c:6717208msgid "Checking objects"7209msgstr "Prüfe Objekte"72107211#: builtin/gc.c:257212msgid "git gc [<options>]"7213msgstr "git gc [<Optionen>]"72147215#: builtin/gc.c:727216#, c-format7217msgid "Invalid %s: '%s'"7218msgstr "Ungültiger %s: '%s'"72197220#: builtin/gc.c:1397221#, c-format7222msgid "insanely long object directory %.*s"7223msgstr "zu langes Objekt-Verzeichnis %.*s"72247225#: builtin/gc.c:2907226#, c-format7227msgid ""7228"The last gc run reported the following. Please correct the root cause\n"7229"and remove %s.\n"7230"Automatic cleanup will not be performed until the file is removed.\n"7231"\n"7232"%s"7233msgstr ""7234"Die letzte Ausführung von \"gc run\" enthielt die folgenden Meldungen.\n"7235"Bitte beheben Sie das Hauptproblem und löschen Sie %s.\n"7236"Ein automatischer Cleanup wird nicht ausgeführt, bis diese Datei entfernt\n"7237"wurde.\n"7238"\n"7239"%s"72407241#: builtin/gc.c:3277242msgid "prune unreferenced objects"7243msgstr "unreferenzierte Objekte entfernen"72447245#: builtin/gc.c:3297246msgid "be more thorough (increased runtime)"7247msgstr "mehr Gründlichkeit (erhöht Laufzeit)"72487249#: builtin/gc.c:3307250msgid "enable auto-gc mode"7251msgstr "\"auto-gc\" Modus aktivieren"72527253#: builtin/gc.c:3317254msgid "force running gc even if there may be another gc running"7255msgstr ""7256"Ausführung von \"git gc\" erwzingen, selbst wenn ein anderes\n"7257"\"git gc\" bereits ausgeführt wird"72587259#: builtin/gc.c:3737260#, c-format7261msgid "Auto packing the repository in background for optimum performance.\n"7262msgstr ""7263"Die Datenbank des Repositories wird für eine optimale Performance im\n"7264"Hintergrund komprimiert.\n"72657266#: builtin/gc.c:3757267#, c-format7268msgid "Auto packing the repository for optimum performance.\n"7269msgstr ""7270"Die Datenbank des Projektarchivs wird für eine optimale Performance "7271"komprimiert.\n"72727273#: builtin/gc.c:3767274#, c-format7275msgid "See \"git help gc\" for manual housekeeping.\n"7276msgstr "Siehe \"git help gc\" für manuelles Aufräumen.\n"72777278#: builtin/gc.c:3977279#, c-format7280msgid ""7281"gc is already running on machine '%s' pid %<PRIuMAX> (use --force if not)"7282msgstr ""7283"\"git gc\" wird bereits auf Maschine '%s' pid %<PRIuMAX> ausgeführt\n"7284"(benutzen Sie --force falls nicht)"72857286#: builtin/gc.c:4417287msgid ""7288"There are too many unreachable loose objects; run 'git prune' to remove them."7289msgstr ""7290"Es gibt zu viele unerreichbare lose Objekte; führen Sie 'git prune' aus, um "7291"diese zu löschen."72927293#: builtin/grep.c:237294msgid "git grep [<options>] [-e] <pattern> [<rev>...] [[--] <path>...]"7295msgstr "git grep [<Optionen>] [-e] <Muster> [<Commit>...] [[--] <Pfad>...]"72967297#: builtin/grep.c:2197298#, c-format7299msgid "grep: failed to create thread: %s"7300msgstr "grep: Fehler beim Erzeugen eines Thread: %s"73017302#: builtin/grep.c:2777303#, c-format7304msgid "invalid number of threads specified (%d) for %s"7305msgstr "ungültige Anzahl von Threads (%d) für %s angegeben"73067307#: builtin/grep.c:452 builtin/grep.c:4877308#, c-format7309msgid "unable to read tree (%s)"7310msgstr "konnte \"Tree\"-Objekt (%s) nicht lesen"73117312#: builtin/grep.c:5027313#, c-format7314msgid "unable to grep from object of type %s"7315msgstr "kann \"grep\" nicht mit Objekten des Typs %s durchführen"73167317#: builtin/grep.c:5607318#, c-format7319msgid "switch `%c' expects a numerical value"7320msgstr "Schalter '%c' erwartet einen numerischen Wert"73217322#: builtin/grep.c:5777323#, c-format7324msgid "cannot open '%s'"7325msgstr "kann '%s' nicht öffnen"73267327#: builtin/grep.c:6467328msgid "search in index instead of in the work tree"7329msgstr "im Index anstatt im Arbeitsverzeichnis suchen"73307331#: builtin/grep.c:6487332msgid "find in contents not managed by git"7333msgstr "auch in Inhalten finden, die nicht von Git verwaltet werden"73347335#: builtin/grep.c:6507336msgid "search in both tracked and untracked files"7337msgstr "in versionierten und unversionierten Dateien suchen"73387339#: builtin/grep.c:6527340msgid "ignore files specified via '.gitignore'"7341msgstr "Dateien, die über '.gitignore' angegeben sind, ignorieren"73427343#: builtin/grep.c:6557344msgid "show non-matching lines"7345msgstr "Zeilen ohne Übereinstimmungen anzeigen"73467347#: builtin/grep.c:6577348msgid "case insensitive matching"7349msgstr "Übereinstimmungen unabhängig von Groß- und Kleinschreibung finden"73507351#: builtin/grep.c:6597352msgid "match patterns only at word boundaries"7353msgstr "nur ganze Wörter suchen"73547355#: builtin/grep.c:6617356msgid "process binary files as text"7357msgstr "binäre Dateien als Text verarbeiten"73587359#: builtin/grep.c:6637360msgid "don't match patterns in binary files"7361msgstr "keine Muster in Binärdateien finden"73627363#: builtin/grep.c:6667364msgid "process binary files with textconv filters"7365msgstr "binäre Dateien mit \"textconv\"-Filtern verarbeiten"73667367#: builtin/grep.c:6687368msgid "descend at most <depth> levels"7369msgstr "höchstens <Tiefe> Ebenen durchlaufen"73707371#: builtin/grep.c:6727372msgid "use extended POSIX regular expressions"7373msgstr "erweiterte reguläre Ausdrücke aus POSIX verwenden"73747375#: builtin/grep.c:6757376msgid "use basic POSIX regular expressions (default)"7377msgstr "grundlegende reguläre Ausdrücke aus POSIX verwenden (Standard)"73787379#: builtin/grep.c:6787380msgid "interpret patterns as fixed strings"7381msgstr "Muster als feste Zeichenketten interpretieren"73827383#: builtin/grep.c:6817384msgid "use Perl-compatible regular expressions"7385msgstr "Perl-kompatible reguläre Ausdrücke verwenden"73867387#: builtin/grep.c:6847388msgid "show line numbers"7389msgstr "Zeilennummern anzeigen"73907391#: builtin/grep.c:6857392msgid "don't show filenames"7393msgstr "keine Dateinamen anzeigen"73947395#: builtin/grep.c:6867396msgid "show filenames"7397msgstr "Dateinamen anzeigen"73987399#: builtin/grep.c:6887400msgid "show filenames relative to top directory"7401msgstr "Dateinamen relativ zum Projektverzeichnis anzeigen"74027403#: builtin/grep.c:6907404msgid "show only filenames instead of matching lines"7405msgstr "nur Dateinamen anzeigen anstatt übereinstimmende Zeilen"74067407#: builtin/grep.c:6927408msgid "synonym for --files-with-matches"7409msgstr "Synonym für --files-with-matches"74107411#: builtin/grep.c:6957412msgid "show only the names of files without match"7413msgstr "nur die Dateinamen ohne Übereinstimmungen anzeigen"74147415#: builtin/grep.c:6977416msgid "print NUL after filenames"7417msgstr "NUL-Zeichen nach Dateinamen ausgeben"74187419#: builtin/grep.c:6997420msgid "show the number of matches instead of matching lines"7421msgstr "anstatt der Zeilen, die Anzahl der übereinstimmenden Zeilen anzeigen"74227423#: builtin/grep.c:7007424msgid "highlight matches"7425msgstr "Übereinstimmungen hervorheben"74267427#: builtin/grep.c:7027428msgid "print empty line between matches from different files"7429msgstr ""7430"eine Leerzeile zwischen Übereinstimmungen in verschiedenen Dateien ausgeben"74317432#: builtin/grep.c:7047433msgid "show filename only once above matches from same file"7434msgstr ""7435"den Dateinamen nur einmal oberhalb der Übereinstimmungen aus dieser Datei "7436"anzeigen"74377438#: builtin/grep.c:7077439msgid "show <n> context lines before and after matches"7440msgstr "<n> Zeilen vor und nach den Übereinstimmungen anzeigen"74417442#: builtin/grep.c:7107443msgid "show <n> context lines before matches"7444msgstr "<n> Zeilen vor den Übereinstimmungen anzeigen"74457446#: builtin/grep.c:7127447msgid "show <n> context lines after matches"7448msgstr "<n> Zeilen nach den Übereinstimmungen anzeigen"74497450#: builtin/grep.c:7147451msgid "use <n> worker threads"7452msgstr "<n> Threads benutzen"74537454#: builtin/grep.c:7157455msgid "shortcut for -C NUM"7456msgstr "Kurzform für -C NUM"74577458#: builtin/grep.c:7187459msgid "show a line with the function name before matches"7460msgstr "eine Zeile mit dem Funktionsnamen vor Übereinstimmungen anzeigen"74617462#: builtin/grep.c:7207463msgid "show the surrounding function"7464msgstr "die umgebende Funktion anzeigen"74657466#: builtin/grep.c:7237467msgid "read patterns from file"7468msgstr "Muster von einer Datei lesen"74697470#: builtin/grep.c:7257471msgid "match <pattern>"7472msgstr "<Muster> finden"74737474#: builtin/grep.c:7277475msgid "combine patterns specified with -e"7476msgstr "Muster kombinieren, die mit -e angegeben wurden"74777478#: builtin/grep.c:7397479msgid "indicate hit with exit status without output"7480msgstr "Übereinstimmungen nur durch Beendigungsstatus anzeigen"74817482#: builtin/grep.c:7417483msgid "show only matches from files that match all patterns"7484msgstr ""7485"nur Übereinstimmungen von Dateien anzeigen, die allen Mustern entsprechen"74867487#: builtin/grep.c:7437488msgid "show parse tree for grep expression"7489msgstr "geparstes Verzeichnis für \"grep\"-Ausdruck anzeigen"74907491#: builtin/grep.c:7477492msgid "pager"7493msgstr "Anzeigeprogramm"74947495#: builtin/grep.c:7477496msgid "show matching files in the pager"7497msgstr "Dateien mit Übereinstimmungen im Anzeigeprogramm anzeigen"74987499#: builtin/grep.c:7507500msgid "allow calling of grep(1) (ignored by this build)"7501msgstr "den Aufruf von grep(1) erlauben (von dieser Programmversion ignoriert)"75027503#: builtin/grep.c:8137504msgid "no pattern given."7505msgstr "keine Muster angegeben"75067507#: builtin/grep.c:845 builtin/index-pack.c:14797508#, c-format7509msgid "invalid number of threads specified (%d)"7510msgstr "ungültige Anzahl von Threads angegeben (%d)"75117512#: builtin/grep.c:8757513msgid "--open-files-in-pager only works on the worktree"7514msgstr ""7515"Die Option --open-files-in-pager kann nur innerhalb des "7516"Arbeitsverzeichnisses verwendet werden."75177518#: builtin/grep.c:9017519msgid "--cached or --untracked cannot be used with --no-index."7520msgstr ""7521"Die Optionen --cached und --untracked können nicht mit --no-index verwendet "7522"werden."75237524#: builtin/grep.c:9067525msgid "--no-index or --untracked cannot be used with revs."7526msgstr ""7527"Die Optionen --no-index und --untracked können nicht mit Commits verwendet "7528"werden."75297530#: builtin/grep.c:9097531msgid "--[no-]exclude-standard cannot be used for tracked contents."7532msgstr ""7533"Die Option --[no-]exclude-standard kann nicht mit versionierten Inhalten "7534"verwendet werden."75357536#: builtin/grep.c:9177537msgid "both --cached and trees are given."7538msgstr "Die Option --cached kann nicht mit \"Tree\"-Objekten verwendet werden."75397540#: builtin/hash-object.c:817541msgid ""7542"git hash-object [-t <type>] [-w] [--path=<file> | --no-filters] [--stdin] "7543"[--] <file>..."7544msgstr ""7545"git hash-object [-t <Art>] [-w] [--path=<Datei> | --no-filters] [--stdin] "7546"[--] <Datei>..."75477548#: builtin/hash-object.c:827549msgid "git hash-object --stdin-paths"7550msgstr "git hash-object --stdin-paths"75517552#: builtin/hash-object.c:937553msgid "type"7554msgstr "Art"75557556#: builtin/hash-object.c:937557msgid "object type"7558msgstr "Art des Objektes"75597560#: builtin/hash-object.c:947561msgid "write the object into the object database"7562msgstr "das Objekt in die Objektdatenbank schreiben"75637564#: builtin/hash-object.c:967565msgid "read the object from stdin"7566msgstr "das Objekt von der Standard-Eingabe lesen"75677568#: builtin/hash-object.c:987569msgid "store file as is without filters"7570msgstr "Datei wie sie ist speichern, ohne Filter"75717572#: builtin/hash-object.c:997573msgid ""7574"just hash any random garbage to create corrupt objects for debugging Git"7575msgstr ""7576"Hash über zufällige Daten, zur Erzeugung von beschädigten Objekten zur\n"7577"Fehlersuche in Git, erzeugen"75787579#: builtin/hash-object.c:1007580msgid "process file as it were from this path"7581msgstr "Datei verarbeiten, als ob sie von diesem Pfad wäre"75827583#: builtin/help.c:417584msgid "print all available commands"7585msgstr "alle vorhandenen Befehle anzeigen"75867587#: builtin/help.c:427588msgid "print list of useful guides"7589msgstr "Liste von allgemein verwendeten Anleitungen anzeigen"75907591#: builtin/help.c:437592msgid "show man page"7593msgstr "Handbuch anzeigen"75947595#: builtin/help.c:447596msgid "show manual in web browser"7597msgstr "Handbuch in einem Webbrowser anzeigen"75987599#: builtin/help.c:467600msgid "show info page"7601msgstr "Info-Seite anzeigen"76027603#: builtin/help.c:527604msgid "git help [--all] [--guides] [--man | --web | --info] [<command>]"7605msgstr "git help [--all] [--guides] [--man | --web | --info] [<Befehl>]"76067607#: builtin/help.c:647608#, c-format7609msgid "unrecognized help format '%s'"7610msgstr "nicht erkanntes Hilfeformat: %s"76117612#: builtin/help.c:917613msgid "Failed to start emacsclient."7614msgstr "Konnte emacsclient nicht starten."76157616#: builtin/help.c:1047617msgid "Failed to parse emacsclient version."7618msgstr "Konnte Version des emacsclient nicht parsen."76197620#: builtin/help.c:1127621#, c-format7622msgid "emacsclient version '%d' too old (< 22)."7623msgstr "Version des emacsclient '%d' ist zu alt (< 22)."76247625#: builtin/help.c:130 builtin/help.c:151 builtin/help.c:160 builtin/help.c:1687626#, c-format7627msgid "failed to exec '%s'"7628msgstr "Fehler beim Ausführen von '%s'"76297630#: builtin/help.c:2057631#, c-format7632msgid ""7633"'%s': path for unsupported man viewer.\n"7634"Please consider using 'man.<tool>.cmd' instead."7635msgstr ""7636"'%s': Pfad für nicht unterstützten Handbuchbetrachter.\n"7637"Sie könnten stattdessen 'man.<Werkzeug>.cmd' benutzen."76387639#: builtin/help.c:2177640#, c-format7641msgid ""7642"'%s': cmd for supported man viewer.\n"7643"Please consider using 'man.<tool>.path' instead."7644msgstr ""7645"'%s': Programm für unterstützten Handbuchbetrachter.\n"7646"Sie könnten stattdessen 'man.<Werkzeug>.path' benutzen."76477648#: builtin/help.c:3347649#, c-format7650msgid "'%s': unknown man viewer."7651msgstr "'%s': unbekannter Handbuch-Betrachter."76527653#: builtin/help.c:3517654msgid "no man viewer handled the request"7655msgstr "kein Handbuch-Betrachter konnte mit dieser Anfrage umgehen"76567657#: builtin/help.c:3597658msgid "no info viewer handled the request"7659msgstr "kein Informations-Betrachter konnte mit dieser Anfrage umgehen"76607661#: builtin/help.c:4017662msgid "Defining attributes per path"7663msgstr "Definition von Attributen pro Pfad"76647665#: builtin/help.c:4027666msgid "Everyday Git With 20 Commands Or So"7667msgstr "Tägliche Benutzung von Git mit ungefähr 20 Befehlen"76687669#: builtin/help.c:4037670msgid "A Git glossary"7671msgstr "Ein Git-Glossar"76727673#: builtin/help.c:4047674msgid "Specifies intentionally untracked files to ignore"7675msgstr "Spezifikation von bewusst ignorierten, unversionierten Dateien"76767677#: builtin/help.c:4057678msgid "Defining submodule properties"7679msgstr "Definition von Submodul-Eigenschaften"76807681#: builtin/help.c:4067682msgid "Specifying revisions and ranges for Git"7683msgstr "Spezifikation von Commits und Bereichen für Git"76847685#: builtin/help.c:4077686msgid "A tutorial introduction to Git (for version 1.5.1 or newer)"7687msgstr "Eine einführende Anleitung zu Git (für Version 1.5.1 oder neuer)"76887689#: builtin/help.c:4087690msgid "An overview of recommended workflows with Git"7691msgstr "Eine Übersicht über empfohlene Arbeitsabläufe mit Git"76927693#: builtin/help.c:4207694msgid "The common Git guides are:\n"7695msgstr "Die allgemein verwendeten Git-Anleitungen sind:\n"76967697#: builtin/help.c:441 builtin/help.c:4587698#, c-format7699msgid "usage: %s%s"7700msgstr "Verwendung: %s%s"77017702#: builtin/help.c:4747703#, c-format7704msgid "`git %s' is aliased to `%s'"7705msgstr "für `git %s' wurde der Alias `%s' angelegt"77067707#: builtin/index-pack.c:1537708#, c-format7709msgid "unable to open %s"7710msgstr "kann %s nicht öffnen"77117712#: builtin/index-pack.c:2037713#, c-format7714msgid "object type mismatch at %s"7715msgstr "Objekt-Typen passen bei %s nicht zusammen"77167717#: builtin/index-pack.c:2237718#, c-format7719msgid "did not receive expected object %s"7720msgstr "konnte erwartetes Objekt %s nicht empfangen"77217722#: builtin/index-pack.c:2267723#, c-format7724msgid "object %s: expected type %s, found %s"7725msgstr "Objekt %s: erwarteter Typ %s, %s gefunden"77267727#: builtin/index-pack.c:2687728#, c-format7729msgid "cannot fill %d byte"7730msgid_plural "cannot fill %d bytes"7731msgstr[0] "kann %d Byte nicht lesen"7732msgstr[1] "kann %d Bytes nicht lesen"77337734#: builtin/index-pack.c:2787735msgid "early EOF"7736msgstr "zu frühes Dateiende"77377738#: builtin/index-pack.c:2797739msgid "read error on input"7740msgstr "Fehler beim Lesen der Eingabe"77417742#: builtin/index-pack.c:2917743msgid "used more bytes than were available"7744msgstr "verwendete mehr Bytes als verfügbar waren"77457746#: builtin/index-pack.c:2987747msgid "pack too large for current definition of off_t"7748msgstr "Paket ist zu groß für die aktuelle Definition von off_t"77497750#: builtin/index-pack.c:3147751#, c-format7752msgid "unable to create '%s'"7753msgstr "konnte '%s' nicht erstellen"77547755#: builtin/index-pack.c:3197756#, c-format7757msgid "cannot open packfile '%s'"7758msgstr "Kann Paketdatei '%s' nicht öffnen"77597760#: builtin/index-pack.c:3337761msgid "pack signature mismatch"7762msgstr "Paketsignatur stimmt nicht überein"77637764#: builtin/index-pack.c:3357765#, c-format7766msgid "pack version %<PRIu32> unsupported"7767msgstr "Paketversion %<PRIu32> nicht unterstützt"77687769#: builtin/index-pack.c:3537770#, c-format7771msgid "pack has bad object at offset %<PRIuMAX>: %s"7772msgstr "Paket hat ein ungültiges Objekt bei Versatz %<PRIuMAX>: %s"77737774#: builtin/index-pack.c:4757775#, c-format7776msgid "inflate returned %d"7777msgstr "Dekomprimierung gab %d zurück"77787779#: builtin/index-pack.c:5247780msgid "offset value overflow for delta base object"7781msgstr "Wert für Versatz bei Differenzobjekt übergelaufen"77827783#: builtin/index-pack.c:5327784msgid "delta base offset is out of bound"7785msgstr ""7786"Wert für Versatz bei Differenzobjekt liegt außerhalb des gültigen Bereichs"77877788#: builtin/index-pack.c:5407789#, c-format7790msgid "unknown object type %d"7791msgstr "Unbekannter Objekt-Typ %d"77927793#: builtin/index-pack.c:5717794msgid "cannot pread pack file"7795msgstr "Kann Paketdatei %s nicht lesen"77967797#: builtin/index-pack.c:5737798#, c-format7799msgid "premature end of pack file, %<PRIuMAX> byte missing"7800msgid_plural "premature end of pack file, %<PRIuMAX> bytes missing"7801msgstr[0] "frühzeitiges Ende der Paketdatei, vermisse %<PRIuMAX> Byte"7802msgstr[1] "frühzeitiges Ende der Paketdatei, vermisse %<PRIuMAX> Bytes"78037804#: builtin/index-pack.c:5997805msgid "serious inflate inconsistency"7806msgstr "ernsthafte Inkonsistenz nach Dekomprimierung"78077808#: builtin/index-pack.c:745 builtin/index-pack.c:751 builtin/index-pack.c:7747809#: builtin/index-pack.c:808 builtin/index-pack.c:8177810#, c-format7811msgid "SHA1 COLLISION FOUND WITH %s !"7812msgstr "SHA1 KOLLISION MIT %s GEFUNDEN !"78137814#: builtin/index-pack.c:748 builtin/pack-objects.c:1647815#: builtin/pack-objects.c:2567816#, c-format7817msgid "unable to read %s"7818msgstr "kann %s nicht lesen"78197820#: builtin/index-pack.c:8147821#, c-format7822msgid "cannot read existing object %s"7823msgstr "Kann existierendes Objekt %s nicht lesen."78247825#: builtin/index-pack.c:8287826#, c-format7827msgid "invalid blob object %s"7828msgstr "ungültiges Blob-Objekt %s"78297830#: builtin/index-pack.c:8427831#, c-format7832msgid "invalid %s"7833msgstr "Ungültiger Objekt-Typ %s"78347835#: builtin/index-pack.c:8457836msgid "Error in object"7837msgstr "Fehler in Objekt"78387839#: builtin/index-pack.c:8477840#, c-format7841msgid "Not all child objects of %s are reachable"7842msgstr "Nicht alle Kind-Objekte von %s sind erreichbar"78437844#: builtin/index-pack.c:919 builtin/index-pack.c:9507845msgid "failed to apply delta"7846msgstr "Konnte Dateiunterschied nicht anwenden"78477848#: builtin/index-pack.c:11207849msgid "Receiving objects"7850msgstr "Empfange Objekte"78517852#: builtin/index-pack.c:11207853msgid "Indexing objects"7854msgstr "Indiziere Objekte"78557856#: builtin/index-pack.c:11527857msgid "pack is corrupted (SHA1 mismatch)"7858msgstr "Paket ist beschädigt (SHA1 unterschiedlich)"78597860#: builtin/index-pack.c:11577861msgid "cannot fstat packfile"7862msgstr "kann Paketdatei nicht lesen"78637864#: builtin/index-pack.c:11607865msgid "pack has junk at the end"7866msgstr "Paketende enthält nicht verwendbaren Inhalt"78677868#: builtin/index-pack.c:11717869msgid "confusion beyond insanity in parse_pack_objects()"7870msgstr "Fehler beim Ausführen von \"parse_pack_objects()\""78717872#: builtin/index-pack.c:11967873msgid "Resolving deltas"7874msgstr "Löse Unterschiede auf"78757876#: builtin/index-pack.c:12077877#, c-format7878msgid "unable to create thread: %s"7879msgstr "kann Thread nicht erzeugen: %s"78807881#: builtin/index-pack.c:12497882msgid "confusion beyond insanity"7883msgstr "Fehler beim Auflösen der Unterschiede"78847885#: builtin/index-pack.c:12557886#, c-format7887msgid "completed with %d local object"7888msgid_plural "completed with %d local objects"7889msgstr[0] "abgeschlossen mit %d lokalem Objekt"7890msgstr[1] "abgeschlossen mit %d lokalen Objekten"78917892#: builtin/index-pack.c:12677893#, c-format7894msgid "Unexpected tail checksum for %s (disk corruption?)"7895msgstr "Unerwartete Prüfsumme für %s (Festplattenfehler?)"78967897#: builtin/index-pack.c:12717898#, c-format7899msgid "pack has %d unresolved delta"7900msgid_plural "pack has %d unresolved deltas"7901msgstr[0] "Paket hat %d unaufgelöste Unterschied"7902msgstr[1] "Paket hat %d unaufgelöste Unterschiede"79037904#: builtin/index-pack.c:12957905#, c-format7906msgid "unable to deflate appended object (%d)"7907msgstr "Konnte angehängtes Objekt (%d) nicht komprimieren"79087909#: builtin/index-pack.c:13717910#, c-format7911msgid "local object %s is corrupt"7912msgstr "lokales Objekt %s ist beschädigt"79137914#: builtin/index-pack.c:13957915msgid "error while closing pack file"7916msgstr "Fehler beim Schließen der Paketdatei"79177918#: builtin/index-pack.c:14087919#, c-format7920msgid "cannot write keep file '%s'"7921msgstr "Kann Paketbeschreibungsdatei '%s' nicht schreiben"79227923#: builtin/index-pack.c:14167924#, c-format7925msgid "cannot close written keep file '%s'"7926msgstr "Kann eben erstellte Paketbeschreibungsdatei '%s' nicht schließen"79277928#: builtin/index-pack.c:14297929msgid "cannot store pack file"7930msgstr "Kann Paketdatei nicht speichern"79317932#: builtin/index-pack.c:14407933msgid "cannot store index file"7934msgstr "Kann Indexdatei nicht speichern"79357936#: builtin/index-pack.c:14737937#, c-format7938msgid "bad pack.indexversion=%<PRIu32>"7939msgstr "\"pack.indexversion=%<PRIu32>\" ist ungültig"79407941#: builtin/index-pack.c:1483 builtin/index-pack.c:16817942#, c-format7943msgid "no threads support, ignoring %s"7944msgstr "keine Unterstützung von Threads, '%s' wird ignoriert"79457946#: builtin/index-pack.c:15427947#, c-format7948msgid "Cannot open existing pack file '%s'"7949msgstr "Kann existierende Paketdatei '%s' nicht öffnen"79507951#: builtin/index-pack.c:15447952#, c-format7953msgid "Cannot open existing pack idx file for '%s'"7954msgstr "Kann existierende Indexdatei für Paket '%s' nicht öffnen"79557956#: builtin/index-pack.c:15917957#, c-format7958msgid "non delta: %d object"7959msgid_plural "non delta: %d objects"7960msgstr[0] "kein Unterschied: %d Objekt"7961msgstr[1] "kein Unterschied: %d Objekte"79627963#: builtin/index-pack.c:15987964#, c-format7965msgid "chain length = %d: %lu object"7966msgid_plural "chain length = %d: %lu objects"7967msgstr[0] "Länge der Objekt-Liste = %d: %lu Objekt"7968msgstr[1] "Länge der Objekt-Liste = %d: %lu Objekte"79697970#: builtin/index-pack.c:16117971#, c-format7972msgid "packfile name '%s' does not end with '.pack'"7973msgstr "Name der Paketdatei '%s' endet nicht mit '.pack'"79747975#: builtin/index-pack.c:1693 builtin/index-pack.c:16967976#: builtin/index-pack.c:1712 builtin/index-pack.c:17167977#, c-format7978msgid "bad %s"7979msgstr "%s ist ungültig"79807981#: builtin/index-pack.c:17307982msgid "--fix-thin cannot be used without --stdin"7983msgstr "Die Option --fix-thin kann nicht ohne --stdin verwendet werden."79847985#: builtin/index-pack.c:17387986msgid "--verify with no packfile name given"7987msgstr "Die Option --verify wurde ohne Namen der Paketdatei angegeben."79887989#: builtin/init-db.c:557990#, c-format7991msgid "cannot stat '%s'"7992msgstr "Kann '%s' nicht lesen"79937994#: builtin/init-db.c:617995#, c-format7996msgid "cannot stat template '%s'"7997msgstr "kann Vorlage '%s' nicht lesen"79987999#: builtin/init-db.c:668000#, c-format8001msgid "cannot opendir '%s'"8002msgstr "kann Verzeichnis '%s' nicht öffnen"80038004#: builtin/init-db.c:778005#, c-format8006msgid "cannot readlink '%s'"8007msgstr "kann Verweis '%s' nicht lesen"80088009#: builtin/init-db.c:798010#, c-format8011msgid "cannot symlink '%s' '%s'"8012msgstr "kann symbolische Verknüpfung '%s' auf '%s' nicht erstellen"80138014#: builtin/init-db.c:858015#, c-format8016msgid "cannot copy '%s' to '%s'"8017msgstr "kann '%s' nicht nach '%s' kopieren"80188019#: builtin/init-db.c:898020#, c-format8021msgid "ignoring template %s"8022msgstr "ignoriere Vorlage %s"80238024#: builtin/init-db.c:1208025#, c-format8026msgid "templates not found %s"8027msgstr "keine Vorlagen in '%s' gefunden"80288029#: builtin/init-db.c:1358030#, c-format8031msgid "not copying templates from '%s': %s"8032msgstr "kopiere keine Vorlagen von '%s': %s"80338034#: builtin/init-db.c:312 builtin/init-db.c:3158035#, c-format8036msgid "%s already exists"8037msgstr "%s existiert bereits"80388039#: builtin/init-db.c:3448040#, c-format8041msgid "unable to handle file type %d"8042msgstr "kann nicht mit Dateityp %d umgehen"80438044#: builtin/init-db.c:3478045#, c-format8046msgid "unable to move %s to %s"8047msgstr "Konnte %s nicht nach %s verschieben"80488049#: builtin/init-db.c:4028050#, c-format8051msgid "Reinitialized existing shared Git repository in %s%s\n"8052msgstr "Bestehendes verteiltes Git-Repository in %s%s neuinitialisiert\n"80538054#: builtin/init-db.c:4038055#, c-format8056msgid "Reinitialized existing Git repository in %s%s\n"8057msgstr "Bestehendes Git-Repository in %s%s neuinitialisiert\n"80588059#: builtin/init-db.c:4078060#, c-format8061msgid "Initialized empty shared Git repository in %s%s\n"8062msgstr "Leeres verteiltes Git-Repository in %s%s initialisiert\n"80638064#: builtin/init-db.c:4088065#, c-format8066msgid "Initialized empty Git repository in %s%s\n"8067msgstr "Leeres Git-Repository in %s%s initialisiert\n"80688069#: builtin/init-db.c:4558070msgid ""8071"git init [-q | --quiet] [--bare] [--template=<template-directory>] [--"8072"shared[=<permissions>]] [<directory>]"8073msgstr ""8074"git init [-q | --quiet] [--bare] [--template=<Vorlagenverzeichnis>] [--"8075"shared[=<Berechtigungen>]] [<Verzeichnis>]"80768077#: builtin/init-db.c:4788078msgid "permissions"8079msgstr "Berechtigungen"80808081#: builtin/init-db.c:4798082msgid "specify that the git repository is to be shared amongst several users"8083msgstr "angeben, dass das Git-Repository mit mehreren Benutzern geteilt wird"80848085#: builtin/init-db.c:513 builtin/init-db.c:5188086#, c-format8087msgid "cannot mkdir %s"8088msgstr "kann Verzeichnis %s nicht erstellen"80898090#: builtin/init-db.c:5228091#, c-format8092msgid "cannot chdir to %s"8093msgstr "kann nicht in Verzeichnis %s wechseln"80948095#: builtin/init-db.c:5438096#, c-format8097msgid ""8098"%s (or --work-tree=<directory>) not allowed without specifying %s (or --git-"8099"dir=<directory>)"8100msgstr ""8101"%s (oder --work-tree=<Verzeichnis>) nicht erlaubt ohne Spezifizierung von %s "8102"(oder --git-dir=<Verzeichnis>)"81038104#: builtin/init-db.c:5718105#, c-format8106msgid "Cannot access work tree '%s'"8107msgstr "Kann nicht auf Arbeitsverzeichnis '%s' zugreifen."81088109#: builtin/interpret-trailers.c:158110msgid ""8111"git interpret-trailers [--in-place] [--trim-empty] [(--trailer "8112"<token>[(=|:)<value>])...] [<file>...]"8113msgstr ""8114"git interpret-trailers [--in-place] [--trim-empty] [(--trailer "8115"<Token>[(=|:)<Wert>])...] [<Datei>...]"81168117#: builtin/interpret-trailers.c:268118msgid "edit files in place"8119msgstr "vorhandene Dateien direkt bearbeiten"81208121#: builtin/interpret-trailers.c:278122msgid "trim empty trailers"8123msgstr "kürzt leere Anhänge"81248125#: builtin/interpret-trailers.c:288126msgid "trailer"8127msgstr "Anhang"81288129#: builtin/interpret-trailers.c:298130msgid "trailer(s) to add"8131msgstr "Anhang/Anhänge hinzufügen"81328133#: builtin/interpret-trailers.c:428134msgid "no input file given for in-place editing"8135msgstr "keine Datei zur direkten Bearbeitung angegeben"81368137#: builtin/log.c:448138msgid "git log [<options>] [<revision-range>] [[--] <path>...]"8139msgstr "git log [<Optionen>] [<Commitbereich>] [[--] <Pfad>...]"81408141#: builtin/log.c:458142msgid "git show [<options>] <object>..."8143msgstr "git show [<Optionen>] <Objekt>..."81448145#: builtin/log.c:848146#, c-format8147msgid "invalid --decorate option: %s"8148msgstr "Ungültige Option für --decorate: %s"81498150#: builtin/log.c:1398151msgid "suppress diff output"8152msgstr "Ausgabe der Unterschiede unterdrücken"81538154#: builtin/log.c:1408155msgid "show source"8156msgstr "Quelle anzeigen"81578158#: builtin/log.c:1418159msgid "Use mail map file"8160msgstr "\"mailmap\"-Datei verwenden"81618162#: builtin/log.c:1428163msgid "decorate options"8164msgstr "decorate-Optionen"81658166#: builtin/log.c:1458167msgid "Process line range n,m in file, counting from 1"8168msgstr "Verarbeitet nur Zeilen im Bereich n,m in der Datei, gezählt von 1"81698170#: builtin/log.c:2418171#, c-format8172msgid "Final output: %d %s\n"8173msgstr "letzte Ausgabe: %d %s\n"81748175#: builtin/log.c:4868176#, c-format8177msgid "git show %s: bad file"8178msgstr "git show %s: ungültige Datei"81798180#: builtin/log.c:500 builtin/log.c:5948181#, c-format8182msgid "Could not read object %s"8183msgstr "Kann Objekt %s nicht lesen."81848185#: builtin/log.c:6188186#, c-format8187msgid "Unknown type: %d"8188msgstr "Unbekannter Typ: %d"81898190#: builtin/log.c:7398191msgid "format.headers without value"8192msgstr "format.headers ohne Wert"81938194#: builtin/log.c:8398195msgid "name of output directory is too long"8196msgstr "Name des Ausgabeverzeichnisses ist zu lang."81978198#: builtin/log.c:8548199#, c-format8200msgid "Cannot open patch file %s"8201msgstr "Kann Patch-Datei %s nicht öffnen"82028203#: builtin/log.c:8688204msgid "Need exactly one range."8205msgstr "Brauche genau einen Commit-Bereich."82068207#: builtin/log.c:8788208msgid "Not a range."8209msgstr "Kein Commit-Bereich."82108211#: builtin/log.c:9848212msgid "Cover letter needs email format"8213msgstr "Anschreiben benötigt E-Mail-Format"82148215#: builtin/log.c:10648216#, c-format8217msgid "insane in-reply-to: %s"8218msgstr "ungültiges in-reply-to: %s"82198220#: builtin/log.c:10928221msgid "git format-patch [<options>] [<since> | <revision-range>]"8222msgstr "git format-patch [<Optionen>] [<seit> | <Commitbereich>]"82238224#: builtin/log.c:11378225msgid "Two output directories?"8226msgstr "Zwei Ausgabeverzeichnisse?"82278228#: builtin/log.c:1244 builtin/log.c:1883 builtin/log.c:1885 builtin/log.c:18978229#, c-format8230msgid "Unknown commit %s"8231msgstr "Unbekannter Commit %s"82328233#: builtin/log.c:1254 builtin/notes.c:254 builtin/notes.c:3058234#: builtin/notes.c:307 builtin/notes.c:370 builtin/notes.c:4258235#: builtin/notes.c:511 builtin/notes.c:516 builtin/notes.c:5948236#: builtin/notes.c:657 builtin/notes.c:882 builtin/tag.c:4558237#, c-format8238msgid "Failed to resolve '%s' as a valid ref."8239msgstr "Konnte '%s' nicht als gültige Referenz auflösen."82408241#: builtin/log.c:12598242msgid "Could not find exact merge base."8243msgstr "Konnte keine exakte Merge-Basis finden."82448245#: builtin/log.c:12638246msgid ""8247"Failed to get upstream, if you want to record base commit automatically,\n"8248"please use git branch --set-upstream-to to track a remote branch.\n"8249"Or you could specify base commit by --base=<base-commit-id> manually."8250msgstr ""8251"Fehler beim Bestimmen des Upstream-Branches. Wenn Sie den Basis-Commit\n"8252"automatisch speichern lassen möchten, benutzen Sie bitte\n"8253"'git branch --set-upstream-to', um einem Remote-Branch zu folgen.\n"8254"Oder geben Sie den Basis-Commit mit '--base=<Basis-Commit-Id>' manuell an."82558256#: builtin/log.c:12838257msgid "Failed to find exact merge base"8258msgstr "Fehler beim Finden einer exakten Merge-Basis."82598260#: builtin/log.c:12948261msgid "base commit should be the ancestor of revision list"8262msgstr "Basis-Commit sollte der Vorgänger der Revisionsliste sein."82638264#: builtin/log.c:12988265msgid "base commit shouldn't be in revision list"8266msgstr "Basis-Commit sollte nicht in der Revisionsliste enthalten sein."82678268#: builtin/log.c:13478269msgid "cannot get patch id"8270msgstr "kann Patch-Id nicht lesen"82718272#: builtin/log.c:14048273msgid "use [PATCH n/m] even with a single patch"8274msgstr "[PATCH n/m] auch mit einzelnem Patch verwenden"82758276#: builtin/log.c:14078277msgid "use [PATCH] even with multiple patches"8278msgstr "[PATCH] auch mit mehreren Patches verwenden"82798280#: builtin/log.c:14118281msgid "print patches to standard out"8282msgstr "Ausgabe der Patches in Standard-Ausgabe"82838284#: builtin/log.c:14138285msgid "generate a cover letter"8286msgstr "ein Deckblatt erzeugen"82878288#: builtin/log.c:14158289msgid "use simple number sequence for output file names"8290msgstr "einfache Nummernfolge für die Namen der Ausgabedateien verwenden"82918292#: builtin/log.c:14168293msgid "sfx"8294msgstr "Dateiendung"82958296#: builtin/log.c:14178297msgid "use <sfx> instead of '.patch'"8298msgstr "<Dateiendung> anstatt '.patch' verwenden"82998300#: builtin/log.c:14198301msgid "start numbering patches at <n> instead of 1"8302msgstr "die Nummerierung der Patches bei <n> anstatt bei 1 beginnen"83038304#: builtin/log.c:14218305msgid "mark the series as Nth re-roll"8306msgstr "die Serie als n-te Fassung kennzeichnen"83078308#: builtin/log.c:14238309msgid "Use [<prefix>] instead of [PATCH]"8310msgstr "[<Präfix>] anstatt [PATCH] verwenden"83118312#: builtin/log.c:14268313msgid "store resulting files in <dir>"8314msgstr "erzeugte Dateien in <Verzeichnis> speichern"83158316#: builtin/log.c:14298317msgid "don't strip/add [PATCH]"8318msgstr "[PATCH] nicht entfernen/hinzufügen"83198320#: builtin/log.c:14328321msgid "don't output binary diffs"8322msgstr "keine binären Unterschiede ausgeben"83238324#: builtin/log.c:14348325msgid "output all-zero hash in From header"8326msgstr "Hash mit Nullen in \"From\"-Header ausgeben"83278328#: builtin/log.c:14368329msgid "don't include a patch matching a commit upstream"8330msgstr ""8331"keine Patches einschließen, die einem Commit im Upstream-Branch entsprechen"83328333#: builtin/log.c:14388334msgid "show patch format instead of default (patch + stat)"8335msgstr "Patchformat anstatt des Standards anzeigen (Patch + Zusammenfassung)"83368337#: builtin/log.c:14408338msgid "Messaging"8339msgstr "E-Mail-Einstellungen"83408341#: builtin/log.c:14418342msgid "header"8343msgstr "Header"83448345#: builtin/log.c:14428346msgid "add email header"8347msgstr "E-Mail-Header hinzufügen"83488349#: builtin/log.c:1443 builtin/log.c:14458350msgid "email"8351msgstr "E-Mail"83528353#: builtin/log.c:14438354msgid "add To: header"8355msgstr "\"To:\"-Header hinzufügen"83568357#: builtin/log.c:14458358msgid "add Cc: header"8359msgstr "\"Cc:\"-Header hinzufügen"83608361#: builtin/log.c:14478362msgid "ident"8363msgstr "Ident"83648365#: builtin/log.c:14488366msgid "set From address to <ident> (or committer ident if absent)"8367msgstr ""8368"\"From\"-Adresse auf <Ident> setzen (oder Ident des Commit-Erstellers, wenn "8369"fehlend)"83708371#: builtin/log.c:14508372msgid "message-id"8373msgstr "message-id"83748375#: builtin/log.c:14518376msgid "make first mail a reply to <message-id>"8377msgstr "aus erster E-Mail eine Antwort zu <message-id> machen"83788379#: builtin/log.c:1452 builtin/log.c:14558380msgid "boundary"8381msgstr "Grenze"83828383#: builtin/log.c:14538384msgid "attach the patch"8385msgstr "den Patch anhängen"83868387#: builtin/log.c:14568388msgid "inline the patch"8389msgstr "den Patch direkt in die Nachricht einfügen"83908391#: builtin/log.c:14608392msgid "enable message threading, styles: shallow, deep"8393msgstr "Nachrichtenverkettung aktivieren, Stile: shallow, deep"83948395#: builtin/log.c:14628396msgid "signature"8397msgstr "Signatur"83988399#: builtin/log.c:14638400msgid "add a signature"8401msgstr "eine Signatur hinzufügen"84028403#: builtin/log.c:14648404msgid "base-commit"8405msgstr "Basis-Commit"84068407#: builtin/log.c:14658408msgid "add prerequisite tree info to the patch series"8409msgstr "erforderliche Revisions-Informationen der Patch-Serie hinzufügen"84108411#: builtin/log.c:14678412msgid "add a signature from a file"8413msgstr "eine Signatur aus einer Datei hinzufügen"84148415#: builtin/log.c:14688416msgid "don't print the patch filenames"8417msgstr "keine Dateinamen der Patches anzeigen"84188419#: builtin/log.c:15588420msgid "-n and -k are mutually exclusive."8421msgstr "Die Optionen -n und -k schließen sich gegenseitig aus."84228423#: builtin/log.c:15608424msgid "--subject-prefix and -k are mutually exclusive."8425msgstr "Die Optionen --subject-prefix und -k schließen sich gegenseitig aus."84268427#: builtin/log.c:15688428msgid "--name-only does not make sense"8429msgstr "Die Option --name-only kann nicht verwendet werden."84308431#: builtin/log.c:15708432msgid "--name-status does not make sense"8433msgstr "Die Option --name-status kann nicht verwendet werden."84348435#: builtin/log.c:15728436msgid "--check does not make sense"8437msgstr "Die Option --check kann nicht verwendet werden."84388439#: builtin/log.c:16028440msgid "standard output, or directory, which one?"8441msgstr "Standard-Ausgabe oder Verzeichnis, welches von beidem?"84428443#: builtin/log.c:16048444#, c-format8445msgid "Could not create directory '%s'"8446msgstr "Konnte Verzeichnis '%s' nicht erstellen."84478448#: builtin/log.c:16988449#, c-format8450msgid "unable to read signature file '%s'"8451msgstr "Konnte Signatur-Datei '%s' nicht lesen"84528453#: builtin/log.c:17698454msgid "Failed to create output files"8455msgstr "Fehler beim Erstellen der Ausgabedateien."84568457#: builtin/log.c:18188458msgid "git cherry [-v] [<upstream> [<head> [<limit>]]]"8459msgstr "git cherry [-v] [<Upstream> [<Branch> [<Limit>]]]"84608461#: builtin/log.c:18728462#, c-format8463msgid ""8464"Could not find a tracked remote branch, please specify <upstream> manually.\n"8465msgstr ""8466"Konnte gefolgten Remote-Branch nicht finden, bitte geben Sie <Upstream> "8467"manuell an.\n"84688469#: builtin/ls-files.c:3798470msgid "git ls-files [<options>] [<file>...]"8471msgstr "git ls-files [<Optionen>] [<Datei>...]"84728473#: builtin/ls-files.c:4288474msgid "identify the file status with tags"8475msgstr "den Dateistatus mit Tags anzeigen"84768477#: builtin/ls-files.c:4308478msgid "use lowercase letters for 'assume unchanged' files"8479msgstr ""8480"Kleinbuchstaben für Dateien mit 'assume unchanged' Markierung verwenden"84818482#: builtin/ls-files.c:4328483msgid "show cached files in the output (default)"8484msgstr "zwischengespeicherte Dateien in der Ausgabe anzeigen (Standard)"84858486#: builtin/ls-files.c:4348487msgid "show deleted files in the output"8488msgstr "entfernte Dateien in der Ausgabe anzeigen"84898490#: builtin/ls-files.c:4368491msgid "show modified files in the output"8492msgstr "geänderte Dateien in der Ausgabe anzeigen"84938494#: builtin/ls-files.c:4388495msgid "show other files in the output"8496msgstr "sonstige Dateien in der Ausgabe anzeigen"84978498#: builtin/ls-files.c:4408499msgid "show ignored files in the output"8500msgstr "ignorierte Dateien in der Ausgabe anzeigen"85018502#: builtin/ls-files.c:4438503msgid "show staged contents' object name in the output"8504msgstr ""8505"Objektnamen von Inhalten, die zum Commit vorgemerkt sind, in der Ausgabe "8506"anzeigen"85078508#: builtin/ls-files.c:4458509msgid "show files on the filesystem that need to be removed"8510msgstr "Dateien im Dateisystem, die gelöscht werden müssen, anzeigen"85118512#: builtin/ls-files.c:4478513msgid "show 'other' directories' names only"8514msgstr "nur Namen von 'sonstigen' Verzeichnissen anzeigen"85158516#: builtin/ls-files.c:4498517msgid "show line endings of files"8518msgstr "Zeilenenden von Dateien anzeigen"85198520#: builtin/ls-files.c:4518521msgid "don't show empty directories"8522msgstr "keine leeren Verzeichnisse anzeigen"85238524#: builtin/ls-files.c:4548525msgid "show unmerged files in the output"8526msgstr "nicht zusammengeführte Dateien in der Ausgabe anzeigen"85278528#: builtin/ls-files.c:4568529msgid "show resolve-undo information"8530msgstr "'resolve-undo' Informationen anzeigen"85318532#: builtin/ls-files.c:4588533msgid "skip files matching pattern"8534msgstr "Dateien auslassen, die einem Muster entsprechen"85358536#: builtin/ls-files.c:4618537msgid "exclude patterns are read from <file>"8538msgstr "Muster, gelesen von <Datei>, ausschließen"85398540#: builtin/ls-files.c:4648541msgid "read additional per-directory exclude patterns in <file>"8542msgstr "zusätzliche pro-Verzeichnis Auschlussmuster aus <Datei> auslesen"85438544#: builtin/ls-files.c:4668545msgid "add the standard git exclusions"8546msgstr "die standardmäßigen Git-Ausschlüsse hinzufügen"85478548#: builtin/ls-files.c:4698549msgid "make the output relative to the project top directory"8550msgstr "Ausgabe relativ zum Projektverzeichnis"85518552#: builtin/ls-files.c:4728553msgid "if any <file> is not in the index, treat this as an error"8554msgstr "als Fehler behandeln, wenn sich eine <Datei> nicht im Index befindet"85558556#: builtin/ls-files.c:4738557msgid "tree-ish"8558msgstr "Commit-Referenz"85598560#: builtin/ls-files.c:4748561msgid "pretend that paths removed since <tree-ish> are still present"8562msgstr ""8563"vorgeben, dass Pfade, die seit <Commit-Referenz> gelöscht wurden, immer noch "8564"vorhanden sind"85658566#: builtin/ls-files.c:4768567msgid "show debugging data"8568msgstr "Ausgaben zur Fehlersuche anzeigen"85698570#: builtin/ls-remote.c:78571msgid ""8572"git ls-remote [--heads] [--tags] [--refs] [--upload-pack=<exec>]\n"8573" [-q | --quiet] [--exit-code] [--get-url]\n"8574" [--symref] [<repository> [<refs>...]]"8575msgstr ""8576"git ls-remote [--heads] [--tags] [--refs] [--upload-pack=<Programm>]\n"8577" [-q | --quiet] [--exit-code] [--get-url]\n"8578" [--symref] [<Repository> [<Referenzen>...]]"85798580#: builtin/ls-remote.c:508581msgid "do not print remote URL"8582msgstr "URL des Remote-Repositories nicht ausgeben"85838584#: builtin/ls-remote.c:51 builtin/ls-remote.c:538585msgid "exec"8586msgstr "Programm"85878588#: builtin/ls-remote.c:52 builtin/ls-remote.c:548589msgid "path of git-upload-pack on the remote host"8590msgstr "Pfad zu \"git-upload-pack\" auf der Gegenseite"85918592#: builtin/ls-remote.c:568593msgid "limit to tags"8594msgstr "auf Tags einschränken"85958596#: builtin/ls-remote.c:578597msgid "limit to heads"8598msgstr "auf Branches einschränken"85998600#: builtin/ls-remote.c:588601msgid "do not show peeled tags"8602msgstr "keine Tags anzeigen, die andere Tags enthalten"86038604#: builtin/ls-remote.c:608605msgid "take url.<base>.insteadOf into account"8606msgstr "url.<Basis>.insteadOf berücksichtigen"86078608#: builtin/ls-remote.c:628609msgid "exit with exit code 2 if no matching refs are found"8610msgstr ""8611"mit Rückkehrwert 2 beenden, wenn keine übereinstimmenden Referenzen\n"8612"gefunden wurden"86138614#: builtin/ls-remote.c:648615msgid "show underlying ref in addition to the object pointed by it"8616msgstr "zusätzlich die auf durch dieses Objekt verwiesene Referenzen anzeigen"86178618#: builtin/ls-tree.c:288619msgid "git ls-tree [<options>] <tree-ish> [<path>...]"8620msgstr "git ls-tree [<Optionen>] <Commit-Referenz> [<Pfad>...]"86218622#: builtin/ls-tree.c:1288623msgid "only show trees"8624msgstr "nur Verzeichnisse anzeigen"86258626#: builtin/ls-tree.c:1308627msgid "recurse into subtrees"8628msgstr "Rekursion in Unterverzeichnissen durchführen"86298630#: builtin/ls-tree.c:1328631msgid "show trees when recursing"8632msgstr "Verzeichnisse bei Rekursion anzeigen"86338634#: builtin/ls-tree.c:1358635msgid "terminate entries with NUL byte"8636msgstr "Einträge mit NUL-Byte abschließen"86378638#: builtin/ls-tree.c:1368639msgid "include object size"8640msgstr "Objektgröße einschließen"86418642#: builtin/ls-tree.c:138 builtin/ls-tree.c:1408643msgid "list only filenames"8644msgstr "nur Dateinamen auflisten"86458646#: builtin/ls-tree.c:1438647msgid "use full path names"8648msgstr "vollständige Pfadnamen verwenden"86498650#: builtin/ls-tree.c:1458651msgid "list entire tree; not just current directory (implies --full-name)"8652msgstr ""8653"das gesamte Verzeichnis auflisten; nicht nur das aktuelle Verzeichnis "8654"(impliziert --full-name)"86558656#: builtin/merge.c:468657msgid "git merge [<options>] [<commit>...]"8658msgstr "git merge [<Optionen>] [<Commit>...]"86598660#: builtin/merge.c:478661msgid "git merge [<options>] <msg> HEAD <commit>"8662msgstr "git merge [<Optionen>] <Beschreibung> HEAD <Commit>"86638664#: builtin/merge.c:488665msgid "git merge --abort"8666msgstr "git merge --abort"86678668#: builtin/merge.c:1028669msgid "switch `m' requires a value"8670msgstr "Schalter 'm' erfordert einen Wert."86718672#: builtin/merge.c:1398673#, c-format8674msgid "Could not find merge strategy '%s'.\n"8675msgstr "Konnte Merge-Strategie '%s' nicht finden.\n"86768677#: builtin/merge.c:1408678#, c-format8679msgid "Available strategies are:"8680msgstr "Verfügbare Strategien sind:"86818682#: builtin/merge.c:1458683#, c-format8684msgid "Available custom strategies are:"8685msgstr "Verfügbare benutzerdefinierte Strategien sind:"86868687#: builtin/merge.c:195 builtin/pull.c:1268688msgid "do not show a diffstat at the end of the merge"8689msgstr "keine Zusammenfassung der Unterschiede am Schluss des Merges anzeigen"86908691#: builtin/merge.c:198 builtin/pull.c:1298692msgid "show a diffstat at the end of the merge"8693msgstr "eine Zusammenfassung der Unterschiede am Schluss des Merges anzeigen"86948695#: builtin/merge.c:199 builtin/pull.c:1328696msgid "(synonym to --stat)"8697msgstr "(Synonym für --stat)"86988699#: builtin/merge.c:201 builtin/pull.c:1358700msgid "add (at most <n>) entries from shortlog to merge commit message"8701msgstr ""8702"(höchstens <n>) Einträge von \"shortlog\" zur Beschreibung des Merge-Commits "8703"hinzufügen"87048705#: builtin/merge.c:204 builtin/pull.c:1388706msgid "create a single commit instead of doing a merge"8707msgstr "einen einzelnen Commit anstatt eines Merges erzeugen"87088709#: builtin/merge.c:206 builtin/pull.c:1418710msgid "perform a commit if the merge succeeds (default)"8711msgstr "einen Commit durchführen, wenn der Merge erfolgreich war (Standard)"87128713#: builtin/merge.c:208 builtin/pull.c:1448714msgid "edit message before committing"8715msgstr "Bearbeitung der Beschreibung vor dem Commit"87168717#: builtin/merge.c:2098718msgid "allow fast-forward (default)"8719msgstr "Vorspulen erlauben (Standard)"87208721#: builtin/merge.c:211 builtin/pull.c:1508722msgid "abort if fast-forward is not possible"8723msgstr "abbrechen, wenn kein Vorspulen möglich ist"87248725#: builtin/merge.c:215 builtin/pull.c:1538726msgid "verify that the named commit has a valid GPG signature"8727msgstr "den genannten Commit auf eine gültige GPG-Signatur überprüfen"87288729#: builtin/merge.c:216 builtin/notes.c:772 builtin/pull.c:1578730#: builtin/revert.c:898731msgid "strategy"8732msgstr "Strategie"87338734#: builtin/merge.c:217 builtin/pull.c:1588735msgid "merge strategy to use"8736msgstr "zu verwendende Merge-Strategie"87378738#: builtin/merge.c:218 builtin/pull.c:1618739msgid "option=value"8740msgstr "Option=Wert"87418742#: builtin/merge.c:219 builtin/pull.c:1628743msgid "option for selected merge strategy"8744msgstr "Option für ausgewählte Merge-Strategie"87458746#: builtin/merge.c:2218747msgid "merge commit message (for a non-fast-forward merge)"8748msgstr ""8749"Commit-Beschreibung zusammenführen (für einen Merge, der kein Vorspulen war)"87508751#: builtin/merge.c:2258752msgid "abort the current in-progress merge"8753msgstr "den sich im Gange befindlichen Merge abbrechen"87548755#: builtin/merge.c:227 builtin/pull.c:1698756msgid "allow merging unrelated histories"8757msgstr "erlaube das Zusammenführen von nicht zusammenhängenden Historien"87588759#: builtin/merge.c:2558760msgid "could not run stash."8761msgstr "Konnte \"stash\" nicht ausführen."87628763#: builtin/merge.c:2608764msgid "stash failed"8765msgstr "\"stash\" fehlgeschlagen"87668767#: builtin/merge.c:2658768#, c-format8769msgid "not a valid object: %s"8770msgstr "kein gültiges Objekt: %s"87718772#: builtin/merge.c:284 builtin/merge.c:3018773msgid "read-tree failed"8774msgstr "read-tree fehlgeschlagen"87758776#: builtin/merge.c:3318777msgid " (nothing to squash)"8778msgstr " (nichts zu quetschen)"87798780#: builtin/merge.c:3428781#, c-format8782msgid "Squash commit -- not updating HEAD\n"8783msgstr "Quetsche Commit -- HEAD wird nicht aktualisiert\n"87848785#: builtin/merge.c:3928786#, c-format8787msgid "No merge message -- not updating HEAD\n"8788msgstr "Keine Merge-Commit-Beschreibung -- HEAD wird nicht aktualisiert\n"87898790#: builtin/merge.c:4438791#, c-format8792msgid "'%s' does not point to a commit"8793msgstr "'%s' zeigt auf keinen Commit"87948795#: builtin/merge.c:5338796#, c-format8797msgid "Bad branch.%s.mergeoptions string: %s"8798msgstr "Ungültiger branch.%s.mergeoptions String: %s"87998800#: builtin/merge.c:6528801msgid "Not handling anything other than two heads merge."8802msgstr "Es wird nur der Merge von zwei Branches behandelt."88038804#: builtin/merge.c:6668805#, c-format8806msgid "Unknown option for merge-recursive: -X%s"8807msgstr "Unbekannte Option für merge-recursive: -X%s"88088809#: builtin/merge.c:6818810#, c-format8811msgid "unable to write %s"8812msgstr "konnte %s nicht schreiben"88138814#: builtin/merge.c:7338815#, c-format8816msgid "Could not read from '%s'"8817msgstr "konnte nicht von '%s' lesen"88188819#: builtin/merge.c:7428820#, c-format8821msgid "Not committing merge; use 'git commit' to complete the merge.\n"8822msgstr ""8823"Merge wurde nicht committet; benutzen Sie 'git commit', um den Merge "8824"abzuschließen.\n"88258826#: builtin/merge.c:7488827#, c-format8828msgid ""8829"Please enter a commit message to explain why this merge is necessary,\n"8830"especially if it merges an updated upstream into a topic branch.\n"8831"\n"8832"Lines starting with '%c' will be ignored, and an empty message aborts\n"8833"the commit.\n"8834msgstr ""8835"Bitte geben Sie eine Commit-Beschreibung ein, um zu erklären, warum dieser\n"8836"Merge erforderlich ist, insbesondere wenn es einen aktualisierten\n"8837"Upstream-Branch mit einem Thema-Branch zusammenführt.\n"8838"\n"8839"Zeilen beginnend mit '%c' werden ignoriert, und eine leere Beschreibung\n"8840"bricht den Commit ab.\n"88418842#: builtin/merge.c:7728843msgid "Empty commit message."8844msgstr "Leere Commit-Beschreibung"88458846#: builtin/merge.c:7928847#, c-format8848msgid "Wonderful.\n"8849msgstr "Wunderbar.\n"88508851#: builtin/merge.c:8478852#, c-format8853msgid "Automatic merge failed; fix conflicts and then commit the result.\n"8854msgstr ""8855"Automatischer Merge fehlgeschlagen; beheben Sie die Konflikte und committen "8856"Sie dann das Ergebnis.\n"88578858#: builtin/merge.c:8638859#, c-format8860msgid "'%s' is not a commit"8861msgstr "'%s' ist kein Commit"88628863#: builtin/merge.c:9048864msgid "No current branch."8865msgstr "Sie befinden sich auf keinem Branch."88668867#: builtin/merge.c:9068868msgid "No remote for the current branch."8869msgstr "Kein Remote-Repository für den aktuellen Branch."88708871#: builtin/merge.c:9088872msgid "No default upstream defined for the current branch."8873msgstr ""8874"Es ist kein Standard-Upstream-Branch für den aktuellen Branch definiert."88758876#: builtin/merge.c:9138877#, c-format8878msgid "No remote-tracking branch for %s from %s"8879msgstr "Kein Remote-Tracking-Branch für %s von %s"88808881#: builtin/merge.c:9608882#, c-format8883msgid "Bad value '%s' in environment '%s'"8884msgstr "Fehlerhafter Wert '%s' in Umgebungsvariable '%s'"88858886#: builtin/merge.c:10348887#, c-format8888msgid "could not close '%s'"8889msgstr "Konnte '%s' nicht schließen"88908891#: builtin/merge.c:10618892#, c-format8893msgid "not something we can merge in %s: %s"8894msgstr "nichts was wir in %s zusammenführen können: %s"88958896#: builtin/merge.c:10958897msgid "not something we can merge"8898msgstr "nichts was wir zusammenführen können"88998900#: builtin/merge.c:11628901msgid "There is no merge to abort (MERGE_HEAD missing)."8902msgstr "Es gibt keinen Merge zum Abbrechen (MERGE_HEAD fehlt)"89038904#: builtin/merge.c:11788905msgid ""8906"You have not concluded your merge (MERGE_HEAD exists).\n"8907"Please, commit your changes before you merge."8908msgstr ""8909"Sie haben Ihren Merge nicht abgeschlossen (MERGE_HEAD existiert).\n"8910"Bitte committen Sie Ihre Änderungen, bevor Sie den Merge ausführen."89118912#: builtin/merge.c:11858913msgid ""8914"You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"8915"Please, commit your changes before you merge."8916msgstr ""8917"Sie haben \"cherry-pick\" nicht abgeschlossen (CHERRY_PICK_HEAD existiert).\n"8918"Bitte committen Sie Ihre Änderungen, bevor Sie den Merge ausführen."89198920#: builtin/merge.c:11888921msgid "You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."8922msgstr ""8923"Sie haben \"cherry-pick\" nicht abgeschlossen (CHERRY_PICK_HEAD existiert)."89248925#: builtin/merge.c:11978926msgid "You cannot combine --squash with --no-ff."8927msgstr "Sie können --squash nicht mit --no-ff kombinieren."89288929#: builtin/merge.c:12058930msgid "No commit specified and merge.defaultToUpstream not set."8931msgstr "Kein Commit angegeben und merge.defaultToUpstream ist nicht gesetzt."89328933#: builtin/merge.c:12228934msgid "Squash commit into empty head not supported yet"8935msgstr ""8936"Bin auf einem Commit, der noch geboren wird; kann \"squash\" nicht ausführen."89378938#: builtin/merge.c:12248939msgid "Non-fast-forward commit does not make sense into an empty head"8940msgstr ""8941"Nicht vorzuspulender Commit kann nicht in einem leeren Branch verwendet "8942"werden."89438944#: builtin/merge.c:12298945#, c-format8946msgid "%s - not something we can merge"8947msgstr "%s - nichts was wir zusammenführen können"89488949#: builtin/merge.c:12318950msgid "Can merge only exactly one commit into empty head"8951msgstr "Kann nur exakt einen Commit in einem leeren Branch zusammenführen."89528953#: builtin/merge.c:12878954#, c-format8955msgid "Commit %s has an untrusted GPG signature, allegedly by %s."8956msgstr ""8957"Commit %s hat eine nicht vertrauenswürdige GPG-Signatur, angeblich von %s."89588959#: builtin/merge.c:12908960#, c-format8961msgid "Commit %s has a bad GPG signature allegedly by %s."8962msgstr "Commit %s hat eine ungültige GPG-Signatur, angeblich von %s."89638964#: builtin/merge.c:12938965#, c-format8966msgid "Commit %s does not have a GPG signature."8967msgstr "Commit %s hat keine GPG-Signatur."89688969#: builtin/merge.c:12968970#, c-format8971msgid "Commit %s has a good GPG signature by %s\n"8972msgstr "Commit %s hat eine gültige GPG-Signatur von %s\n"89738974#: builtin/merge.c:13588975msgid "refusing to merge unrelated histories"8976msgstr "Verweigere den Merge von nicht zusammenhängenden Historien."89778978#: builtin/merge.c:13678979msgid "Already up-to-date."8980msgstr "Bereits aktuell."89818982#: builtin/merge.c:13828983#, c-format8984msgid "Updating %s..%s\n"8985msgstr "Aktualisiere %s..%s\n"89868987#: builtin/merge.c:14198988#, c-format8989msgid "Trying really trivial in-index merge...\n"8990msgstr "Probiere wirklich trivialen \"in-index\"-Merge ...\n"89918992#: builtin/merge.c:14268993#, c-format8994msgid "Nope.\n"8995msgstr "Nein.\n"89968997#: builtin/merge.c:14518998msgid "Already up-to-date. Yeeah!"8999msgstr "Bereits aktuell."90009001#: builtin/merge.c:14579002msgid "Not possible to fast-forward, aborting."9003msgstr "Vorspulen nicht möglich, breche ab."90049005#: builtin/merge.c:1480 builtin/merge.c:15599006#, c-format9007msgid "Rewinding the tree to pristine...\n"9008msgstr "Rücklauf des Verzeichnisses bis zum Ursprung ...\n"90099010#: builtin/merge.c:14849011#, c-format9012msgid "Trying merge strategy %s...\n"9013msgstr "Probiere Merge-Strategie %s ...\n"90149015#: builtin/merge.c:15509016#, c-format9017msgid "No merge strategy handled the merge.\n"9018msgstr "Keine Merge-Strategie behandelt diesen Merge.\n"90199020#: builtin/merge.c:15529021#, c-format9022msgid "Merge with strategy %s failed.\n"9023msgstr "Merge mit Strategie %s fehlgeschlagen.\n"90249025#: builtin/merge.c:15619026#, c-format9027msgid "Using the %s to prepare resolving by hand.\n"9028msgstr "Benutzen Sie \"%s\", um die Auflösung per Hand vorzubereiten.\n"90299030#: builtin/merge.c:15739031#, c-format9032msgid "Automatic merge went well; stopped before committing as requested\n"9033msgstr ""9034"Automatischer Merge abgeschlossen; halte, wie gewünscht, vor dem Commit an\n"90359036#: builtin/merge-base.c:299037msgid "git merge-base [-a | --all] <commit> <commit>..."9038msgstr "git merge-base [-a | --all] <Commit> <Commit>..."90399040#: builtin/merge-base.c:309041msgid "git merge-base [-a | --all] --octopus <commit>..."9042msgstr "git merge-base [-a | --all] --octopus <Commit>..."90439044#: builtin/merge-base.c:319045msgid "git merge-base --independent <commit>..."9046msgstr "git merge-base --independent <Commit>..."90479048#: builtin/merge-base.c:329049msgid "git merge-base --is-ancestor <commit> <commit>"9050msgstr "git merge-base --is-ancestor <Commit> <Commit>"90519052#: builtin/merge-base.c:339053msgid "git merge-base --fork-point <ref> [<commit>]"9054msgstr "git merge-base --fork-point <Referenz> [<Commit>]"90559056#: builtin/merge-base.c:2149057msgid "output all common ancestors"9058msgstr "Ausgabe aller gemeinsamen Vorgänger-Commits"90599060#: builtin/merge-base.c:2169061msgid "find ancestors for a single n-way merge"9062msgstr "Vorgänger-Commits für einen einzelnen n-Wege-Merge finden"90639064#: builtin/merge-base.c:2189065msgid "list revs not reachable from others"9066msgstr "Commits auflisten, die nicht durch Andere erreichbar sind"90679068#: builtin/merge-base.c:2209069msgid "is the first one ancestor of the other?"9070msgstr "ist der Erste ein Vorgänger-Commit von dem Anderen?"90719072#: builtin/merge-base.c:2229073msgid "find where <commit> forked from reflog of <ref>"9074msgstr "<Commit> finden, von wo Reflog von <Referenz> abgespalten wurde"90759076#: builtin/merge-file.c:89077msgid ""9078"git merge-file [<options>] [-L <name1> [-L <orig> [-L <name2>]]] <file1> "9079"<orig-file> <file2>"9080msgstr ""9081"git merge-file [<Optionen>] [-L <Name1> [-L <orig> [-L <Name2>]]] <Datei1> "9082"<orig-Datei> <Datei2>"90839084#: builtin/merge-file.c:339085msgid "send results to standard output"9086msgstr "Ergebnisse zur Standard-Ausgabe senden"90879088#: builtin/merge-file.c:349089msgid "use a diff3 based merge"9090msgstr "einen diff3 basierten Merge verwenden"90919092#: builtin/merge-file.c:359093msgid "for conflicts, use our version"9094msgstr "bei Konflikten unsere Variante verwenden"90959096#: builtin/merge-file.c:379097msgid "for conflicts, use their version"9098msgstr "bei Konflikten ihre Variante verwenden"90999100#: builtin/merge-file.c:399101msgid "for conflicts, use a union version"9102msgstr "bei Konflikten eine gemeinsame Variante verwenden"91039104#: builtin/merge-file.c:429105msgid "for conflicts, use this marker size"9106msgstr "bei Konflikten diese Kennzeichnungslänge verwenden"91079108#: builtin/merge-file.c:439109msgid "do not warn about conflicts"9110msgstr "keine Warnung bei Konflikten"91119112#: builtin/merge-file.c:459113msgid "set labels for file1/orig-file/file2"9114msgstr "Beschriftung für Datei1/orig-Datei/Datei2 setzen"91159116#: builtin/mktree.c:659117msgid "git mktree [-z] [--missing] [--batch]"9118msgstr "git mktree [-z] [--missing] [--batch]"91199120#: builtin/mktree.c:1529121msgid "input is NUL terminated"9122msgstr "Eingabe ist durch NUL-Zeichen abgeschlossen"91239124#: builtin/mktree.c:153 builtin/write-tree.c:249125msgid "allow missing objects"9126msgstr "fehlende Objekte erlauben"91279128#: builtin/mktree.c:1549129msgid "allow creation of more than one tree"9130msgstr "die Erstellung von mehr als einem \"Tree\"-Objekt erlauben"91319132#: builtin/mv.c:159133msgid "git mv [<options>] <source>... <destination>"9134msgstr "git mv [<Optionen>] <Quelle>... <Ziel>"91359136#: builtin/mv.c:709137#, c-format9138msgid "Directory %s is in index and no submodule?"9139msgstr "Verzeichnis %s ist zum Commit vorgemerkt und kein Submodul?"91409141#: builtin/mv.c:72 builtin/rm.c:3179142msgid "Please stage your changes to .gitmodules or stash them to proceed"9143msgstr ""9144"Bitte merken Sie Ihre Änderungen in .gitmodules zum Commit vor oder "9145"benutzen\n"9146"Sie \"stash\", um fortzufahren."91479148#: builtin/mv.c:909149#, c-format9150msgid "%.*s is in index"9151msgstr "%.*s ist zum Commit vorgemerkt"91529153#: builtin/mv.c:1129154msgid "force move/rename even if target exists"9155msgstr "Verschieben/Umbenennen erzwingen, auch wenn das Ziel existiert"91569157#: builtin/mv.c:1139158msgid "skip move/rename errors"9159msgstr "Fehler beim Verschieben oder Umbenennen überspringen"91609161#: builtin/mv.c:1559162#, c-format9163msgid "destination '%s' is not a directory"9164msgstr "Ziel '%s' ist kein Verzeichnis"91659166#: builtin/mv.c:1669167#, c-format9168msgid "Checking rename of '%s' to '%s'\n"9169msgstr "Prüfe Umbenennung von '%s' nach '%s'\n"91709171#: builtin/mv.c:1709172msgid "bad source"9173msgstr "ungültige Quelle"91749175#: builtin/mv.c:1739176msgid "can not move directory into itself"9177msgstr "kann Verzeichnis nicht in sich selbst verschieben"91789179#: builtin/mv.c:1769180msgid "cannot move directory over file"9181msgstr "kann Verzeichnis nicht über Datei verschieben"91829183#: builtin/mv.c:1859184msgid "source directory is empty"9185msgstr "Quellverzeichnis ist leer"91869187#: builtin/mv.c:2109188msgid "not under version control"9189msgstr "nicht unter Versionskontrolle"91909191#: builtin/mv.c:2139192msgid "destination exists"9193msgstr "Ziel existiert bereits"91949195#: builtin/mv.c:2219196#, c-format9197msgid "overwriting '%s'"9198msgstr "überschreibe '%s'"91999200#: builtin/mv.c:2249201msgid "Cannot overwrite"9202msgstr "Kann nicht überschreiben"92039204#: builtin/mv.c:2279205msgid "multiple sources for the same target"9206msgstr "mehrere Quellen für das selbe Ziel"92079208#: builtin/mv.c:2299209msgid "destination directory does not exist"9210msgstr "Zielverzeichnis existiert nicht"92119212#: builtin/mv.c:2369213#, c-format9214msgid "%s, source=%s, destination=%s"9215msgstr "%s, Quelle=%s, Ziel=%s"92169217#: builtin/mv.c:2579218#, c-format9219msgid "Renaming %s to %s\n"9220msgstr "Benenne %s nach %s um\n"92219222#: builtin/mv.c:263 builtin/remote.c:710 builtin/repack.c:3759223#, c-format9224msgid "renaming '%s' failed"9225msgstr "Umbenennung von '%s' fehlgeschlagen"92269227#: builtin/name-rev.c:2589228msgid "git name-rev [<options>] <commit>..."9229msgstr "git name-rev [<Optionen>] <Commit>..."92309231#: builtin/name-rev.c:2599232msgid "git name-rev [<options>] --all"9233msgstr "git name-rev [<Optionen>] --all"92349235#: builtin/name-rev.c:2609236msgid "git name-rev [<options>] --stdin"9237msgstr "git name-rev [<Optionen>] --stdin"92389239#: builtin/name-rev.c:3129240msgid "print only names (no SHA-1)"9241msgstr "nur Namen anzeigen (keine SHA-1)"92429243#: builtin/name-rev.c:3139244msgid "only use tags to name the commits"9245msgstr "nur Tags verwenden, um die Commits zu benennen"92469247#: builtin/name-rev.c:3159248msgid "only use refs matching <pattern>"9249msgstr "nur Referenzen verwenden die <Muster> entsprechen"92509251#: builtin/name-rev.c:3179252msgid "list all commits reachable from all refs"9253msgstr "alle Commits auflisten, die von allen Referenzen erreichbar sind"92549255#: builtin/name-rev.c:3189256msgid "read from stdin"9257msgstr "von der Standard-Eingabe lesen"92589259#: builtin/name-rev.c:3199260msgid "allow to print `undefined` names (default)"9261msgstr "Ausgabe von `undefinierten` Namen erlauben (Standard)"92629263#: builtin/name-rev.c:3259264msgid "dereference tags in the input (internal use)"9265msgstr "Tags in der Eingabe dereferenzieren (interne Verwendung)"92669267#: builtin/notes.c:259268msgid "git notes [--ref <notes-ref>] [list [<object>]]"9269msgstr "git notes [--ref <Notiz-Referenz>] [list [<Objekt>]]"92709271#: builtin/notes.c:269272msgid ""9273"git notes [--ref <notes-ref>] add [-f] [--allow-empty] [-m <msg> | -F <file> "9274"| (-c | -C) <object>] [<object>]"9275msgstr ""9276"git notes [--ref <Notiz-Referenz>] add [-f] [--allow-empty] [-m "9277"<Beschreibung> | -F <Datei> | (-c | -C) <Objekt>] [<Objekt>]"92789279#: builtin/notes.c:279280msgid "git notes [--ref <notes-ref>] copy [-f] <from-object> <to-object>"9281msgstr ""9282"git notes [--ref <Notiz-Referenz>] copy [-f] <von-Objekt> <nach-Objekt>"92839284#: builtin/notes.c:289285msgid ""9286"git notes [--ref <notes-ref>] append [--allow-empty] [-m <msg> | -F <file> | "9287"(-c | -C) <object>] [<object>]"9288msgstr ""9289"git notes [--ref <Notiz-Referenz>] append [--allow-empty] [-m <Beschreibung> "9290"| -F <Datei> | (-c | -C) <Objekt>] [<Objekt>]"92919292#: builtin/notes.c:299293msgid "git notes [--ref <notes-ref>] edit [--allow-empty] [<object>]"9294msgstr "git notes [--ref <Notiz-Referenz>] edit [--allow-empty] [<Objekt>]"92959296#: builtin/notes.c:309297msgid "git notes [--ref <notes-ref>] show [<object>]"9298msgstr "git notes [--ref <Notiz-Referenz>] show [<Objekt>]"92999300#: builtin/notes.c:319301msgid ""9302"git notes [--ref <notes-ref>] merge [-v | -q] [-s <strategy>] <notes-ref>"9303msgstr ""9304"git notes [--ref <Notiz-Referenz>] merge [-v | -q] [-s <Strategie>] <Notiz-"9305"Referenz>"93069307#: builtin/notes.c:329308msgid "git notes merge --commit [-v | -q]"9309msgstr "git notes merge --commit [-v | -q]"93109311#: builtin/notes.c:339312msgid "git notes merge --abort [-v | -q]"9313msgstr "git notes merge --abort [-v | -q]"93149315#: builtin/notes.c:349316msgid "git notes [--ref <notes-ref>] remove [<object>...]"9317msgstr "git notes [--ref <Notiz-Referenz>] remove [<Objekt>...]"93189319#: builtin/notes.c:359320msgid "git notes [--ref <notes-ref>] prune [-n | -v]"9321msgstr "git notes [--ref <Notiz-Referenz>] prune [-n | -v]"93229323#: builtin/notes.c:369324msgid "git notes [--ref <notes-ref>] get-ref"9325msgstr "git notes [--ref <Notiz-Referenz>] get-ref"93269327#: builtin/notes.c:419328msgid "git notes [list [<object>]]"9329msgstr "git notes [list [<Objekt>]]"93309331#: builtin/notes.c:469332msgid "git notes add [<options>] [<object>]"9333msgstr "git notes add [<Optionen>] [<Objekt>]"93349335#: builtin/notes.c:519336msgid "git notes copy [<options>] <from-object> <to-object>"9337msgstr "git notes copy [<Optionen>] <von-Objekt> <nach-Objekt>"93389339#: builtin/notes.c:529340msgid "git notes copy --stdin [<from-object> <to-object>]..."9341msgstr "git notes copy --stdin [<von-Objekt> <nach-Objekt>]..."93429343#: builtin/notes.c:579344msgid "git notes append [<options>] [<object>]"9345msgstr "git notes append [<Optionen>] [<Objekt>]"93469347#: builtin/notes.c:629348msgid "git notes edit [<object>]"9349msgstr "git notes edit [<Objekt>]"93509351#: builtin/notes.c:679352msgid "git notes show [<object>]"9353msgstr "git notes show [<Objekt>]"93549355#: builtin/notes.c:729356msgid "git notes merge [<options>] <notes-ref>"9357msgstr "git notes merge [<Optionen>] <Notiz-Referenz>"93589359#: builtin/notes.c:739360msgid "git notes merge --commit [<options>]"9361msgstr "git notes merge --commit [<Optionen>]"93629363#: builtin/notes.c:749364msgid "git notes merge --abort [<options>]"9365msgstr "git notes merge --abort [<Optionen>]"93669367#: builtin/notes.c:799368msgid "git notes remove [<object>]"9369msgstr "git notes remove [<Objekt>]"93709371#: builtin/notes.c:849372msgid "git notes prune [<options>]"9373msgstr "git notes prune [<Optionen>]"93749375#: builtin/notes.c:899376msgid "git notes get-ref"9377msgstr "git notes get-ref"93789379#: builtin/notes.c:949380msgid "Write/edit the notes for the following object:"9381msgstr "Schreiben/Bearbeiten der Notizen für das folgende Objekt:"93829383#: builtin/notes.c:1479384#, c-format9385msgid "unable to start 'show' for object '%s'"9386msgstr "konnte 'show' für Objekt '%s' nicht starten"93879388#: builtin/notes.c:1519389msgid "could not read 'show' output"9390msgstr "Konnte Ausgabe von 'show' nicht lesen."93919392#: builtin/notes.c:1599393#, c-format9394msgid "failed to finish 'show' for object '%s'"9395msgstr "konnte 'show' für Objekt '%s' nicht abschließen"93969397#: builtin/notes.c:1949398msgid "Please supply the note contents using either -m or -F option"9399msgstr ""9400"Bitte liefern Sie den Notiz-Inhalt unter Verwendung der Option -m oder -F."94019402#: builtin/notes.c:2039403msgid "unable to write note object"9404msgstr "Konnte Notiz-Objekt nicht schreiben"94059406#: builtin/notes.c:2059407#, c-format9408msgid "The note contents have been left in %s"9409msgstr "Die Notiz-Inhalte wurden in %s belassen"94109411#: builtin/notes.c:233 builtin/tag.c:4399412#, c-format9413msgid "cannot read '%s'"9414msgstr "kann '%s' nicht lesen"94159416#: builtin/notes.c:235 builtin/tag.c:4429417#, c-format9418msgid "could not open or read '%s'"9419msgstr "konnte '%s' nicht öffnen oder lesen"94209421#: builtin/notes.c:2579422#, c-format9423msgid "Failed to read object '%s'."9424msgstr "Fehler beim Lesen des Objektes '%s'."94259426#: builtin/notes.c:2619427#, c-format9428msgid "Cannot read note data from non-blob object '%s'."9429msgstr "Kann Notiz-Daten nicht von Nicht-Blob Objekt '%s' lesen."94309431#: builtin/notes.c:363 builtin/notes.c:418 builtin/notes.c:4949432#: builtin/notes.c:506 builtin/notes.c:582 builtin/notes.c:6509433#: builtin/notes.c:800 builtin/notes.c:947 builtin/notes.c:9689434msgid "too many parameters"9435msgstr "zu viele Parameter"94369437#: builtin/notes.c:376 builtin/notes.c:6639438#, c-format9439msgid "No note found for object %s."9440msgstr "Keine Notiz für Objekt %s gefunden."94419442#: builtin/notes.c:397 builtin/notes.c:5609443msgid "note contents as a string"9444msgstr "Notizinhalte als Zeichenkette"94459446#: builtin/notes.c:400 builtin/notes.c:5639447msgid "note contents in a file"9448msgstr "Notizinhalte in einer Datei"94499450#: builtin/notes.c:403 builtin/notes.c:5669451msgid "reuse and edit specified note object"9452msgstr "Wiederverwendung und Bearbeitung des angegebenen Notiz-Objektes"94539454#: builtin/notes.c:406 builtin/notes.c:5699455msgid "reuse specified note object"9456msgstr "Wiederverwendung des angegebenen Notiz-Objektes"94579458#: builtin/notes.c:409 builtin/notes.c:5729459msgid "allow storing empty note"9460msgstr "Speichern leerer Notiz erlauben"94619462#: builtin/notes.c:410 builtin/notes.c:4819463msgid "replace existing notes"9464msgstr "existierende Notizen ersetzen"94659466#: builtin/notes.c:4359467#, c-format9468msgid ""9469"Cannot add notes. Found existing notes for object %s. Use '-f' to overwrite "9470"existing notes"9471msgstr ""9472"Konnte Notizen nicht hinzufügen. Existierende Notizen für Objekt %s "9473"gefunden. Verwenden Sie '-f', um die existierenden Notizen zu überschreiben."94749475#: builtin/notes.c:450 builtin/notes.c:5299476#, c-format9477msgid "Overwriting existing notes for object %s\n"9478msgstr "Überschreibe existierende Notizen für Objekt %s\n"94799480#: builtin/notes.c:461 builtin/notes.c:622 builtin/notes.c:8879481#, c-format9482msgid "Removing note for object %s\n"9483msgstr "Entferne Notiz für Objekt %s\n"94849485#: builtin/notes.c:4829486msgid "read objects from stdin"9487msgstr "Objekte von der Standard-Eingabe lesen"94889489#: builtin/notes.c:4849490msgid "load rewriting config for <command> (implies --stdin)"9491msgstr ""9492"Konfiguration für <Befehl> zum Umschreiben von Commits laden (impliziert --"9493"stdin)"94949495#: builtin/notes.c:5029496msgid "too few parameters"9497msgstr "zu wenig Parameter"94989499#: builtin/notes.c:5239500#, c-format9501msgid ""9502"Cannot copy notes. Found existing notes for object %s. Use '-f' to overwrite "9503"existing notes"9504msgstr ""9505"Kann Notizen nicht kopieren. Existierende Notizen für Objekt %s gefunden. "9506"Verwenden Sie '-f', um die existierenden Notizen zu überschreiben."95079508#: builtin/notes.c:5359509#, c-format9510msgid "Missing notes on source object %s. Cannot copy."9511msgstr "Keine Notizen für Quell-Objekt %s. Kopie nicht möglich."95129513#: builtin/notes.c:5879514#, c-format9515msgid ""9516"The -m/-F/-c/-C options have been deprecated for the 'edit' subcommand.\n"9517"Please use 'git notes add -f -m/-F/-c/-C' instead.\n"9518msgstr ""9519"Die Optionen -m/-F/-c/-C sind für den Unterbefehl 'edit' veraltet.\n"9520"Bitte benutzen Sie stattdessen 'git notes add -f -m/-F/-c/-C'.\n"95219522#: builtin/notes.c:7539523#, c-format9524msgid "unknown notes merge strategy %s"9525msgstr "unbekannte Merge-Strategie '%s' für Notizen"95269527#: builtin/notes.c:7699528msgid "General options"9529msgstr "Allgemeine Optionen"95309531#: builtin/notes.c:7719532msgid "Merge options"9533msgstr "Merge-Optionen"95349535#: builtin/notes.c:7739536msgid ""9537"resolve notes conflicts using the given strategy (manual/ours/theirs/union/"9538"cat_sort_uniq)"9539msgstr ""9540"löst Konflikte bei Notizen mit der angegebenen Strategie auf (manual/ours/"9541"theirs/union/cat_sort_uniq)"95429543#: builtin/notes.c:7759544msgid "Committing unmerged notes"9545msgstr "nicht zusammengeführte Notizen eintragen"95469547#: builtin/notes.c:7779548msgid "finalize notes merge by committing unmerged notes"9549msgstr ""9550"Merge von Notizen abschließen, in dem nicht zusammengeführte Notizen "9551"committet werden"95529553#: builtin/notes.c:7799554msgid "Aborting notes merge resolution"9555msgstr "Konfliktauflösung beim Merge von Notizen abbrechen"95569557#: builtin/notes.c:7819558msgid "abort notes merge"9559msgstr "Merge von Notizen abbrechen"95609561#: builtin/notes.c:7929562msgid "cannot mix --commit, --abort or -s/--strategy"9563msgstr "Kann --commit, --abort oder -s/--strategy nicht kombinieren."95649565#: builtin/notes.c:7979566msgid "Must specify a notes ref to merge"9567msgstr "Sie müssen eine Notiz-Referenz zum Mergen angeben."95689569#: builtin/notes.c:8219570#, c-format9571msgid "Unknown -s/--strategy: %s"9572msgstr "Unbekannter Wert für -s/--strategy: %s"95739574#: builtin/notes.c:8589575#, c-format9576msgid "A notes merge into %s is already in-progress at %s"9577msgstr "Ein Merge von Notizen nach %s ist bereits im Gange bei %s"95789579#: builtin/notes.c:8619580#, c-format9581msgid "Failed to store link to current notes ref (%s)"9582msgstr "Fehler beim Speichern der Verknüpfung zur aktuellen Notes-Referenz (%s)"95839584#: builtin/notes.c:8639585#, c-format9586msgid ""9587"Automatic notes merge failed. Fix conflicts in %s and commit the result with "9588"'git notes merge --commit', or abort the merge with 'git notes merge --"9589"abort'.\n"9590msgstr ""9591"Automatisches Zusammenführen der Notizen fehlgeschlagen. Beheben Sie die\n"9592"Konflikte in %s und committen Sie das Ergebnis mit 'git notes merge --commit',\n"9593"oder brechen Sie den Merge mit 'git notes merge --abort' ab.\n"95949595#: builtin/notes.c:8859596#, c-format9597msgid "Object %s has no note\n"9598msgstr "Objekt %s hat keine Notiz\n"95999600#: builtin/notes.c:8979601msgid "attempt to remove non-existent note is not an error"9602msgstr "der Versuch, eine nicht existierende Notiz zu löschen, ist kein Fehler"96039604#: builtin/notes.c:9009605msgid "read object names from the standard input"9606msgstr "Objektnamen von der Standard-Eingabe lesen"96079608#: builtin/notes.c:938 builtin/prune.c:105 builtin/worktree.c:1279609msgid "do not remove, show only"9610msgstr "nicht löschen, nur anzeigen"96119612#: builtin/notes.c:9399613msgid "report pruned notes"9614msgstr "gelöschte Notizen melden"96159616#: builtin/notes.c:9819617msgid "notes-ref"9618msgstr "Notiz-Referenz"96199620#: builtin/notes.c:9829621msgid "use notes from <notes-ref>"9622msgstr "Notizen von <Notiz-Referenz> verwenden"96239624#: builtin/notes.c:1017 builtin/remote.c:16239625#, c-format9626msgid "Unknown subcommand: %s"9627msgstr "Unbekannter Unterbefehl: %s"96289629#: builtin/pack-objects.c:289630msgid ""9631"git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"9632msgstr ""9633"git pack-objects --stdout [<Optionen>...] [< <Referenzliste> | < "9634"<Objektliste>]"96359636#: builtin/pack-objects.c:299637msgid ""9638"git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"9639msgstr ""9640"git pack-objects [<Optionen>...] <Basis-Name> [< <Referenzliste> | < "9641"<Objektliste>]"96429643#: builtin/pack-objects.c:177 builtin/pack-objects.c:1809644#, c-format9645msgid "deflate error (%d)"9646msgstr "Fehler beim Komprimieren (%d)"96479648#: builtin/pack-objects.c:7669649msgid "disabling bitmap writing, packs are split due to pack.packSizeLimit"9650msgstr ""9651"Deaktiviere Schreiben der Bitmap, Pakete wurden durch pack.packSizeLimit\n"9652"aufgetrennt."96539654#: builtin/pack-objects.c:7799655msgid "Writing objects"9656msgstr "Schreibe Objekte"96579658#: builtin/pack-objects.c:10379659msgid "disabling bitmap writing, as some objects are not being packed"9660msgstr ""9661"Deaktiviere Schreiben der Bitmap, da einige Objekte nicht in eine Pack-"9662"Datei\n"9663"geschrieben wurden."96649665#: builtin/pack-objects.c:21979666msgid "Compressing objects"9667msgstr "Komprimiere Objekte"96689669#: builtin/pack-objects.c:26119670#, c-format9671msgid "unsupported index version %s"9672msgstr "Nicht unterstützte Index-Version %s"96739674#: builtin/pack-objects.c:26159675#, c-format9676msgid "bad index version '%s'"9677msgstr "Ungültige Index-Version '%s'"96789679#: builtin/pack-objects.c:26459680msgid "do not show progress meter"9681msgstr "keine Fortschrittsanzeige anzeigen"96829683#: builtin/pack-objects.c:26479684msgid "show progress meter"9685msgstr "Fortschrittsanzeige anzeigen"96869687#: builtin/pack-objects.c:26499688msgid "show progress meter during object writing phase"9689msgstr ""9690"Forschrittsanzeige während der Phase des Schreibens der Objekte anzeigen"96919692#: builtin/pack-objects.c:26529693msgid "similar to --all-progress when progress meter is shown"9694msgstr "ähnlich zu --all-progress wenn Fortschrittsanzeige darstellt wird"96959696#: builtin/pack-objects.c:26539697msgid "version[,offset]"9698msgstr "version[,offset]"96999700#: builtin/pack-objects.c:26549701msgid "write the pack index file in the specified idx format version"9702msgstr ""9703"die Index-Datei des Paketes in der angegebenen Indexformat-Version schreiben"97049705#: builtin/pack-objects.c:26579706msgid "maximum size of each output pack file"9707msgstr "maximale Größe für jede ausgegebene Paketdatei"97089709#: builtin/pack-objects.c:26599710msgid "ignore borrowed objects from alternate object store"9711msgstr "geliehene Objekte von alternativem Objektspeicher ignorieren"97129713#: builtin/pack-objects.c:26619714msgid "ignore packed objects"9715msgstr "gepackte Objekte ignorieren"97169717#: builtin/pack-objects.c:26639718msgid "limit pack window by objects"9719msgstr "Paketfenster durch Objekte begrenzen"97209721#: builtin/pack-objects.c:26659722msgid "limit pack window by memory in addition to object limit"9723msgstr ""9724"Paketfenster, zusätzlich zur Objektbegrenzung, durch Speicher begrenzen"97259726#: builtin/pack-objects.c:26679727msgid "maximum length of delta chain allowed in the resulting pack"9728msgstr ""9729"maximale Länge der erlaubten Differenzverkettung im resultierenden Paket"97309731#: builtin/pack-objects.c:26699732msgid "reuse existing deltas"9733msgstr "existierende Unterschiede wiederverwenden"97349735#: builtin/pack-objects.c:26719736msgid "reuse existing objects"9737msgstr "existierende Objekte wiederverwenden"97389739#: builtin/pack-objects.c:26739740msgid "use OFS_DELTA objects"9741msgstr "OFS_DELTA Objekte verwenden"97429743#: builtin/pack-objects.c:26759744msgid "use threads when searching for best delta matches"9745msgstr ""9746"Threads bei der Suche nach den besten Übereinstimmungen bei Unterschieden "9747"verwenden"97489749#: builtin/pack-objects.c:26779750msgid "do not create an empty pack output"9751msgstr "keine leeren Pakete erzeugen"97529753#: builtin/pack-objects.c:26799754msgid "read revision arguments from standard input"9755msgstr "Argumente bezüglich Commits von der Standard-Eingabe lesen"97569757#: builtin/pack-objects.c:26819758msgid "limit the objects to those that are not yet packed"9759msgstr "die Objekte zu solchen, die noch nicht gepackt wurden, begrenzen"97609761#: builtin/pack-objects.c:26849762msgid "include objects reachable from any reference"9763msgstr "Objekte einschließen, die von jeder Referenz erreichbar sind"97649765#: builtin/pack-objects.c:26879766msgid "include objects referred by reflog entries"9767msgstr ""9768"Objekte einschließen, die von Einträgen des Reflogs referenziert werden"97699770#: builtin/pack-objects.c:26909771msgid "include objects referred to by the index"9772msgstr "Objekte einschließen, die vom Index referenziert werden"97739774#: builtin/pack-objects.c:26939775msgid "output pack to stdout"9776msgstr "Paket in die Standard-Ausgabe schreiben"97779778#: builtin/pack-objects.c:26959779msgid "include tag objects that refer to objects to be packed"9780msgstr "Tag-Objekte einschließen, die auf gepackte Objekte referenzieren"97819782#: builtin/pack-objects.c:26979783msgid "keep unreachable objects"9784msgstr "nicht erreichbare Objekte behalten"97859786#: builtin/pack-objects.c:26999787msgid "pack loose unreachable objects"9788msgstr "nicht erreichbare lose Objekte packen"97899790#: builtin/pack-objects.c:2700 parse-options.h:1429791msgid "time"9792msgstr "Zeit"97939794#: builtin/pack-objects.c:27019795msgid "unpack unreachable objects newer than <time>"9796msgstr "nicht erreichbare Objekte entpacken, die neuer als <Zeit> sind"97979798#: builtin/pack-objects.c:27049799msgid "create thin packs"9800msgstr "dünnere Pakete erzeugen"98019802#: builtin/pack-objects.c:27069803msgid "create packs suitable for shallow fetches"9804msgstr ""9805"Pakete geeignet für Abholung mit unvollständiger Historie (shallow) erzeugen"98069807#: builtin/pack-objects.c:27089808msgid "ignore packs that have companion .keep file"9809msgstr "Pakete ignorieren, die .keep Dateien haben"98109811#: builtin/pack-objects.c:27109812msgid "pack compression level"9813msgstr "Komprimierungsgrad für Paketierung"98149815#: builtin/pack-objects.c:27129816msgid "do not hide commits by grafts"9817msgstr "keine künstlichen Vorgänger-Commits (\"grafts\") verbergen"98189819#: builtin/pack-objects.c:27149820msgid "use a bitmap index if available to speed up counting objects"9821msgstr ""9822"Bitmap-Index (falls verfügbar) zur Optimierung der Objektzählung benutzen"98239824#: builtin/pack-objects.c:27169825msgid "write a bitmap index together with the pack index"9826msgstr "Bitmap-Index zusammen mit Pack-Index schreiben"98279828#: builtin/pack-objects.c:28299829msgid "Counting objects"9830msgstr "Zähle Objekte"98319832#: builtin/pack-refs.c:69833msgid "git pack-refs [<options>]"9834msgstr "git pack-refs [<Optionen>]"98359836#: builtin/pack-refs.c:149837msgid "pack everything"9838msgstr "alles packen"98399840#: builtin/pack-refs.c:159841msgid "prune loose refs (default)"9842msgstr "lose Referenzen entfernen (Standard)"98439844#: builtin/prune-packed.c:79845msgid "git prune-packed [-n | --dry-run] [-q | --quiet]"9846msgstr "git prune-packed [-n | --dry-run] [-q | --quiet]"98479848#: builtin/prune-packed.c:409849msgid "Removing duplicate objects"9850msgstr "Lösche doppelte Objekte"98519852#: builtin/prune.c:119853msgid "git prune [-n] [-v] [--expire <time>] [--] [<head>...]"9854msgstr "git prune [-n] [-v] [--expire <Zeit>] [--] [<head>...]"98559856#: builtin/prune.c:106 builtin/worktree.c:1289857msgid "report pruned objects"9858msgstr "gelöschte Objekte melden"98599860#: builtin/prune.c:109 builtin/worktree.c:1309861msgid "expire objects older than <time>"9862msgstr "Objekte älter als <Zeit> verfallen lassen"98639864#: builtin/prune.c:1239865msgid "cannot prune in a precious-objects repo"9866msgstr "kann \"prune\" in precious-objects Repository nicht ausführen"98679868#: builtin/pull.c:729869msgid "git pull [<options>] [<repository> [<refspec>...]]"9870msgstr "git pull [<Optionen>] [<Repository> [<Refspec>...]]"98719872#: builtin/pull.c:1209873msgid "Options related to merging"9874msgstr "Optionen bezogen auf Merge"98759876#: builtin/pull.c:1239877msgid "incorporate changes by rebasing rather than merging"9878msgstr "Integration von Änderungen durch Rebase statt Merge"98799880#: builtin/pull.c:147 builtin/revert.c:1019881msgid "allow fast-forward"9882msgstr "Vorspulen erlauben"98839884#: builtin/pull.c:1569885msgid "automatically stash/stash pop before and after rebase"9886msgstr "automatischer Stash/Stash-Pop vor und nach eines Rebase"98879888#: builtin/pull.c:1729889msgid "Options related to fetching"9890msgstr "Optionen bezogen auf Fetch"98919892#: builtin/pull.c:1949893msgid "number of submodules pulled in parallel"9894msgstr "Anzahl der parallel mit 'pull' zu verarbeitenden Submodule"98959896#: builtin/pull.c:2839897#, c-format9898msgid "Invalid value for pull.ff: %s"9899msgstr "Ungültiger Wert für pull.ff: %s"99009901#: builtin/pull.c:379 git-sh-setup.sh:2269902msgid "Cannot pull with rebase: You have unstaged changes."9903msgstr ""9904"Kann \"pull\" mit \"rebase\" nicht ausführen: Sie haben Änderungen, die "9905"nicht zum Commit vorgemerkt sind."99069907#: builtin/pull.c:385 git-sh-setup.sh:2529908msgid "Additionally, your index contains uncommitted changes."9909msgstr "Zusätzlich beinhaltet die Staging-Area nicht committete Änderungen."99109911#: builtin/pull.c:387 git-sh-setup.sh:2459912msgid "Cannot pull with rebase: Your index contains uncommitted changes."9913msgstr ""9914"Kann \"pull\" mit \"rebase\" nicht ausführen: Die Staging-Area beinhaltet "9915"nicht committete Änderungen."99169917#: builtin/pull.c:4639918msgid ""9919"There is no candidate for rebasing against among the refs that you just "9920"fetched."9921msgstr ""9922"Es gibt keinen Kandidaten für Rebase innerhalb der Referenzen, die eben "9923"angefordert wurden."99249925#: builtin/pull.c:4659926msgid ""9927"There are no candidates for merging among the refs that you just fetched."9928msgstr ""9929"Es gibt keine Kandidaten für Merge innerhalb der Referenzen, die eben "9930"angefordert wurden."99319932#: builtin/pull.c:4669933msgid ""9934"Generally this means that you provided a wildcard refspec which had no\n"9935"matches on the remote end."9936msgstr ""9937"Im Allgemeinen bedeutet das, dass Sie einen Refspec mit Wildcards angegeben\n"9938"haben, der auf der Gegenseite mit keinen Referenzen übereinstimmt."99399940#: builtin/pull.c:4699941#, c-format9942msgid ""9943"You asked to pull from the remote '%s', but did not specify\n"9944"a branch. Because this is not the default configured remote\n"9945"for your current branch, you must specify a branch on the command line."9946msgstr ""9947"Sie führten \"pull\" von Remote-Repository '%s' aus, ohne einen\n"9948"Branch anzugeben. Da das nicht das konfigurierte Standard-Remote-\n"9949"Repository für den aktuellen Branch ist, müssen Sie einen Branch auf\n"9950"der Befehlszeile angeben."99519952#: builtin/pull.c:474 git-parse-remote.sh:739953msgid "You are not currently on a branch."9954msgstr "Im Moment auf keinem Branch."99559956#: builtin/pull.c:476 builtin/pull.c:491 git-parse-remote.sh:799957msgid "Please specify which branch you want to rebase against."9958msgstr ""9959"Bitte geben Sie den Branch an, gegen welchen Sie \"rebase\" ausführen "9960"möchten."99619962#: builtin/pull.c:478 builtin/pull.c:493 git-parse-remote.sh:829963msgid "Please specify which branch you want to merge with."9964msgstr "Bitte geben Sie den Branch an, welchen Sie zusammenführen möchten."99659966#: builtin/pull.c:479 builtin/pull.c:4949967msgid "See git-pull(1) for details."9968msgstr "Siehe git-pull(1) für weitere Details."99699970#: builtin/pull.c:481 builtin/pull.c:487 builtin/pull.c:4969971#: git-parse-remote.sh:649972msgid "<remote>"9973msgstr "<Remote-Repository>"99749975#: builtin/pull.c:481 builtin/pull.c:496 builtin/pull.c:501 git-rebase.sh:4519976#: git-parse-remote.sh:659977msgid "<branch>"9978msgstr "<Branch>"99799980#: builtin/pull.c:489 git-parse-remote.sh:759981msgid "There is no tracking information for the current branch."9982msgstr "Es gibt keine Tracking-Informationen für den aktuellen Branch."99839984#: builtin/pull.c:498 git-parse-remote.sh:959985msgid ""9986"If you wish to set tracking information for this branch you can do so with:"9987msgstr ""9988"Wenn Sie Tracking-Informationen für diesen Branch setzen möchten, können "9989"Sie\n"9990"dies tun mit:"99919992#: builtin/pull.c:5039993#, c-format9994msgid ""9995"Your configuration specifies to merge with the ref '%s'\n"9996"from the remote, but no such ref was fetched."9997msgstr ""9998"Ihre Konfiguration gibt an, den Merge mit Referenz '%s'\n"9999"des Remote-Repositories durchzuführen, aber diese Referenz\n"10000"wurde nicht angefordert."1000110002#: builtin/pull.c:82010003msgid "ignoring --verify-signatures for rebase"10004msgstr "Ignoriere --verify-signatures für Rebase"1000510006#: builtin/pull.c:86710007msgid "--[no-]autostash option is only valid with --rebase."10008msgstr "--[no-]autostash ist nur mit --rebase zulässig."1000910010#: builtin/pull.c:87510011msgid "Updating an unborn branch with changes added to the index."10012msgstr ""10013"Aktualisiere einen ungeborenen Branch mit Änderungen, die zum Commit "10014"vorgemerkt sind."1001510016#: builtin/pull.c:90310017#, c-format10018msgid ""10019"fetch updated the current branch head.\n"10020"fast-forwarding your working tree from\n"10021"commit %s."10022msgstr ""10023"\"fetch\" aktualisierte die Spitze des aktuellen Branches.\n"10024"Spule Ihr Arbeitsverzeichnis von Commit %s vor."1002510026#: builtin/pull.c:90810027#, c-format10028msgid ""10029"Cannot fast-forward your working tree.\n"10030"After making sure that you saved anything precious from\n"10031"$ git diff %s\n"10032"output, run\n"10033"$ git reset --hard\n"10034"to recover."10035msgstr ""10036"Kann Arbeitsverzeichnis nicht vorspulen.\n"10037"Nachdem Sie sichergestellt haben, alles Schützenswerte der Ausgabe von\n"10038"$ git diff %s\n"10039"gespeichert zu haben. Führen Sie\n"10040"$ git reset --hard\n"10041"zur Wiederherstellung aus."1004210043#: builtin/pull.c:92310044msgid "Cannot merge multiple branches into empty head."10045msgstr "Kann nicht mehrere Branches in einen leeren Branch zusammenführen."1004610047#: builtin/pull.c:92710048msgid "Cannot rebase onto multiple branches."10049msgstr "Kann Rebase nicht auf mehrere Branches ausführen."1005010051#: builtin/push.c:1610052msgid "git push [<options>] [<repository> [<refspec>...]]"10053msgstr "git push [<Optionen>] [<Repository> [<Refspec>...]]"1005410055#: builtin/push.c:8910056msgid "tag shorthand without <tag>"10057msgstr "Kurzschrift für Tag ohne <Tag>"1005810059#: builtin/push.c:9910060msgid "--delete only accepts plain target ref names"10061msgstr "Die Option --delete akzeptiert nur reine Referenznamen als Ziel."1006210063#: builtin/push.c:14310064msgid ""10065"\n"10066"To choose either option permanently, see push.default in 'git help config'."10067msgstr ""10068"\n"10069"Um eine Variante permanent zu verwenden, siehe push.default in 'git help "10070"config'."1007110072#: builtin/push.c:14610073#, c-format10074msgid ""10075"The upstream branch of your current branch does not match\n"10076"the name of your current branch. To push to the upstream branch\n"10077"on the remote, use\n"10078"\n"10079" git push %s HEAD:%s\n"10080"\n"10081"To push to the branch of the same name on the remote, use\n"10082"\n"10083" git push %s %s\n"10084"%s"10085msgstr ""10086"Der Name des Upstream-Branches stimmt nicht mit dem Namen Ihres\n"10087"aktuellen Branches überein. Um auf den Upstream-Branch in dem Remote-\n"10088"Repository zu versenden, benutzen Sie:\n"10089"\n"10090" git push %s HEAD:%s\n"10091"\n"10092"Um auf den Branch mit dem selben Namen im Remote-Repository zu versenden,\n"10093"benutzen Sie:\n"10094"\n"10095" git push %s %s\n"10096"%s"1009710098#: builtin/push.c:16110099#, c-format10100msgid ""10101"You are not currently on a branch.\n"10102"To push the history leading to the current (detached HEAD)\n"10103"state now, use\n"10104"\n"10105" git push %s HEAD:<name-of-remote-branch>\n"10106msgstr ""10107"Sie befinden sich im Moment auf keinem Branch.\n"10108"Um die Historie, führend zum aktuellen (losgelöster HEAD)\n"10109"Status zu versenden, benutzen Sie\n"10110"\n"10111" git push %s HEAD:<Name-des-Remote-Branches>\n"1011210113#: builtin/push.c:17510114#, c-format10115msgid ""10116"The current branch %s has no upstream branch.\n"10117"To push the current branch and set the remote as upstream, use\n"10118"\n"10119" git push --set-upstream %s %s\n"10120msgstr ""10121"Der aktuelle Branch %s hat keinen Upstream-Branch.\n"10122"Um den aktuellen Branch zu versenden und den Remote-Branch\n"10123"als Upstream-Branch zu setzen, benutzen Sie\n"10124"\n"10125" git push --set-upstream %s %s\n"1012610127#: builtin/push.c:18310128#, c-format10129msgid "The current branch %s has multiple upstream branches, refusing to push."10130msgstr ""10131"Der aktuelle Branch %s hat mehrere Upstream-Branches, \"push\" verweigert."1013210133#: builtin/push.c:18610134#, c-format10135msgid ""10136"You are pushing to remote '%s', which is not the upstream of\n"10137"your current branch '%s', without telling me what to push\n"10138"to update which remote branch."10139msgstr ""10140"Sie versenden nach '%s', welches kein Upstream-Repository Ihres aktuellen\n"10141"Branches '%s' ist, ohne anzugeben, was versendet werden soll, um welchen\n"10142"Remote-Branch zu aktualisieren."1014310144#: builtin/push.c:24210145msgid ""10146"You didn't specify any refspecs to push, and push.default is \"nothing\"."10147msgstr ""10148"Sie haben keine Refspec für \"push\" angegeben, und push.default ist "10149"\"nothing\"."1015010151#: builtin/push.c:24910152msgid ""10153"Updates were rejected because the tip of your current branch is behind\n"10154"its remote counterpart. Integrate the remote changes (e.g.\n"10155"'git pull ...') before pushing again.\n"10156"See the 'Note about fast-forwards' in 'git push --help' for details."10157msgstr ""10158"Aktualisierungen wurden zurückgewiesen, weil die Spitze Ihres aktuellen\n"10159"Branches hinter seinem externen Gegenstück zurückgefallen ist. Führen Sie\n"10160"die externen Änderungen zusammen (z. B. 'git pull ...') bevor Sie \"push\"\n"10161"erneut ausführen.\n"10162"Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'\n"10163"für weitere Details."1016410165#: builtin/push.c:25510166msgid ""10167"Updates were rejected because a pushed branch tip is behind its remote\n"10168"counterpart. Check out this branch and integrate the remote changes\n"10169"(e.g. 'git pull ...') before pushing again.\n"10170"See the 'Note about fast-forwards' in 'git push --help' for details."10171msgstr ""10172"Aktualisierungen wurden zurückgewiesen, weil die Spitze eines versendeten\n"10173"Branches hinter seinem externen Gegenstück zurückgefallen ist. Checken Sie\n"10174"diesen Branch aus und führen Sie die externen Änderungen zusammen\n"10175"(z. B. 'git pull ...') bevor Sie erneut \"push\" ausführen.\n"10176"Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'\n"10177"für weitere Details."1017810179#: builtin/push.c:26110180msgid ""10181"Updates were rejected because the remote contains work that you do\n"10182"not have locally. This is usually caused by another repository pushing\n"10183"to the same ref. You may want to first integrate the remote changes\n"10184"(e.g., 'git pull ...') before pushing again.\n"10185"See the 'Note about fast-forwards' in 'git push --help' for details."10186msgstr ""10187"Aktualisierungen wurden zurückgewiesen, weil das Remote-Repository Commits "10188"enthält,\n"10189"die lokal nicht vorhanden sind. Das wird üblicherweise durch einen \"push\" "10190"von\n"10191"Commits auf dieselbe Referenz von einem anderen Repository aus verursacht.\n"10192"Vielleicht müssen Sie die externen Änderungen zusammenführen (z. B. 'git "10193"pull ...')\n"10194"bevor Sie erneut \"push\" ausführen.\n"10195"Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'\n"10196"für weitere Details."1019710198#: builtin/push.c:26810199msgid "Updates were rejected because the tag already exists in the remote."10200msgstr ""10201"Aktualisierungen wurden zurückgewiesen, weil das Tag bereits\n"10202"im Remote-Repository existiert."1020310204#: builtin/push.c:27110205msgid ""10206"You cannot update a remote ref that points at a non-commit object,\n"10207"or update a remote ref to make it point at a non-commit object,\n"10208"without using the '--force' option.\n"10209msgstr ""10210"Sie können keine Remote-Referenz aktualisieren, die auf ein Objekt zeigt,\n"10211"das kein Commit ist, oder es auf ein solches Objekt zeigen lassen, ohne\n"10212"die Option '--force' zu verwenden.\n"1021310214#: builtin/push.c:33110215#, c-format10216msgid "Pushing to %s\n"10217msgstr "Versende nach %s\n"1021810219#: builtin/push.c:33510220#, c-format10221msgid "failed to push some refs to '%s'"10222msgstr "Fehler beim Versenden einiger Referenzen nach '%s'"1022310224#: builtin/push.c:36610225#, c-format10226msgid "bad repository '%s'"10227msgstr "ungültiges Repository '%s'"1022810229#: builtin/push.c:36710230msgid ""10231"No configured push destination.\n"10232"Either specify the URL from the command-line or configure a remote "10233"repository using\n"10234"\n"10235" git remote add <name> <url>\n"10236"\n"10237"and then push using the remote name\n"10238"\n"10239" git push <name>\n"10240msgstr ""10241"Kein Ziel für \"push\" konfiguriert.\n"10242"Entweder spezifizieren Sie die URL von der Befehlszeile oder konfigurieren "10243"ein Remote-Repository unter Benutzung von\n"10244"\n"10245" git remote add <Name> <URL>\n"10246"\n"10247"und führen \"push\" dann unter Benutzung dieses Namens aus\n"10248"\n"10249" git push <Name>\n"1025010251#: builtin/push.c:38510252msgid "--all and --tags are incompatible"10253msgstr "Die Optionen --all und --tags sind inkompatibel."1025410255#: builtin/push.c:38610256msgid "--all can't be combined with refspecs"10257msgstr "Die Option --all kann nicht mit Refspecs kombiniert werden."1025810259#: builtin/push.c:39110260msgid "--mirror and --tags are incompatible"10261msgstr "Die Optionen --mirror und --tags sind inkompatibel."1026210263#: builtin/push.c:39210264msgid "--mirror can't be combined with refspecs"10265msgstr "Die Option --mirror kann nicht mit Refspecs kombiniert werden."1026610267#: builtin/push.c:39710268msgid "--all and --mirror are incompatible"10269msgstr "Die Optionen --all und --mirror sind inkompatibel."1027010271#: builtin/push.c:51510272msgid "repository"10273msgstr "Repository"1027410275#: builtin/push.c:516 builtin/send-pack.c:16110276msgid "push all refs"10277msgstr "alle Referenzen versenden"1027810279#: builtin/push.c:517 builtin/send-pack.c:16310280msgid "mirror all refs"10281msgstr "alle Referenzen spiegeln"1028210283#: builtin/push.c:51910284msgid "delete refs"10285msgstr "Referenzen löschen"1028610287#: builtin/push.c:52010288msgid "push tags (can't be used with --all or --mirror)"10289msgstr "Tags versenden (kann nicht mit --all oder --mirror verwendet werden)"1029010291#: builtin/push.c:523 builtin/send-pack.c:16410292msgid "force updates"10293msgstr "Aktualisierung erzwingen"1029410295#: builtin/push.c:525 builtin/send-pack.c:17510296msgid "refname>:<expect"10297msgstr "Referenzname>:<Erwartungswert"1029810299#: builtin/push.c:526 builtin/send-pack.c:17610300msgid "require old value of ref to be at this value"10301msgstr "Referenz muss sich auf dem angegebenen Wert befinden"1030210303#: builtin/push.c:52910304msgid "control recursive pushing of submodules"10305msgstr "rekursiven \"push\" von Submodulen steuern"1030610307#: builtin/push.c:531 builtin/send-pack.c:16910308msgid "use thin pack"10309msgstr "kleinere Pakete verwenden"1031010311#: builtin/push.c:532 builtin/push.c:533 builtin/send-pack.c:15810312#: builtin/send-pack.c:15910313msgid "receive pack program"10314msgstr "'receive pack' Programm"1031510316#: builtin/push.c:53410317msgid "set upstream for git pull/status"10318msgstr "Upstream für \"git pull/status\" setzen"1031910320#: builtin/push.c:53710321msgid "prune locally removed refs"10322msgstr "lokal gelöschte Referenzen entfernen"1032310324#: builtin/push.c:53910325msgid "bypass pre-push hook"10326msgstr "\"pre-push hook\" umgehen"1032710328#: builtin/push.c:54010329msgid "push missing but relevant tags"10330msgstr "fehlende, aber relevante Tags versenden"1033110332#: builtin/push.c:543 builtin/send-pack.c:16610333msgid "GPG sign the push"10334msgstr "signiert \"push\" mit GPG"1033510336#: builtin/push.c:545 builtin/send-pack.c:17010337msgid "request atomic transaction on remote side"10338msgstr "Referenzen atomar versenden"1033910340#: builtin/push.c:54610341msgid "server-specific"10342msgstr "serverspezifisch"1034310344#: builtin/push.c:54610345msgid "option to transmit"10346msgstr "Option übertragen"1034710348#: builtin/push.c:56010349msgid "--delete is incompatible with --all, --mirror and --tags"10350msgstr "Die Option --delete ist inkompatibel mit --all, --mirror und --tags."1035110352#: builtin/push.c:56210353msgid "--delete doesn't make sense without any refs"10354msgstr "Die Option --delete kann nur mit Referenzen verwendet werden."1035510356#: builtin/push.c:57910357msgid "push options must not have new line characters"10358msgstr "Push-Optionen dürfen keine Zeilenvorschubzeichen haben"1035910360#: builtin/read-tree.c:3710361msgid ""10362"git read-tree [(-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>) "10363"[-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--"10364"index-output=<file>] (--empty | <tree-ish1> [<tree-ish2> [<tree-ish3>]])"10365msgstr ""10366"git read-tree [(-m [--trivial] [--aggressive] | --reset | --prefix=<Präfix>) "10367"[-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--"10368"index-output=<Datei>] (--empty | <Commit-Referenz1> [<Commit-Referenz2> "10369"[<Commit-Referenz3>]])"1037010371#: builtin/read-tree.c:11010372msgid "write resulting index to <file>"10373msgstr "resultierenden Index nach <Datei> schreiben"1037410375#: builtin/read-tree.c:11310376msgid "only empty the index"10377msgstr "nur den Index leeren"1037810379#: builtin/read-tree.c:11510380msgid "Merging"10381msgstr "Merge"1038210383#: builtin/read-tree.c:11710384msgid "perform a merge in addition to a read"10385msgstr "einen Merge, zusätzlich zum Lesen, ausführen"1038610387#: builtin/read-tree.c:11910388msgid "3-way merge if no file level merging required"10389msgstr "3-Wege-Merge, wenn kein Merge auf Dateiebene erforderlich ist"1039010391#: builtin/read-tree.c:12110392msgid "3-way merge in presence of adds and removes"10393msgstr "3-Wege-Merge bei Vorhandensein von hinzugefügten/entfernten Zeilen"1039410395#: builtin/read-tree.c:12310396msgid "same as -m, but discard unmerged entries"10397msgstr "genau wie -m, aber nicht zusammengeführte Einträge verwerfen"1039810399#: builtin/read-tree.c:12410400msgid "<subdirectory>/"10401msgstr "<Unterverzeichnis>/"1040210403#: builtin/read-tree.c:12510404msgid "read the tree into the index under <subdirectory>/"10405msgstr "das Verzeichnis in den Index unter <Unterverzeichnis>/ lesen"1040610407#: builtin/read-tree.c:12810408msgid "update working tree with merge result"10409msgstr "Arbeitsverzeichnis mit dem Ergebnis des Merges aktualisieren"1041010411#: builtin/read-tree.c:13010412msgid "gitignore"10413msgstr "gitignore"1041410415#: builtin/read-tree.c:13110416msgid "allow explicitly ignored files to be overwritten"10417msgstr "explizit ignorierte Dateien zu überschreiben erlauben"1041810419#: builtin/read-tree.c:13410420msgid "don't check the working tree after merging"10421msgstr "das Arbeitsverzeichnis nach dem Merge nicht prüfen"1042210423#: builtin/read-tree.c:13510424msgid "don't update the index or the work tree"10425msgstr "weder den Index, noch das Arbeitsverzeichnis aktualisieren"1042610427#: builtin/read-tree.c:13710428msgid "skip applying sparse checkout filter"10429msgstr "Anwendung des Filters für partielles Auschecken überspringen"1043010431#: builtin/read-tree.c:13910432msgid "debug unpack-trees"10433msgstr "Entpacken der Bäume protokollieren"1043410435#: builtin/receive-pack.c:2510436msgid "git receive-pack <git-dir>"10437msgstr "git receive-pack <Git-Verzeichnis>"1043810439#: builtin/receive-pack.c:184310440msgid "quiet"10441msgstr "weniger Ausgaben"1044210443#: builtin/receive-pack.c:185710444msgid "You must specify a directory."10445msgstr "Sie müssen ein Repository angeben."1044610447#: builtin/reflog.c:42310448#, c-format10449msgid "'%s' for '%s' is not a valid timestamp"10450msgstr "'%s' ist kein gültiger Zeitstempel für '%s'"1045110452#: builtin/reflog.c:540 builtin/reflog.c:54510453#, c-format10454msgid "'%s' is not a valid timestamp"10455msgstr "'%s' ist kein gültiger Zeitstempel"1045610457#: builtin/remote.c:1210458msgid "git remote [-v | --verbose]"10459msgstr "git remote [-v | --verbose]"1046010461#: builtin/remote.c:1310462msgid ""10463"git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--"10464"mirror=<fetch|push>] <name> <url>"10465msgstr ""10466"git remote add [-t <Branch>] [-m <master>] [-f] [--tags | --no-tags] [--"10467"mirror=<fetch|push>] <Name> <URL>"1046810469#: builtin/remote.c:14 builtin/remote.c:3410470msgid "git remote rename <old> <new>"10471msgstr "git remote rename <alt> <neu>"1047210473#: builtin/remote.c:15 builtin/remote.c:3910474msgid "git remote remove <name>"10475msgstr "git remote remove <Name>"1047610477#: builtin/remote.c:16 builtin/remote.c:4410478msgid "git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"10479msgstr "git remote set-head <Name> (-a | --auto | -d | --delete | <Branch>)"1048010481#: builtin/remote.c:1710482msgid "git remote [-v | --verbose] show [-n] <name>"10483msgstr "git remote [-v | --verbose] show [-n] <Name>"1048410485#: builtin/remote.c:1810486msgid "git remote prune [-n | --dry-run] <name>"10487msgstr "git remote prune [-n | --dry-run] <Name>"1048810489#: builtin/remote.c:1910490msgid ""10491"git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"10492msgstr ""10493"git remote [-v | --verbose] update [-p | --prune] [(<Gruppe> | <Remote>)...]"1049410495#: builtin/remote.c:2010496msgid "git remote set-branches [--add] <name> <branch>..."10497msgstr "git remote set-branches [--add] <Name> <Branch>..."1049810499#: builtin/remote.c:21 builtin/remote.c:7010500msgid "git remote get-url [--push] [--all] <name>"10501msgstr "git remote get-url [--push] [--all] <Name>"1050210503#: builtin/remote.c:22 builtin/remote.c:7510504msgid "git remote set-url [--push] <name> <newurl> [<oldurl>]"10505msgstr "git remote set-url [--push] <Name> <neueURL> [<alteURL>]"1050610507#: builtin/remote.c:23 builtin/remote.c:7610508msgid "git remote set-url --add <name> <newurl>"10509msgstr "git remote set-url --add <Name> <neueURL>"1051010511#: builtin/remote.c:24 builtin/remote.c:7710512msgid "git remote set-url --delete <name> <url>"10513msgstr "git remote set-url --delete <Name> <URL>"1051410515#: builtin/remote.c:2910516msgid "git remote add [<options>] <name> <url>"10517msgstr "git remote add [<Optionen>] <Name> <URL>"1051810519#: builtin/remote.c:4910520msgid "git remote set-branches <name> <branch>..."10521msgstr "git remote set-branches <Name> <Branch>..."1052210523#: builtin/remote.c:5010524msgid "git remote set-branches --add <name> <branch>..."10525msgstr "git remote set-branches --add <Name> <Branch>..."1052610527#: builtin/remote.c:5510528msgid "git remote show [<options>] <name>"10529msgstr "git remote show [<Optionen>] <Name>"1053010531#: builtin/remote.c:6010532msgid "git remote prune [<options>] <name>"10533msgstr "git remote prune [<Optionen>] <Name>"1053410535#: builtin/remote.c:6510536msgid "git remote update [<options>] [<group> | <remote>]..."10537msgstr "git remote update [<Optionen>] [<Gruppe> | <externesRepository>]..."1053810539#: builtin/remote.c:9410540#, c-format10541msgid "Updating %s"10542msgstr "Aktualisiere %s"1054310544#: builtin/remote.c:12610545msgid ""10546"--mirror is dangerous and deprecated; please\n"10547"\t use --mirror=fetch or --mirror=push instead"10548msgstr ""10549"--mirror ist gefährlich und veraltet; bitte\n"10550"\t benutzen Sie stattdessen --mirror=fetch oder --mirror=push"1055110552#: builtin/remote.c:14310553#, c-format10554msgid "unknown mirror argument: %s"10555msgstr "unbekanntes Argument für Option --mirror: %s"1055610557#: builtin/remote.c:15910558msgid "fetch the remote branches"10559msgstr "die Remote-Branches anfordern"1056010561#: builtin/remote.c:16110562msgid "import all tags and associated objects when fetching"10563msgstr "alle Tags und verbundene Objekte beim Anfordern importieren"1056410565#: builtin/remote.c:16410566msgid "or do not fetch any tag at all (--no-tags)"10567msgstr "oder fordere gar keine Zweige an (--no-tags)"1056810569#: builtin/remote.c:16610570msgid "branch(es) to track"10571msgstr "Branch(es) zur Übernahme"1057210573#: builtin/remote.c:16710574msgid "master branch"10575msgstr "Hauptbranch"1057610577#: builtin/remote.c:16810578msgid "push|fetch"10579msgstr "push|fetch"1058010581#: builtin/remote.c:16910582msgid "set up remote as a mirror to push to or fetch from"10583msgstr ""10584"Aufsetzen des Remote-Repositories als Spiegel-Repository für \"push\" und "10585"\"fetch\""1058610587#: builtin/remote.c:18110588msgid "specifying a master branch makes no sense with --mirror"10589msgstr ""10590"Die Option --mirror kann nicht mit der Angabe eines Hauptbranches verwendet "10591"werden."1059210593#: builtin/remote.c:18310594msgid "specifying branches to track makes sense only with fetch mirrors"10595msgstr ""10596"Die Angabe von zu folgenden Branches kann nur mit dem Anfordern von "10597"Spiegelarchiven verwendet werden."1059810599#: builtin/remote.c:190 builtin/remote.c:62910600#, c-format10601msgid "remote %s already exists."10602msgstr "externes Repository %s existiert bereits"1060310604#: builtin/remote.c:194 builtin/remote.c:63310605#, c-format10606msgid "'%s' is not a valid remote name"10607msgstr "'%s' ist kein gültiger Name für ein Remote-Repository"1060810609#: builtin/remote.c:23410610#, c-format10611msgid "Could not setup master '%s'"10612msgstr "Konnte symbolische Referenz für Hauptbranch von '%s' nicht einrichten"1061310614#: builtin/remote.c:33610615#, c-format10616msgid "Could not get fetch map for refspec %s"10617msgstr "Konnte Fetch-Map für Refspec %s nicht bekommen"1061810619#: builtin/remote.c:437 builtin/remote.c:44510620msgid "(matching)"10621msgstr "(übereinstimmend)"1062210623#: builtin/remote.c:44910624msgid "(delete)"10625msgstr "(lösche)"1062610627#: builtin/remote.c:622 builtin/remote.c:757 builtin/remote.c:85410628#, c-format10629msgid "No such remote: %s"10630msgstr "Kein solches Remote-Repository: %s"1063110632#: builtin/remote.c:63910633#, c-format10634msgid "Could not rename config section '%s' to '%s'"10635msgstr "Konnte Sektion '%s' in Konfiguration nicht nach '%s' umbenennen"1063610637#: builtin/remote.c:65910638#, c-format10639msgid ""10640"Not updating non-default fetch refspec\n"10641"\t%s\n"10642"\tPlease update the configuration manually if necessary."10643msgstr ""10644"Keine Aktualisierung der nicht standardmäßigen Refspec für \"fetch\"\n"10645"\t%s\n"10646"\tBitte aktualisieren Sie, falls notwendig, die Konfiguration manuell."1064710648#: builtin/remote.c:69510649#, c-format10650msgid "deleting '%s' failed"10651msgstr "Konnte '%s' nicht löschen"1065210653#: builtin/remote.c:72910654#, c-format10655msgid "creating '%s' failed"10656msgstr "Konnte '%s' nicht erstellen"1065710658#: builtin/remote.c:79210659msgid ""10660"Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"10661"to delete it, use:"10662msgid_plural ""10663"Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"10664"to delete them, use:"10665msgstr[0] ""10666"Hinweis: Ein Branch außerhalb der refs/remotes/ Hierachie wurde nicht "10667"gelöscht;\n"10668"um diesen zu löschen, benutzen Sie:"10669msgstr[1] ""10670"Hinweis: Einige Branches außer der refs/remotes/ Hierarchie wurden nicht "10671"entfernt;\n"10672"um diese zu entfernen, benutzen Sie:"1067310674#: builtin/remote.c:80610675#, c-format10676msgid "Could not remove config section '%s'"10677msgstr "Konnte Sektion '%s' nicht aus Konfiguration entfernen"1067810679#: builtin/remote.c:90710680#, c-format10681msgid " new (next fetch will store in remotes/%s)"10682msgstr " neu (wird bei nächstem \"fetch\" in remotes/%s gespeichert)"1068310684#: builtin/remote.c:91010685msgid " tracked"10686msgstr " gefolgt"1068710688#: builtin/remote.c:91210689msgid " stale (use 'git remote prune' to remove)"10690msgstr " veraltet (benutzen Sie 'git remote prune' zum Löschen)"1069110692#: builtin/remote.c:91410693msgid " ???"10694msgstr " ???"1069510696#: builtin/remote.c:95510697#, c-format10698msgid "invalid branch.%s.merge; cannot rebase onto > 1 branch"10699msgstr "ungültiges branch.%s.merge; kann Rebase nicht auf > 1 Branch ausführen"1070010701#: builtin/remote.c:96310702#, c-format10703msgid "rebases interactively onto remote %s"10704msgstr "interaktiver Rebase auf Remote-Branch %s"1070510706#: builtin/remote.c:96410707#, c-format10708msgid "rebases onto remote %s"10709msgstr "Rebase auf Remote-Branch %s"1071010711#: builtin/remote.c:96710712#, c-format10713msgid " merges with remote %s"10714msgstr " führt mit Remote-Branch %s zusammen"1071510716#: builtin/remote.c:97010717#, c-format10718msgid "merges with remote %s"10719msgstr "führt mit Remote-Branch %s zusammen"1072010721#: builtin/remote.c:97310722#, c-format10723msgid "%-*s and with remote %s\n"10724msgstr "%-*s und mit Remote-Branch %s\n"1072510726#: builtin/remote.c:101610727msgid "create"10728msgstr "erstellt"1072910730#: builtin/remote.c:101910731msgid "delete"10732msgstr "gelöscht"1073310734#: builtin/remote.c:102310735msgid "up to date"10736msgstr "aktuell"1073710738#: builtin/remote.c:102610739msgid "fast-forwardable"10740msgstr "vorspulbar"1074110742#: builtin/remote.c:102910743msgid "local out of date"10744msgstr "lokal nicht aktuell"1074510746#: builtin/remote.c:103610747#, c-format10748msgid " %-*s forces to %-*s (%s)"10749msgstr " %-*s erzwingt Versandt nach %-*s (%s)"1075010751#: builtin/remote.c:103910752#, c-format10753msgid " %-*s pushes to %-*s (%s)"10754msgstr " %-*s versendet nach %-*s (%s)"1075510756#: builtin/remote.c:104310757#, c-format10758msgid " %-*s forces to %s"10759msgstr " %-*s erzwingt Versand nach %s"1076010761#: builtin/remote.c:104610762#, c-format10763msgid " %-*s pushes to %s"10764msgstr " %-*s versendet nach %s"1076510766#: builtin/remote.c:111410767msgid "do not query remotes"10768msgstr "keine Abfrage von Remote-Repositories"1076910770#: builtin/remote.c:114110771#, c-format10772msgid "* remote %s"10773msgstr "* Remote-Repository %s"1077410775#: builtin/remote.c:114210776#, c-format10777msgid " Fetch URL: %s"10778msgstr " URL zum Abholen: %s"1077910780#: builtin/remote.c:1143 builtin/remote.c:1156 builtin/remote.c:129610781msgid "(no URL)"10782msgstr "(keine URL)"1078310784#. TRANSLATORS: the colon ':' should align with10785#. the one in " Fetch URL: %s" translation10786#: builtin/remote.c:1154 builtin/remote.c:115610787#, c-format10788msgid " Push URL: %s"10789msgstr " URL zum Versenden: %s"1079010791#: builtin/remote.c:1158 builtin/remote.c:1160 builtin/remote.c:116210792#, c-format10793msgid " HEAD branch: %s"10794msgstr " Hauptbranch: %s"1079510796#: builtin/remote.c:115810797msgid "(not queried)"10798msgstr "(nicht abgefragt)"1079910800#: builtin/remote.c:116010801msgid "(unknown)"10802msgstr "(unbekannt)"1080310804#: builtin/remote.c:116410805#, c-format10806msgid ""10807" HEAD branch (remote HEAD is ambiguous, may be one of the following):\n"10808msgstr ""10809" Hauptbranch (externer HEAD ist mehrdeutig, könnte einer der folgenden "10810"sein):\n"1081110812#: builtin/remote.c:117610813#, c-format10814msgid " Remote branch:%s"10815msgid_plural " Remote branches:%s"10816msgstr[0] " Remote-Branch:%s"10817msgstr[1] " Remote-Branches:%s"1081810819#: builtin/remote.c:1179 builtin/remote.c:120610820msgid " (status not queried)"10821msgstr " (Zustand nicht abgefragt)"1082210823#: builtin/remote.c:118810824msgid " Local branch configured for 'git pull':"10825msgid_plural " Local branches configured for 'git pull':"10826msgstr[0] " Lokaler Branch konfiguriert für 'git pull':"10827msgstr[1] " Lokale Branches konfiguriert für 'git pull':"1082810829#: builtin/remote.c:119610830msgid " Local refs will be mirrored by 'git push'"10831msgstr " Lokale Referenzen werden von 'git push' gespiegelt"1083210833#: builtin/remote.c:120310834#, c-format10835msgid " Local ref configured for 'git push'%s:"10836msgid_plural " Local refs configured for 'git push'%s:"10837msgstr[0] " Lokale Referenz konfiguriert für 'git push'%s:"10838msgstr[1] " Lokale Referenzen konfiguriert für 'git push'%s:"1083910840#: builtin/remote.c:122410841msgid "set refs/remotes/<name>/HEAD according to remote"10842msgstr "setzt refs/remotes/<Name>/HEAD gemäß dem Remote-Repository"1084310844#: builtin/remote.c:122610845msgid "delete refs/remotes/<name>/HEAD"10846msgstr "entfernt refs/remotes/<Name>/HEAD"1084710848#: builtin/remote.c:124110849msgid "Cannot determine remote HEAD"10850msgstr "Kann HEAD des Remote-Repositories nicht bestimmen"1085110852#: builtin/remote.c:124310853msgid "Multiple remote HEAD branches. Please choose one explicitly with:"10854msgstr ""10855"Mehrere Hauptbranches im Remote-Repository. Bitte wählen Sie explizit einen "10856"aus mit:"1085710858#: builtin/remote.c:125310859#, c-format10860msgid "Could not delete %s"10861msgstr "Konnte %s nicht entfernen"1086210863#: builtin/remote.c:126110864#, c-format10865msgid "Not a valid ref: %s"10866msgstr "keine gültige Referenz: %s"1086710868#: builtin/remote.c:126310869#, c-format10870msgid "Could not setup %s"10871msgstr "Konnte %s nicht einrichten"1087210873#: builtin/remote.c:128110874#, c-format10875msgid " %s will become dangling!"10876msgstr " %s wird unreferenziert!"1087710878#: builtin/remote.c:128210879#, c-format10880msgid " %s has become dangling!"10881msgstr " %s wurde unreferenziert!"1088210883#: builtin/remote.c:129210884#, c-format10885msgid "Pruning %s"10886msgstr "entferne veraltete Branches von %s"1088710888#: builtin/remote.c:129310889#, c-format10890msgid "URL: %s"10891msgstr "URL: %s"1089210893#: builtin/remote.c:130910894#, c-format10895msgid " * [would prune] %s"10896msgstr " * [würde veralteten Branch entfernen] %s"1089710898#: builtin/remote.c:131210899#, c-format10900msgid " * [pruned] %s"10901msgstr "* [veralteten Branch entfernt] %s"1090210903#: builtin/remote.c:135710904msgid "prune remotes after fetching"10905msgstr "entferne veraltete Branches im Remote-Repository nach \"fetch\""1090610907#: builtin/remote.c:1420 builtin/remote.c:1474 builtin/remote.c:154210908#, c-format10909msgid "No such remote '%s'"10910msgstr "Kein solches Remote-Repository '%s'"1091110912#: builtin/remote.c:143610913msgid "add branch"10914msgstr "Branch hinzufügen"1091510916#: builtin/remote.c:144310917msgid "no remote specified"10918msgstr "kein Remote-Repository angegeben"1091910920#: builtin/remote.c:146010921msgid "query push URLs rather than fetch URLs"10922msgstr "nur URLs für Push ausgeben"1092310924#: builtin/remote.c:146210925msgid "return all URLs"10926msgstr "alle URLs ausgeben"1092710928#: builtin/remote.c:149010929#, c-format10930msgid "no URLs configured for remote '%s'"10931msgstr "Keine URLs für Remote-Repository '%s' konfiguriert."1093210933#: builtin/remote.c:151610934msgid "manipulate push URLs"10935msgstr "URLs für \"push\" manipulieren"1093610937#: builtin/remote.c:151810938msgid "add URL"10939msgstr "URL hinzufügen"1094010941#: builtin/remote.c:152010942msgid "delete URLs"10943msgstr "URLs löschen"1094410945#: builtin/remote.c:152710946msgid "--add --delete doesn't make sense"10947msgstr ""10948"Die Optionen --add und --delete können nicht gemeinsam verwendet werden."1094910950#: builtin/remote.c:156810951#, c-format10952msgid "Invalid old URL pattern: %s"10953msgstr "ungültiges altes URL Format: %s"1095410955#: builtin/remote.c:157610956#, c-format10957msgid "No such URL found: %s"10958msgstr "Keine solche URL gefunden: %s"1095910960#: builtin/remote.c:157810961msgid "Will not delete all non-push URLs"10962msgstr "Werde keine URLs entfernen, die nicht für \"push\" bestimmt sind"1096310964#: builtin/remote.c:159210965msgid "be verbose; must be placed before a subcommand"10966msgstr "erweiterte Ausgaben; muss vor einem Unterbefehl angegeben werden"1096710968#: builtin/repack.c:1710969msgid "git repack [<options>]"10970msgstr "git repack [<Optionen>]"1097110972#: builtin/repack.c:16010973msgid "pack everything in a single pack"10974msgstr "alles in eine einzige Pack-Datei packen"1097510976#: builtin/repack.c:16210977msgid "same as -a, and turn unreachable objects loose"10978msgstr "genau wie -a, unerreichbare Objekte werden aber nicht gelöscht"1097910980#: builtin/repack.c:16510981msgid "remove redundant packs, and run git-prune-packed"10982msgstr "redundante Pakete entfernen und \"git-prune-packed\" ausführen"1098310984#: builtin/repack.c:16710985msgid "pass --no-reuse-delta to git-pack-objects"10986msgstr "--no-reuse-delta an git-pack-objects übergeben"1098710988#: builtin/repack.c:16910989msgid "pass --no-reuse-object to git-pack-objects"10990msgstr "--no-reuse-object an git-pack-objects übergeben"1099110992#: builtin/repack.c:17110993msgid "do not run git-update-server-info"10994msgstr "git-update-server-info nicht ausführen"1099510996#: builtin/repack.c:17410997msgid "pass --local to git-pack-objects"10998msgstr "--local an git-pack-objects übergeben"1099911000#: builtin/repack.c:17611001msgid "write bitmap index"11002msgstr "Bitmap-Index schreiben"1100311004#: builtin/repack.c:17711005msgid "approxidate"11006msgstr "Datumsangabe"1100711008#: builtin/repack.c:17811009msgid "with -A, do not loosen objects older than this"11010msgstr "mit -A, keine Objekte älter als dieses Datum löschen"1101111012#: builtin/repack.c:18011013msgid "with -a, repack unreachable objects"11014msgstr "mit -a, nicht erreichbare Objekte neu packen"1101511016#: builtin/repack.c:18211017msgid "size of the window used for delta compression"11018msgstr "Größe des Fensters für die Delta-Kompression"1101911020#: builtin/repack.c:183 builtin/repack.c:18711021msgid "bytes"11022msgstr "Bytes"1102311024#: builtin/repack.c:18411025msgid "same as the above, but limit memory size instead of entries count"11026msgstr ""11027"gleiches wie oben, aber die Speichergröße anstatt der\n"11028"Anzahl der Einträge limitieren"1102911030#: builtin/repack.c:18611031msgid "limits the maximum delta depth"11032msgstr "die maximale Delta-Tiefe limitieren"1103311034#: builtin/repack.c:18811035msgid "maximum size of each packfile"11036msgstr "maximale Größe für jede Paketdatei"1103711038#: builtin/repack.c:19011039msgid "repack objects in packs marked with .keep"11040msgstr ""11041"Objekte umpacken, die sich in mit .keep markierten Pack-Dateien befinden"1104211043#: builtin/repack.c:20011044msgid "cannot delete packs in a precious-objects repo"11045msgstr "kann Pack-Dateien in precious-objects Repository nicht löschen"1104611047#: builtin/repack.c:20411048msgid "--keep-unreachable and -A are incompatible"11049msgstr "--keep-unreachable und -A sind inkompatibel"1105011051#: builtin/repack.c:391 builtin/worktree.c:11511052#, c-format11053msgid "failed to remove '%s'"11054msgstr "Fehler beim Löschen von '%s'"1105511056#: builtin/replace.c:1911057msgid "git replace [-f] <object> <replacement>"11058msgstr "git replace [-f] <Objekt> <Ersetzung>"1105911060#: builtin/replace.c:2011061msgid "git replace [-f] --edit <object>"11062msgstr "git replace [-f] --edit <Objekt>"1106311064#: builtin/replace.c:2111065msgid "git replace [-f] --graft <commit> [<parent>...]"11066msgstr "git replace [-f] --graft <Commit> [<Eltern-Commit>...]"1106711068#: builtin/replace.c:2211069msgid "git replace -d <object>..."11070msgstr "git replace -d <Objekt>..."1107111072#: builtin/replace.c:2311073msgid "git replace [--format=<format>] [-l [<pattern>]]"11074msgstr "git replace [--format=<Format>] [-l [<Muster>]]"1107511076#: builtin/replace.c:325 builtin/replace.c:363 builtin/replace.c:39111077#, c-format11078msgid "Not a valid object name: '%s'"11079msgstr "Ungültiger Objekt-Name: '%s'"1108011081#: builtin/replace.c:35511082#, c-format11083msgid "bad mergetag in commit '%s'"11084msgstr "ungültiger Merge-Tag in Commit '%s'"1108511086#: builtin/replace.c:35711087#, c-format11088msgid "malformed mergetag in commit '%s'"11089msgstr "fehlerhafter Merge-Tag in Commit '%s'"1109011091#: builtin/replace.c:36811092#, c-format11093msgid ""11094"original commit '%s' contains mergetag '%s' that is discarded; use --edit "11095"instead of --graft"11096msgstr ""11097"Der ursprüngliche Commit '%s' enthält Merge-Tag '%s', der verworfen\n"11098"wird; benutzen Sie --edit anstatt --graft"1109911100#: builtin/replace.c:40111101#, c-format11102msgid "the original commit '%s' has a gpg signature."11103msgstr "Der ursprüngliche Commit '%s' hat eine GPG-Signatur."1110411105#: builtin/replace.c:40211106msgid "the signature will be removed in the replacement commit!"11107msgstr "Die Signatur wird in dem Ersetzungs-Commit entfernt!"1110811109#: builtin/replace.c:40811110#, c-format11111msgid "could not write replacement commit for: '%s'"11112msgstr "Konnte Ersetzungs-Commit für '%s' nicht schreiben"1111311114#: builtin/replace.c:43211115msgid "list replace refs"11116msgstr "ersetzende Referenzen auflisten"1111711118#: builtin/replace.c:43311119msgid "delete replace refs"11120msgstr "ersetzende Referenzen löschen"1112111122#: builtin/replace.c:43411123msgid "edit existing object"11124msgstr "existierendes Objekt bearbeiten"1112511126#: builtin/replace.c:43511127msgid "change a commit's parents"11128msgstr "Eltern-Commits eines Commits ändern"1112911130#: builtin/replace.c:43611131msgid "replace the ref if it exists"11132msgstr "die Referenz ersetzen, wenn sie existiert"1113311134#: builtin/replace.c:43711135msgid "do not pretty-print contents for --edit"11136msgstr "keine ansprechende Anzeige des Objektinhaltes für --edit"1113711138#: builtin/replace.c:43811139msgid "use this format"11140msgstr "das angegebene Format benutzen"1114111142#: builtin/rerere.c:1211143msgid "git rerere [clear | forget <path>... | status | remaining | diff | gc]"11144msgstr "git rerere [clean | forget <Pfad>... | status | remaining | diff | gc]"1114511146#: builtin/rerere.c:5811147msgid "register clean resolutions in index"11148msgstr "saubere Auflösungen im Index registrieren"1114911150#: builtin/reset.c:2611151msgid ""11152"git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]"11153msgstr ""11154"git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<Commit>]"1115511156#: builtin/reset.c:2711157msgid "git reset [-q] <tree-ish> [--] <paths>..."11158msgstr "git reset [-q] <Commit-Referenz> [--] <Pfade>..."1115911160#: builtin/reset.c:2811161msgid "git reset --patch [<tree-ish>] [--] [<paths>...]"11162msgstr "git reset --patch [<Commit-Referenz>] [--] [<Pfade>...]"1116311164#: builtin/reset.c:3411165msgid "mixed"11166msgstr "mixed"1116711168#: builtin/reset.c:3411169msgid "soft"11170msgstr "soft"1117111172#: builtin/reset.c:3411173msgid "hard"11174msgstr "hard"1117511176#: builtin/reset.c:3411177msgid "merge"11178msgstr "zusammenführen"1117911180#: builtin/reset.c:3411181msgid "keep"11182msgstr "keep"1118311184#: builtin/reset.c:7411185msgid "You do not have a valid HEAD."11186msgstr "Sie haben keinen gültigen HEAD."1118711188#: builtin/reset.c:7611189msgid "Failed to find tree of HEAD."11190msgstr "Fehler beim Finden des \"Tree\"-Objektes von HEAD."1119111192#: builtin/reset.c:8211193#, c-format11194msgid "Failed to find tree of %s."11195msgstr "Fehler beim Finden des \"Tree\"-Objektes von %s."1119611197#: builtin/reset.c:10011198#, c-format11199msgid "HEAD is now at %s"11200msgstr "HEAD ist jetzt bei %s"1120111202#: builtin/reset.c:18311203#, c-format11204msgid "Cannot do a %s reset in the middle of a merge."11205msgstr "Kann keinen '%s'-Reset durchführen, während ein Merge im Gange ist."1120611207#: builtin/reset.c:27611208msgid "be quiet, only report errors"11209msgstr "weniger Ausgaben, meldet nur Fehler"1121011211#: builtin/reset.c:27811212msgid "reset HEAD and index"11213msgstr "HEAD und Index umsetzen"1121411215#: builtin/reset.c:27911216msgid "reset only HEAD"11217msgstr "nur HEAD umsetzen"1121811219#: builtin/reset.c:281 builtin/reset.c:28311220msgid "reset HEAD, index and working tree"11221msgstr "HEAD, Index und Arbeitsverzeichnis umsetzen"1122211223#: builtin/reset.c:28511224msgid "reset HEAD but keep local changes"11225msgstr "HEAD umsetzen, aber lokale Änderungen behalten"1122611227#: builtin/reset.c:28811228msgid "record only the fact that removed paths will be added later"11229msgstr "nur speichern, dass gelöschte Pfade später hinzugefügt werden sollen"1123011231#: builtin/reset.c:30511232#, c-format11233msgid "Failed to resolve '%s' as a valid revision."11234msgstr "Konnte '%s' nicht als gültigen Commit auflösen."1123511236#: builtin/reset.c:31311237#, c-format11238msgid "Failed to resolve '%s' as a valid tree."11239msgstr "Konnte '%s' nicht als gültiges \"Tree\"-Objekt auflösen."1124011241#: builtin/reset.c:32211242msgid "--patch is incompatible with --{hard,mixed,soft}"11243msgstr "--patch ist inkompatibel mit --{hard,mixed,soft}"1124411245#: builtin/reset.c:33111246msgid "--mixed with paths is deprecated; use 'git reset -- <paths>' instead."11247msgstr ""11248"--mixed mit Pfaden ist veraltet; benutzen Sie stattdessen 'git reset -- "11249"<Pfade>'."1125011251#: builtin/reset.c:33311252#, c-format11253msgid "Cannot do %s reset with paths."11254msgstr "Ein '%s'-Reset mit Pfaden ist nicht möglich."1125511256#: builtin/reset.c:34311257#, c-format11258msgid "%s reset is not allowed in a bare repository"11259msgstr "'%s'-Reset ist in einem Bare-Repository nicht erlaubt"1126011261#: builtin/reset.c:34711262msgid "-N can only be used with --mixed"11263msgstr "-N kann nur mit -mixed benutzt werden"1126411265#: builtin/reset.c:36411266msgid "Unstaged changes after reset:"11267msgstr "Nicht zum Commit vorgemerkte Änderungen nach Zurücksetzung:"1126811269#: builtin/reset.c:37011270#, c-format11271msgid "Could not reset index file to revision '%s'."11272msgstr "Konnte Index-Datei nicht zu Commit '%s' setzen."1127311274#: builtin/reset.c:37411275msgid "Could not write new index file."11276msgstr "Konnte neue Index-Datei nicht schreiben."1127711278#: builtin/rev-list.c:36211279msgid "rev-list does not support display of notes"11280msgstr "rev-list unterstützt keine Anzeige von Notizen"1128111282#: builtin/rev-parse.c:35811283msgid "git rev-parse --parseopt [<options>] -- [<args>...]"11284msgstr "git rev-parse --parseopt [<Optionen>] -- [<Argumente>...]"1128511286#: builtin/rev-parse.c:36311287msgid "keep the `--` passed as an arg"11288msgstr "`--` als Argument lassen"1128911290#: builtin/rev-parse.c:36511291msgid "stop parsing after the first non-option argument"11292msgstr "das Parsen nach dem ersten Argument, was keine Option ist, stoppen"1129311294#: builtin/rev-parse.c:36811295msgid "output in stuck long form"11296msgstr ""11297"Ausgabe in Langform mit Argumenten an den Optionen (getrennt durch '=')"1129811299#: builtin/rev-parse.c:49911300msgid ""11301"git rev-parse --parseopt [<options>] -- [<args>...]\n"11302" or: git rev-parse --sq-quote [<arg>...]\n"11303" or: git rev-parse [<options>] [<arg>...]\n"11304"\n"11305"Run \"git rev-parse --parseopt -h\" for more information on the first usage."11306msgstr ""11307"git rev-parse --parseopt [<Optionen>] -- [<Argumente>...]\n"11308" oder: git rev-parse --sq-quote [<Argumente>...]\n"11309" oder: git rev-parse [<Optionen>] [<Argumente>...]\n"11310"\n"11311"Führen Sie \"git rev-parse --parseopt -h\" für weitere Informationen bei "11312"erster Verwendung aus."1131311314#: builtin/revert.c:2211315msgid "git revert [<options>] <commit-ish>..."11316msgstr "git revert [<Optionen>] <Commit-Angabe>..."1131711318#: builtin/revert.c:2311319msgid "git revert <subcommand>"11320msgstr "git revert <Unterbefehl>"1132111322#: builtin/revert.c:2811323msgid "git cherry-pick [<options>] <commit-ish>..."11324msgstr "git cherry-pick [<Optionen>] <Commit-Angabe>..."1132511326#: builtin/revert.c:2911327msgid "git cherry-pick <subcommand>"11328msgstr "git cherry-pick <Unterbefehl>"1132911330#: builtin/revert.c:7111331#, c-format11332msgid "%s: %s cannot be used with %s"11333msgstr "%s: %s kann nicht mit %s verwendet werden"1133411335#: builtin/revert.c:8011336msgid "end revert or cherry-pick sequence"11337msgstr "\"revert\" oder \"cherry-pick\" Ablauf beenden"1133811339#: builtin/revert.c:8111340msgid "resume revert or cherry-pick sequence"11341msgstr "\"revert\" oder \"cherry-pick\" Ablauf fortsetzen"1134211343#: builtin/revert.c:8211344msgid "cancel revert or cherry-pick sequence"11345msgstr "\"revert\" oder \"cherry-pick\" Ablauf abbrechen"1134611347#: builtin/revert.c:8311348msgid "don't automatically commit"11349msgstr "nicht automatisch committen"1135011351#: builtin/revert.c:8411352msgid "edit the commit message"11353msgstr "Commit-Beschreibung bearbeiten"1135411355#: builtin/revert.c:8711356msgid "parent number"11357msgstr "Nummer des Elternteils"1135811359#: builtin/revert.c:8911360msgid "merge strategy"11361msgstr "Merge-Strategie"1136211363#: builtin/revert.c:9011364msgid "option"11365msgstr "Option"1136611367#: builtin/revert.c:9111368msgid "option for merge strategy"11369msgstr "Option für Merge-Strategie"1137011371#: builtin/revert.c:10011372msgid "append commit name"11373msgstr "Commit-Namen anhängen"1137411375#: builtin/revert.c:10211376msgid "preserve initially empty commits"11377msgstr "ursprüngliche, leere Commits erhalten"1137811379#: builtin/revert.c:10311380msgid "allow commits with empty messages"11381msgstr "Commits mit leerer Beschreibung erlauben"1138211383#: builtin/revert.c:10411384msgid "keep redundant, empty commits"11385msgstr "redundante, leere Commits behalten"1138611387#: builtin/revert.c:19211388msgid "revert failed"11389msgstr "\"revert\" fehlgeschlagen"1139011391#: builtin/revert.c:20711392msgid "cherry-pick failed"11393msgstr "\"cherry-pick\" fehlgeschlagen"1139411395#: builtin/rm.c:1711396msgid "git rm [<options>] [--] <file>..."11397msgstr "git rm [<Optionen>] [--] <Datei>..."1139811399#: builtin/rm.c:6511400msgid ""11401"the following submodule (or one of its nested submodules)\n"11402"uses a .git directory:"11403msgid_plural ""11404"the following submodules (or one of their nested submodules)\n"11405"use a .git directory:"11406msgstr[0] ""11407"das folgende Submodul (oder ein geschachteltes Submodul hiervon)\n"11408"benutzt ein .git-Verzeichnis:"11409msgstr[1] ""11410"die folgenden Submodule (oder ein geschachteltes Submodul hiervon)\n"11411"benutzen ein .git-Verzeichnis:"1141211413#: builtin/rm.c:7111414msgid ""11415"\n"11416"(use 'rm -rf' if you really want to remove it including all of its history)"11417msgstr ""11418"\n"11419"(benutzen Sie 'rm -rf' wenn Sie dieses Submodul wirklich mitsamt\n"11420"seiner Historie löschen möchten)"1142111422#: builtin/rm.c:23011423msgid ""11424"the following file has staged content different from both the\n"11425"file and the HEAD:"11426msgid_plural ""11427"the following files have staged content different from both the\n"11428"file and the HEAD:"11429msgstr[0] ""11430"die folgende Datei hat zum Commit vorgemerkte Änderungen unterschiedlich\n"11431"zu der Datei und HEAD:"11432msgstr[1] ""11433"die folgenden Dateien haben zum Commit vorgemerkte Änderungen "11434"unterschiedlich\n"11435"zu der Datei und HEAD:"1143611437#: builtin/rm.c:23511438msgid ""11439"\n"11440"(use -f to force removal)"11441msgstr ""11442"\n"11443"(benutzen Sie -f, um die Löschung zu erzwingen)"1144411445#: builtin/rm.c:23911446msgid "the following file has changes staged in the index:"11447msgid_plural "the following files have changes staged in the index:"11448msgstr[0] "die folgende Datei hat zum Commit vorgemerkte Änderungen:"11449msgstr[1] "die folgenden Dateien haben zum Commit vorgemerkte Änderungen:"1145011451#: builtin/rm.c:243 builtin/rm.c:25411452msgid ""11453"\n"11454"(use --cached to keep the file, or -f to force removal)"11455msgstr ""11456"\n"11457"(benutzen Sie --cached, um die Datei zu behalten, oder -f, um die Entfernung "11458"zu erzwingen)"1145911460#: builtin/rm.c:25111461msgid "the following file has local modifications:"11462msgid_plural "the following files have local modifications:"11463msgstr[0] "die folgende Datei hat lokale Änderungen:"11464msgstr[1] "die folgenden Dateien haben lokale Änderungen:"1146511466#: builtin/rm.c:26911467msgid "do not list removed files"11468msgstr "keine gelöschten Dateien auflisten"1146911470#: builtin/rm.c:27011471msgid "only remove from the index"11472msgstr "nur aus dem Index entfernen"1147311474#: builtin/rm.c:27111475msgid "override the up-to-date check"11476msgstr "die \"up-to-date\" Prüfung überschreiben"1147711478#: builtin/rm.c:27211479msgid "allow recursive removal"11480msgstr "rekursive Entfernung erlauben"1148111482#: builtin/rm.c:27411483msgid "exit with a zero status even if nothing matched"11484msgstr "mit Rückgabewert 0 beenden, wenn keine Übereinstimmung gefunden wurde"1148511486#: builtin/rm.c:33511487#, c-format11488msgid "not removing '%s' recursively without -r"11489msgstr "'%s' wird nicht ohne -r rekursiv entfernt"1149011491#: builtin/rm.c:37411492#, c-format11493msgid "git rm: unable to remove %s"11494msgstr "git rm: konnte %s nicht löschen"1149511496#: builtin/send-pack.c:1811497msgid ""11498"git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-"11499"receive-pack>] [--verbose] [--thin] [--atomic] [<host>:]<directory> "11500"[<ref>...]\n"11501" --all and explicit <ref> specification are mutually exclusive."11502msgstr ""11503"git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-"11504"receive-pack>] [--verbose] [--thin] [--atomic] [<Host>:]<Verzeichnis> "11505"[<Referenz>...]\n"11506" --all und die explizite Angabe einer <Referenz> schließen sich gegenseitig "11507"aus."1150811509#: builtin/send-pack.c:16011510msgid "remote name"11511msgstr "Name des Remote-Repositories"1151211513#: builtin/send-pack.c:17111514msgid "use stateless RPC protocol"11515msgstr "zustandsloses RPC-Protokoll verwenden"1151611517#: builtin/send-pack.c:17211518msgid "read refs from stdin"11519msgstr "Referenzen von der Standard-Eingabe lesen"1152011521#: builtin/send-pack.c:17311522msgid "print status from remote helper"11523msgstr "Status des Remote-Helpers ausgeben"1152411525#: builtin/shortlog.c:1311526msgid "git shortlog [<options>] [<revision-range>] [[--] [<path>...]]"11527msgstr "git shortlog [<Optionen>] [<Commitbereich>] [[--] [<Pfad>...]]"1152811529#: builtin/shortlog.c:24211530msgid "sort output according to the number of commits per author"11531msgstr "die Ausgabe entsprechend der Anzahl von Commits pro Autor sortieren"1153211533#: builtin/shortlog.c:24411534msgid "Suppress commit descriptions, only provides commit count"11535msgstr "Commit-Beschreibungen unterdrücken, nur Anzahl der Commits liefern"1153611537#: builtin/shortlog.c:24611538msgid "Show the email address of each author"11539msgstr "die E-Mail-Adresse von jedem Autor anzeigen"1154011541#: builtin/shortlog.c:24711542msgid "w[,i1[,i2]]"11543msgstr "w[,i1[,i2]]"1154411545#: builtin/shortlog.c:24811546msgid "Linewrap output"11547msgstr "Ausgabe mit Zeilenumbrüchen"1154811549#: builtin/show-branch.c:1011550msgid ""11551"git show-branch [-a | --all] [-r | --remotes] [--topo-order | --date-order]\n"11552"\t\t[--current] [--color[=<when>] | --no-color] [--sparse]\n"11553"\t\t[--more=<n> | --list | --independent | --merge-base]\n"11554"\t\t[--no-name | --sha1-name] [--topics] [(<rev> | <glob>)...]"11555msgstr ""11556"git show-branch [-a | --all] [-r | --remotes] [--topo-order | --date-order]\n"11557"\t\t[--current] [--color[=<Wann>] | --no-color] [--sparse]\n"11558"\t\t[--more=<n> | --list | --independent | --merge-base]\n"11559"\t\t[--no-name | --sha1-name] [--topics] [(<Commit> | <glob>)...]"1156011561#: builtin/show-branch.c:1411562msgid "git show-branch (-g | --reflog)[=<n>[,<base>]] [--list] [<ref>]"11563msgstr "git show-branch (-g | --reflog)[=<n>[,<Basis>]] [--list] [<Referenz>]"1156411565#: builtin/show-branch.c:64011566msgid "show remote-tracking and local branches"11567msgstr "Remote-Tracking und lokale Branches anzeigen"1156811569#: builtin/show-branch.c:64211570msgid "show remote-tracking branches"11571msgstr "Remote-Tracking-Branches anzeigen"1157211573#: builtin/show-branch.c:64411574msgid "color '*!+-' corresponding to the branch"11575msgstr "'*!+-' entsprechend des Branches einfärben"1157611577#: builtin/show-branch.c:64611578msgid "show <n> more commits after the common ancestor"11579msgstr "<n> weitere Commits nach dem gemeinsamen Vorgänger-Commit anzeigen"1158011581#: builtin/show-branch.c:64811582msgid "synonym to more=-1"11583msgstr "Synonym für more=-1"1158411585#: builtin/show-branch.c:64911586msgid "suppress naming strings"11587msgstr "Namen unterdrücken"1158811589#: builtin/show-branch.c:65111590msgid "include the current branch"11591msgstr "den aktuellen Branch einbeziehen"1159211593#: builtin/show-branch.c:65311594msgid "name commits with their object names"11595msgstr "Commits nach ihren Objektnamen benennen"1159611597#: builtin/show-branch.c:65511598msgid "show possible merge bases"11599msgstr "mögliche Merge-Basen anzeigen"1160011601#: builtin/show-branch.c:65711602msgid "show refs unreachable from any other ref"11603msgstr ""11604"Referenzen, die unerreichbar von allen anderen Referenzen sind, anzeigen"1160511606#: builtin/show-branch.c:65911607msgid "show commits in topological order"11608msgstr "Commits in topologischer Ordnung anzeigen"1160911610#: builtin/show-branch.c:66211611msgid "show only commits not on the first branch"11612msgstr "nur Commits anzeigen, die sich nicht im ersten Branch befinden"1161311614#: builtin/show-branch.c:66411615msgid "show merges reachable from only one tip"11616msgstr "Merges anzeigen, die nur von einem Branch aus erreichbar sind"1161711618#: builtin/show-branch.c:66611619msgid "topologically sort, maintaining date order where possible"11620msgstr "topologische Sortierung, Beibehaltung Datumsordnung wo möglich"1162111622#: builtin/show-branch.c:66911623msgid "<n>[,<base>]"11624msgstr "<n>[,<Basis>]"1162511626#: builtin/show-branch.c:67011627msgid "show <n> most recent ref-log entries starting at base"11628msgstr "die <n> jüngsten Einträge im Reflog, beginnend an der Basis, anzeigen"1162911630#: builtin/show-ref.c:1011631msgid ""11632"git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --"11633"hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<pattern>...]"11634msgstr ""11635"git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --"11636"hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<Muster>...] "1163711638#: builtin/show-ref.c:1111639msgid "git show-ref --exclude-existing[=<pattern>]"11640msgstr "git show-ref --exclude-existing[=<Muster>]"1164111642#: builtin/show-ref.c:16511643msgid "only show tags (can be combined with heads)"11644msgstr "nur Tags anzeigen (kann mit \"heads\" kombiniert werden)"1164511646#: builtin/show-ref.c:16611647msgid "only show heads (can be combined with tags)"11648msgstr "nur Branches anzeigen (kann mit \"tags\" kombiniert werden)"1164911650#: builtin/show-ref.c:16711651msgid "stricter reference checking, requires exact ref path"11652msgstr "strengere Referenzprüfung, erfordert exakten Referenzpfad"1165311654#: builtin/show-ref.c:170 builtin/show-ref.c:17211655msgid "show the HEAD reference, even if it would be filtered out"11656msgstr ""11657"die HEAD-Referenz anzeigen, selbst wenn diese ausgefiltert werden würde"1165811659#: builtin/show-ref.c:17411660msgid "dereference tags into object IDs"11661msgstr "Tags in Objekt-Identifikationen dereferenzieren"1166211663#: builtin/show-ref.c:17611664msgid "only show SHA1 hash using <n> digits"11665msgstr "nur SHA1 Hash mit <n> Ziffern anzeigen"1166611667#: builtin/show-ref.c:18011668msgid "do not print results to stdout (useful with --verify)"11669msgstr ""11670"keine Ausgabe der Ergebnisse in die Standard-Ausgabe (nützlich mit --verify)"1167111672#: builtin/show-ref.c:18211673msgid "show refs from stdin that aren't in local repository"11674msgstr ""11675"Referenzen von der Standard-Eingabe anzeigen, die sich nicht im lokalen "11676"Repository befinden"1167711678#: builtin/stripspace.c:1711679msgid "git stripspace [-s | --strip-comments]"11680msgstr "git stripspace [-s | --strip-comments]"1168111682#: builtin/stripspace.c:1811683msgid "git stripspace [-c | --comment-lines]"11684msgstr "git stripspace [-c | --comment-lines]"1168511686#: builtin/stripspace.c:3511687msgid "skip and remove all lines starting with comment character"11688msgstr ""11689"alle Zeilen, die mit dem Kommentarzeichen beginnen, überspringen und "11690"entfernen"1169111692#: builtin/stripspace.c:3811693msgid "prepend comment character and space to each line"11694msgstr "Kommentarzeichen mit Leerzeichen an jede Zeile voranstellen"1169511696#: builtin/submodule--helper.c:24 builtin/submodule--helper.c:92311697#, c-format11698msgid "No such ref: %s"11699msgstr "Referenz nicht gefunden: %s"1170011701#: builtin/submodule--helper.c:31 builtin/submodule--helper.c:93211702#, c-format11703msgid "Expecting a full ref name, got %s"11704msgstr "Vollständiger Referenzname erwartet, %s erhalten"1170511706#: builtin/submodule--helper.c:7111707#, c-format11708msgid "cannot strip one component off url '%s'"11709msgstr "Kann eine Komponente von URL '%s' nicht extrahieren"1171011711#: builtin/submodule--helper.c:278 builtin/submodule--helper.c:40311712#: builtin/submodule--helper.c:48311713msgid "alternative anchor for relative paths"11714msgstr "Alternativer Anker für relative Pfade"1171511716#: builtin/submodule--helper.c:28311717msgid "git submodule--helper list [--prefix=<path>] [<path>...]"11718msgstr "git submodule--helper list [--prefix=<Pfad>] [<Pfad>...]"1171911720#: builtin/submodule--helper.c:324 builtin/submodule--helper.c:33811721#, c-format11722msgid "No url found for submodule path '%s' in .gitmodules"11723msgstr "Keine URL für Submodul-Pfad '%s' in .gitmodules gefunden"1172411725#: builtin/submodule--helper.c:36411726#, c-format11727msgid "Failed to register url for submodule path '%s'"11728msgstr ""11729"Fehler beim Eintragen der URL für Submodul-Pfad '%s' in die Konfiguration."1173011731#: builtin/submodule--helper.c:36811732#, c-format11733msgid "Submodule '%s' (%s) registered for path '%s'\n"11734msgstr "Submodul '%s' (%s) für Pfad '%s' in die Konfiguration eingetragen.\n"1173511736#: builtin/submodule--helper.c:37811737#, c-format11738msgid "warning: command update mode suggested for submodule '%s'\n"11739msgstr "Warnung: 'update'-Modus für Submodul '%s' vorgeschlagen\n"1174011741#: builtin/submodule--helper.c:38511742#, c-format11743msgid "Failed to register update mode for submodule path '%s'"11744msgstr ""11745"Fehler bei Änderung des Aktualisierungsmodus für Submodul-Pfad '%s' in der\n"11746"Konfiguration."1174711748#: builtin/submodule--helper.c:40411749msgid "Suppress output for initializing a submodule"11750msgstr "Ausgaben bei Initialisierung eines Submoduls unterdrücken"1175111752#: builtin/submodule--helper.c:40911753msgid "git submodule--helper init [<path>]"11754msgstr "git submodule--helper init [<Pfad>]"1175511756#: builtin/submodule--helper.c:43011757msgid "git submodule--helper name <path>"11758msgstr "git submodule--helper name <Pfad>"1175911760#: builtin/submodule--helper.c:43611761#, c-format11762msgid "no submodule mapping found in .gitmodules for path '%s'"11763msgstr "Keine Submodul-Zuordnung in .gitmodules für Pfad '%s' gefunden"1176411765#: builtin/submodule--helper.c:48611766msgid "where the new submodule will be cloned to"11767msgstr "Pfad für neues Submodul"1176811769#: builtin/submodule--helper.c:48911770msgid "name of the new submodule"11771msgstr "Name des neuen Submoduls"1177211773#: builtin/submodule--helper.c:49211774msgid "url where to clone the submodule from"11775msgstr "URL von der das Submodul geklont wird"1177611777#: builtin/submodule--helper.c:49811778msgid "depth for shallow clones"11779msgstr "Tiefe des Klons mit unvollständiger Historie (shallow)"1178011781#: builtin/submodule--helper.c:50411782msgid ""11783"git submodule--helper clone [--prefix=<path>] [--quiet] [--reference "11784"<repository>] [--name <name>] [--depth <depth>] --url <url> --path <path>"11785msgstr ""11786"git submodule--helper clone [--prefix=<Pfad>] [--quiet] [--reference "11787"<Repository>] [--name <Name>] [--url <URL>] [--name <Name>] [--depth "11788"<Tiefe>] --url <URL> --path <Pfad>"1178911790#: builtin/submodule--helper.c:529 builtin/submodule--helper.c:53511791#, c-format11792msgid "could not create directory '%s'"11793msgstr "Konnte Verzeichnis '%s' nicht erstellen."1179411795#: builtin/submodule--helper.c:53111796#, c-format11797msgid "clone of '%s' into submodule path '%s' failed"11798msgstr "Klonen von '%s' in Submodul-Pfad '%s' fehlgeschlagen"1179911800#: builtin/submodule--helper.c:54711801#, c-format11802msgid "cannot open file '%s'"11803msgstr "Kann Datei '%s' nicht öffnen"1180411805#: builtin/submodule--helper.c:55211806#, c-format11807msgid "could not close file %s"11808msgstr "Konnte Datei '%s' nicht schließen."1180911810#: builtin/submodule--helper.c:55911811#, c-format11812msgid "could not get submodule directory for '%s'"11813msgstr "Konnte Submodul-Verzeichnis '%s' nicht finden."1181411815#: builtin/submodule--helper.c:61111816#, c-format11817msgid "Submodule path '%s' not initialized"11818msgstr "Submodul-Pfad '%s' nicht initialisiert"1181911820#: builtin/submodule--helper.c:61511821msgid "Maybe you want to use 'update --init'?"11822msgstr "Meinten Sie vielleicht 'update --init'?"1182311824#: builtin/submodule--helper.c:64111825#, c-format11826msgid "Skipping unmerged submodule %s"11827msgstr "Überspringe nicht zusammengeführtes Submodul %s"1182811829#: builtin/submodule--helper.c:66211830#, c-format11831msgid "Skipping submodule '%s'"11832msgstr "Überspringe Submodul '%s'"1183311834#: builtin/submodule--helper.c:79211835#, c-format11836msgid "Failed to clone '%s'. Retry scheduled"11837msgstr "Fehler beim Klonen von '%s'. Weiterer Versuch geplant"1183811839#: builtin/submodule--helper.c:80311840#, c-format11841msgid "Failed to clone '%s' a second time, aborting"11842msgstr "Zweiter Versuch '%s' zu klonen fehlgeschlagen, breche ab."1184311844#: builtin/submodule--helper.c:82411845msgid "path into the working tree"11846msgstr "Pfad zum Arbeitsverzeichnis"1184711848#: builtin/submodule--helper.c:82711849msgid "path into the working tree, across nested submodule boundaries"11850msgstr ""11851"Pfad zum Arbeitsverzeichnis, über verschachtelte Submodul-Grenzen hinweg"1185211853#: builtin/submodule--helper.c:83111854msgid "rebase, merge, checkout or none"11855msgstr "rebase, merge, checkout oder none"1185611857#: builtin/submodule--helper.c:83511858msgid "Create a shallow clone truncated to the specified number of revisions"11859msgstr ""11860"Erstellung eines Klons mit unvollständiger Historie (shallow), abgeschnitten "11861"bei\n"11862"der angegebenen Anzahl von Commits."1186311864#: builtin/submodule--helper.c:83811865msgid "parallel jobs"11866msgstr "Parallele Ausführungen"1186711868#: builtin/submodule--helper.c:84011869msgid "whether the initial clone should follow the shallow recommendation"11870msgstr ""11871"ob das initiale Klonen den Empfehlungen für eine unvollständige\n"11872"Historie (shallow) folgen soll"1187311874#: builtin/submodule--helper.c:84111875msgid "don't print cloning progress"11876msgstr "keine Fortschrittsanzeige beim Klonen"1187711878#: builtin/submodule--helper.c:84611879msgid "git submodule--helper update_clone [--prefix=<path>] [<path>...]"11880msgstr "git submodule--helper update_clone [--prefix=<Pfad>] [<Pfad>...]"1188111882#: builtin/submodule--helper.c:85611883msgid "bad value for update parameter"11884msgstr "Fehlerhafter Wert für --update Parameter"1188511886#: builtin/submodule--helper.c:92711887#, c-format11888msgid ""11889"Submodule (%s) branch configured to inherit branch from superproject, but "11890"the superproject is not on any branch"11891msgstr ""11892"Branch von Submodul (%s) ist konfiguriert, den Branch des Hauptprojektes\n"11893"zu erben, aber das Hauptprojekt befindet sich auf keinem Branch."1189411895#: builtin/submodule--helper.c:97711896msgid "submodule--helper subcommand must be called with a subcommand"11897msgstr "submodule--helper muss mit einem Unterbefehl aufgerufen werden"1189811899#: builtin/submodule--helper.c:98411900#, c-format11901msgid "'%s' is not a valid submodule--helper subcommand"11902msgstr "'%s' ist kein gültiger Unterbefehl von submodule--helper"1190311904#: builtin/symbolic-ref.c:711905msgid "git symbolic-ref [<options>] <name> [<ref>]"11906msgstr "git symbolic-ref [<Optionen>] <Name> [<Referenz>]"1190711908#: builtin/symbolic-ref.c:811909msgid "git symbolic-ref -d [-q] <name>"11910msgstr "git symbolic-ref -d [-q] <Name>"1191111912#: builtin/symbolic-ref.c:4011913msgid "suppress error message for non-symbolic (detached) refs"11914msgstr ""11915"Fehlermeldungen für nicht-symbolische (losgelöste) Referenzen unterdrücken"1191611917#: builtin/symbolic-ref.c:4111918msgid "delete symbolic ref"11919msgstr "symbolische Referenzen löschen"1192011921#: builtin/symbolic-ref.c:4211922msgid "shorten ref output"11923msgstr "verkürzte Ausgabe der Referenzen"1192411925#: builtin/symbolic-ref.c:43 builtin/update-ref.c:36211926msgid "reason"11927msgstr "Grund"1192811929#: builtin/symbolic-ref.c:43 builtin/update-ref.c:36211930msgid "reason of the update"11931msgstr "Grund für die Aktualisierung"1193211933#: builtin/tag.c:2311934msgid ""11935"git tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <tagname> "11936"[<head>]"11937msgstr ""11938"git tag [-a | -s | -u <Schlüssel-id>] [-f] [-m <Beschreibung> | -F <Datei>] "11939"<Tagname> [<Commit>]"1194011941#: builtin/tag.c:2411942msgid "git tag -d <tagname>..."11943msgstr "git tag -d <Tagname>..."1194411945#: builtin/tag.c:2511946msgid ""11947"git tag -l [-n[<num>]] [--contains <commit>] [--points-at <object>]\n"11948"\t\t[--format=<format>] [--[no-]merged [<commit>]] [<pattern>...]"11949msgstr ""11950"git tag -l [-n[<Nummer>]] [--contains <Commit>] [--points-at <Objekt>]\n"11951"\t\t[--format=<Muster>] [--[no-]merged [<Commit>]] [<Muster>...]"1195211953#: builtin/tag.c:2711954msgid "git tag -v <tagname>..."11955msgstr "git tag -v <Tagname>..."1195611957#: builtin/tag.c:8111958#, c-format11959msgid "tag name too long: %.*s..."11960msgstr "Tagname zu lang: %.*s..."1196111962#: builtin/tag.c:8611963#, c-format11964msgid "tag '%s' not found."11965msgstr "Tag '%s' nicht gefunden."1196611967#: builtin/tag.c:10111968#, c-format11969msgid "Deleted tag '%s' (was %s)\n"11970msgstr "Tag '%s' gelöscht (war %s)\n"1197111972#: builtin/tag.c:11711973#, c-format11974msgid ""11975"\n"11976"Write a message for tag:\n"11977" %s\n"11978"Lines starting with '%c' will be ignored.\n"11979msgstr ""11980"\n"11981"Geben Sie eine Beschreibung für Tag\n"11982" %s\n"11983"ein. Zeilen, die mit '%c' beginnen, werden ignoriert.\n"1198411985#: builtin/tag.c:12111986#, c-format11987msgid ""11988"\n"11989"Write a message for tag:\n"11990" %s\n"11991"Lines starting with '%c' will be kept; you may remove them yourself if you "11992"want to.\n"11993msgstr ""11994"\n"11995"Geben Sie eine Beschreibung für Tag\n"11996" %s\n"11997"ein. Zeilen, die mit '%c' beginnen, werden behalten; Sie dürfen diese\n"11998"selbst entfernen wenn Sie möchten.\n"1199912000#: builtin/tag.c:19912001msgid "unable to sign the tag"12002msgstr "konnte Tag nicht signieren"1200312004#: builtin/tag.c:20112005msgid "unable to write tag file"12006msgstr "konnte Tag-Datei nicht schreiben"1200712008#: builtin/tag.c:22612009msgid "bad object type."12010msgstr "ungültiger Objekt-Typ"1201112012#: builtin/tag.c:23912013msgid "tag header too big."12014msgstr "Tag-Kopf zu groß."1201512016#: builtin/tag.c:27512017msgid "no tag message?"12018msgstr "keine Tag-Beschreibung?"1201912020#: builtin/tag.c:28112021#, c-format12022msgid "The tag message has been left in %s\n"12023msgstr "Die Tag-Beschreibung wurde gelassen in %s\n"1202412025#: builtin/tag.c:33912026msgid "list tag names"12027msgstr "Tagnamen auflisten"1202812029#: builtin/tag.c:34112030msgid "print <n> lines of each tag message"12031msgstr "<n> Zeilen jeder Tag-Beschreibung anzeigen"1203212033#: builtin/tag.c:34312034msgid "delete tags"12035msgstr "Tags löschen"1203612037#: builtin/tag.c:34412038msgid "verify tags"12039msgstr "Tags überprüfen"1204012041#: builtin/tag.c:34612042msgid "Tag creation options"12043msgstr "Optionen für Erstellung von Tags"1204412045#: builtin/tag.c:34812046msgid "annotated tag, needs a message"12047msgstr "annotiertes Tag, benötigt eine Beschreibung"1204812049#: builtin/tag.c:35012050msgid "tag message"12051msgstr "Tag-Beschreibung"1205212053#: builtin/tag.c:35212054msgid "annotated and GPG-signed tag"12055msgstr "annotiertes und GPG-signiertes Tag"1205612057#: builtin/tag.c:35612058msgid "use another key to sign the tag"12059msgstr "einen anderen Schlüssel verwenden, um das Tag zu signieren"1206012061#: builtin/tag.c:35712062msgid "replace the tag if exists"12063msgstr "das Tag ersetzen, wenn es existiert"1206412065#: builtin/tag.c:358 builtin/update-ref.c:36812066msgid "create a reflog"12067msgstr "Reflog erstellen"1206812069#: builtin/tag.c:36012070msgid "Tag listing options"12071msgstr "Optionen für Auflistung der Tags"1207212073#: builtin/tag.c:36112074msgid "show tag list in columns"12075msgstr "Liste der Tags in Spalten anzeigen"1207612077#: builtin/tag.c:362 builtin/tag.c:36312078msgid "print only tags that contain the commit"12079msgstr "nur Tags ausgeben, die diesen Commit beinhalten"1208012081#: builtin/tag.c:36412082msgid "print only tags that are merged"12083msgstr "nur Tags ausgeben, die gemerged wurden"1208412085#: builtin/tag.c:36512086msgid "print only tags that are not merged"12087msgstr "nur Tags ausgeben, die nicht gemerged wurden"1208812089#: builtin/tag.c:37012090msgid "print only tags of the object"12091msgstr "nur Tags von dem Objekt ausgeben"1209212093#: builtin/tag.c:39912094msgid "--column and -n are incompatible"12095msgstr "--column und -n sind inkompatibel"1209612097#: builtin/tag.c:41912098msgid "-n option is only allowed with -l."12099msgstr "-n Option ist nur erlaubt mit -l."1210012101#: builtin/tag.c:42112102msgid "--contains option is only allowed with -l."12103msgstr "--contains Option ist nur erlaubt mit -l."1210412105#: builtin/tag.c:42312106msgid "--points-at option is only allowed with -l."12107msgstr "--points-at Option ist nur erlaubt mit -l."1210812109#: builtin/tag.c:42512110msgid "--merged and --no-merged option are only allowed with -l"12111msgstr "Die Optionen --merged und --no-merged sind nur mit -l erlaubt."1211212113#: builtin/tag.c:43312114msgid "only one -F or -m option is allowed."12115msgstr "nur eine -F oder -m Option ist erlaubt."1211612117#: builtin/tag.c:45212118msgid "too many params"12119msgstr "zu viele Parameter"1212012121#: builtin/tag.c:45812122#, c-format12123msgid "'%s' is not a valid tag name."12124msgstr "'%s' ist kein gültiger Tagname."1212512126#: builtin/tag.c:46312127#, c-format12128msgid "tag '%s' already exists"12129msgstr "Tag '%s' existiert bereits"1213012131#: builtin/tag.c:49112132#, c-format12133msgid "Updated tag '%s' (was %s)\n"12134msgstr "Tag '%s' aktualisiert (war %s)\n"1213512136#: builtin/unpack-objects.c:49012137msgid "Unpacking objects"12138msgstr "Entpacke Objekte"1213912140#: builtin/update-index.c:7912141#, c-format12142msgid "failed to create directory %s"12143msgstr "Fehler beim Erstellen von Verzeichnis '%s'"1214412145#: builtin/update-index.c:8512146#, c-format12147msgid "failed to stat %s"12148msgstr "Konnte '%s' nicht lesen"1214912150#: builtin/update-index.c:9512151#, c-format12152msgid "failed to create file %s"12153msgstr "Konnte Datei '%s' nicht erstellen"1215412155#: builtin/update-index.c:10312156#, c-format12157msgid "failed to delete file %s"12158msgstr "Konnte Datei '%s' nicht löschen"1215912160#: builtin/update-index.c:110 builtin/update-index.c:21212161#, c-format12162msgid "failed to delete directory %s"12163msgstr "Konnte Verzeichnis '%s' nicht löschen"1216412165#: builtin/update-index.c:13312166#, c-format12167msgid "Testing mtime in '%s' "12168msgstr "Prüfe mtime in '%s' "1216912170#: builtin/update-index.c:14512171msgid "directory stat info does not change after adding a new file"12172msgstr ""12173"Verzeichnisinformationen haben sich nach Hinzufügen einer neuen Datei nicht "12174"geändert"1217512176#: builtin/update-index.c:15812177msgid "directory stat info does not change after adding a new directory"12178msgstr ""12179"Verzeichnisinformationen haben sich nach Hinzufügen eines neuen "12180"Verzeichnisses nicht geändert"1218112182#: builtin/update-index.c:17112183msgid "directory stat info changes after updating a file"12184msgstr ""12185"Verzeichnisinformationen haben sich nach Aktualisierung einer Datei geändert"1218612187#: builtin/update-index.c:18212188msgid "directory stat info changes after adding a file inside subdirectory"12189msgstr ""12190"Verzeichnisinformationen haben sich nach Hinzufügen einer Datei in ein "12191"Unterverzeichnis geändert"1219212193#: builtin/update-index.c:19312194msgid "directory stat info does not change after deleting a file"12195msgstr ""12196"Verzeichnisinformationen haben sich nach dem Löschen einer Datei nicht "12197"geändert"1219812199#: builtin/update-index.c:20612200msgid "directory stat info does not change after deleting a directory"12201msgstr ""12202"Verzeichnisinformationen haben sich nach dem Löschen eines Verzeichnisses "12203"nicht geändert"1220412205#: builtin/update-index.c:21312206msgid " OK"12207msgstr " OK"1220812209#: builtin/update-index.c:57512210msgid "git update-index [<options>] [--] [<file>...]"12211msgstr "git update-index [<Optionen>] [--] [<Datei>...]"1221212213#: builtin/update-index.c:93012214msgid "continue refresh even when index needs update"12215msgstr ""12216"Aktualisierung fortsetzen, auch wenn der Index aktualisiert werden muss"1221712218#: builtin/update-index.c:93312219msgid "refresh: ignore submodules"12220msgstr "Aktualisierung: ignoriert Submodule"1222112222#: builtin/update-index.c:93612223msgid "do not ignore new files"12224msgstr "keine neuen Dateien ignorieren"1222512226#: builtin/update-index.c:93812227msgid "let files replace directories and vice-versa"12228msgstr "Dateien Verzeichnisse ersetzen lassen, und umgedreht"1222912230#: builtin/update-index.c:94012231msgid "notice files missing from worktree"12232msgstr "fehlende Dateien im Arbeitsverzeichnis beachten"1223312234#: builtin/update-index.c:94212235msgid "refresh even if index contains unmerged entries"12236msgstr ""12237"aktualisieren, auch wenn der Index nicht zusammengeführte Einträge beinhaltet"1223812239#: builtin/update-index.c:94512240msgid "refresh stat information"12241msgstr "Dateiinformationen aktualisieren"1224212243#: builtin/update-index.c:94912244msgid "like --refresh, but ignore assume-unchanged setting"12245msgstr "wie --refresh, ignoriert aber \"assume-unchanged\" Einstellung"1224612247#: builtin/update-index.c:95312248msgid "<mode>,<object>,<path>"12249msgstr "<Modus>,<Objekt>,<Pfad>"1225012251#: builtin/update-index.c:95412252msgid "add the specified entry to the index"12253msgstr "den angegebenen Eintrag zum Commit vormerken"1225412255#: builtin/update-index.c:96312256msgid "mark files as \"not changing\""12257msgstr "diese Datei immer als unverändert betrachten"1225812259#: builtin/update-index.c:96612260msgid "clear assumed-unchanged bit"12261msgstr "\"assumed-unchanged\"-Bit löschen"1226212263#: builtin/update-index.c:96912264msgid "mark files as \"index-only\""12265msgstr "Dateien als \"index-only\" markieren"1226612267#: builtin/update-index.c:97212268msgid "clear skip-worktree bit"12269msgstr "\"skip-worktree\"-Bit löschen"1227012271#: builtin/update-index.c:97512272msgid "add to index only; do not add content to object database"12273msgstr ""12274"die Änderungen nur zum Commit vormerken; Inhalt wird nicht der Objekt-"12275"Datenbank hinzugefügt"1227612277#: builtin/update-index.c:97712278msgid "remove named paths even if present in worktree"12279msgstr ""12280"benannte Pfade löschen, auch wenn sie sich im Arbeitsverzeichnis befinden"1228112282#: builtin/update-index.c:97912283msgid "with --stdin: input lines are terminated by null bytes"12284msgstr "mit --stdin: eingegebene Zeilen sind durch NUL-Bytes abgeschlossen"1228512286#: builtin/update-index.c:98112287msgid "read list of paths to be updated from standard input"12288msgstr "Liste der zu aktualisierenden Pfade von der Standard-Eingabe lesen"1228912290#: builtin/update-index.c:98512291msgid "add entries from standard input to the index"12292msgstr "Einträge von der Standard-Eingabe zum Commit vormerken"1229312294#: builtin/update-index.c:98912295msgid "repopulate stages #2 and #3 for the listed paths"12296msgstr ""12297"wiederholtes Einpflegen der Zustände #2 und #3 für die aufgelisteten Pfade"1229812299#: builtin/update-index.c:99312300msgid "only update entries that differ from HEAD"12301msgstr "nur Einträge aktualisieren, die unterschiedlich zu HEAD sind"1230212303#: builtin/update-index.c:99712304msgid "ignore files missing from worktree"12305msgstr "fehlende Dateien im Arbeitsverzeichnis ignorieren"1230612307#: builtin/update-index.c:100012308msgid "report actions to standard output"12309msgstr "die Aktionen in der Standard-Ausgabe ausgeben"1231012311#: builtin/update-index.c:100212312msgid "(for porcelains) forget saved unresolved conflicts"12313msgstr "(für Fremdprogramme) keine gespeicherten, nicht aufgelöste Konflikte"1231412315#: builtin/update-index.c:100612316msgid "write index in this format"12317msgstr "Index-Datei in diesem Format schreiben"1231812319#: builtin/update-index.c:100812320msgid "enable or disable split index"12321msgstr "Splitting des Index aktivieren oder deaktivieren"1232212323#: builtin/update-index.c:101012324msgid "enable/disable untracked cache"12325msgstr "Cache für unversionierte Dateien aktivieren oder deaktivieren"1232612327#: builtin/update-index.c:101212328msgid "test if the filesystem supports untracked cache"12329msgstr ""12330"prüfen ob das Dateisystem einen Cache für unversionierte Dateien unterstützt"1233112332#: builtin/update-index.c:101412333msgid "enable untracked cache without testing the filesystem"12334msgstr ""12335"Cache für unversionierte Dateien ohne Prüfung des Dateisystems aktivieren"1233612337#: builtin/update-index.c:113412338msgid "Untracked cache disabled"12339msgstr "Cache für unversionierte Dateien deaktiviert"1234012341#: builtin/update-index.c:114612342#, c-format12343msgid "Untracked cache enabled for '%s'"12344msgstr "Cache für unversionierte Dateien für '%s' aktiviert"1234512346#: builtin/update-ref.c:912347msgid "git update-ref [<options>] -d <refname> [<old-val>]"12348msgstr "git update-ref [<Optionen>] -d <Referenzname> [<alter-Wert>]"1234912350#: builtin/update-ref.c:1012351msgid "git update-ref [<options>] <refname> <new-val> [<old-val>]"12352msgstr ""12353"git update-ref [<Optionen>] <Referenzname> <neuer-Wert> [<alter-Wert>]"1235412355#: builtin/update-ref.c:1112356msgid "git update-ref [<options>] --stdin [-z]"12357msgstr "git update-ref [<Optionen>] --stdin [-z]"1235812359#: builtin/update-ref.c:36312360msgid "delete the reference"12361msgstr "diese Referenz löschen"1236212363#: builtin/update-ref.c:36512364msgid "update <refname> not the one it points to"12365msgstr "<Referenzname> aktualisieren, nicht den Verweis"1236612367#: builtin/update-ref.c:36612368msgid "stdin has NUL-terminated arguments"12369msgstr "Standard-Eingabe hat durch NUL-Zeichen abgeschlossene Argumente"1237012371#: builtin/update-ref.c:36712372msgid "read updates from stdin"12373msgstr "Aktualisierungen von der Standard-Eingabe lesen"1237412375#: builtin/update-server-info.c:612376msgid "git update-server-info [--force]"12377msgstr "git update-server-info [--force]"1237812379#: builtin/update-server-info.c:1412380msgid "update the info files from scratch"12381msgstr "die Informationsdateien von Grund auf aktualisieren"1238212383#: builtin/verify-commit.c:1712384msgid "git verify-commit [-v | --verbose] <commit>..."12385msgstr "git verify-commit [-v | --verbose] <Commit>..."1238612387#: builtin/verify-commit.c:7212388msgid "print commit contents"12389msgstr "Commit-Inhalte ausgeben"1239012391#: builtin/verify-commit.c:73 builtin/verify-tag.c:3512392msgid "print raw gpg status output"12393msgstr "unbearbeitete Ausgabe des Status von gpg ausgeben"1239412395#: builtin/verify-pack.c:5412396msgid "git verify-pack [-v | --verbose] [-s | --stat-only] <pack>..."12397msgstr "git verify-pack [-v | --verbose] [-s | --stat-only] <Paket>..."1239812399#: builtin/verify-pack.c:6412400msgid "verbose"12401msgstr "erweiterte Ausgaben"1240212403#: builtin/verify-pack.c:6612404msgid "show statistics only"12405msgstr "nur Statistiken anzeigen"1240612407#: builtin/verify-tag.c:1712408msgid "git verify-tag [-v | --verbose] <tag>..."12409msgstr "git verify-tag [-v | --verbose] <Tag>..."1241012411#: builtin/verify-tag.c:3412412msgid "print tag contents"12413msgstr "Tag-Inhalte ausgeben"1241412415#: builtin/worktree.c:1512416msgid "git worktree add [<options>] <path> [<branch>]"12417msgstr "git worktree add [<Optionen>] <Pfad> [<Branch>]"1241812419#: builtin/worktree.c:1612420msgid "git worktree list [<options>]"12421msgstr "git worktree list [<Optionen>]"1242212423#: builtin/worktree.c:1712424msgid "git worktree lock [<options>] <path>"12425msgstr "git worktree lock [<Optionen>] <Pfad>"1242612427#: builtin/worktree.c:1812428msgid "git worktree prune [<options>]"12429msgstr "git worktree prune [<Optionen>]"1243012431#: builtin/worktree.c:1912432msgid "git worktree unlock <path>"12433msgstr "git worktree unlock <Pfad>"1243412435#: builtin/worktree.c:4212436#, c-format12437msgid "Removing worktrees/%s: not a valid directory"12438msgstr "Lösche worktrees/%s: kein gültiges Verzeichnis"1243912440#: builtin/worktree.c:4812441#, c-format12442msgid "Removing worktrees/%s: gitdir file does not exist"12443msgstr "Lösche worktrees/%s: gitdir-Datei existiert nicht"1244412445#: builtin/worktree.c:5312446#, c-format12447msgid "Removing worktrees/%s: unable to read gitdir file (%s)"12448msgstr "Lösche worktrees/%s: konnte gitdir-Datei (%s) nicht lesen"1244912450#: builtin/worktree.c:6412451#, c-format12452msgid "Removing worktrees/%s: invalid gitdir file"12453msgstr "Lösche worktrees/%s: ungültige gitdir-Datei"1245412455#: builtin/worktree.c:8012456#, c-format12457msgid "Removing worktrees/%s: gitdir file points to non-existent location"12458msgstr "Lösche worktrees/%s: gitdir-Datei verweist auf nicht existierenden Ort"1245912460#: builtin/worktree.c:20412461#, c-format12462msgid "'%s' already exists"12463msgstr "'%s' existiert bereits"1246412465#: builtin/worktree.c:23612466#, c-format12467msgid "could not create directory of '%s'"12468msgstr "Konnte Verzeichnis '%s' nicht erstellen."1246912470#: builtin/worktree.c:27212471#, c-format12472msgid "Preparing %s (identifier %s)"12473msgstr "Bereite %s vor (Identifikation %s)"1247412475#: builtin/worktree.c:32312476msgid "checkout <branch> even if already checked out in other worktree"12477msgstr ""12478"<Branch> auschecken, auch wenn dieser bereits in einem anderen "12479"Arbeitsverzeichnis ausgecheckt ist"1248012481#: builtin/worktree.c:32512482msgid "create a new branch"12483msgstr "neuen Branch erstellen"1248412485#: builtin/worktree.c:32712486msgid "create or reset a branch"12487msgstr "Branch erstellen oder umsetzen"1248812489#: builtin/worktree.c:32912490msgid "populate the new working tree"12491msgstr "das neue Arbeitsverzeichnis auschecken"1249212493#: builtin/worktree.c:33712494msgid "-b, -B, and --detach are mutually exclusive"12495msgstr "-b, -B und --detach schließen sich gegenseitig aus"1249612497#: builtin/worktree.c:47012498msgid "reason for locking"12499msgstr "Sperrgrund"1250012501#: builtin/worktree.c:482 builtin/worktree.c:51512502#, c-format12503msgid "'%s' is not a working tree"12504msgstr "'%s' ist kein Arbeitsverzeichnis"1250512506#: builtin/worktree.c:484 builtin/worktree.c:51712507msgid "The main working tree cannot be locked or unlocked"12508msgstr "Das Hauptarbeitsverzeichnis kann nicht gesperrt oder entsperrt werden."1250912510#: builtin/worktree.c:48912511#, c-format12512msgid "'%s' is already locked, reason: %s"12513msgstr "'%s' ist bereits gesperrt, Grund: %s"1251412515#: builtin/worktree.c:49112516#, c-format12517msgid "'%s' is already locked"12518msgstr "'%s' ist bereits gesperrt"1251912520#: builtin/worktree.c:51912521#, c-format12522msgid "'%s' is not locked"12523msgstr "'%s' ist nicht gesperrt"1252412525#: builtin/write-tree.c:1312526msgid "git write-tree [--missing-ok] [--prefix=<prefix>/]"12527msgstr "git write-tree [--missing-ok] [--prefix=<Präfix>/]"1252812529#: builtin/write-tree.c:2612530msgid "<prefix>/"12531msgstr "<Präfix>/"1253212533#: builtin/write-tree.c:2712534msgid "write tree object for a subdirectory <prefix>"12535msgstr "das \"Tree\"-Objekt für ein Unterverzeichnis <Präfix> schreiben"1253612537#: builtin/write-tree.c:3012538msgid "only useful for debugging"12539msgstr "nur nützlich für Fehlersuche"1254012541#: upload-pack.c:2012542msgid "git upload-pack [<options>] <dir>"12543msgstr "git upload-pack [<Optionen>] <Verzeichnis>"1254412545#: upload-pack.c:83712546msgid "quit after a single request/response exchange"12547msgstr "nach einem einzigen Request/Response-Austausch beenden"1254812549#: upload-pack.c:83912550msgid "exit immediately after initial ref advertisement"12551msgstr "direkt nach der initialen Angabe der Commits beenden"1255212553#: upload-pack.c:84112554msgid "do not try <directory>/.git/ if <directory> is no Git directory"12555msgstr "kein Versuch in <Verzeichnis>/.git/ wenn <Verzeichnis> kein Git-Verzeichnis ist"1255612557#: upload-pack.c:84312558msgid "interrupt transfer after <n> seconds of inactivity"12559msgstr "Übertragung nach <n> Sekunden Inaktivität unterbrechen"1256012561#: credential-cache--daemon.c:27112562msgid "print debugging messages to stderr"12563msgstr "Meldungen zur Fehlersuche in Standard-Fehlerausgabe ausgeben"1256412565#: git.c:1412566msgid ""12567"'git help -a' and 'git help -g' list available subcommands and some\n"12568"concept guides. See 'git help <command>' or 'git help <concept>'\n"12569"to read about a specific subcommand or concept."12570msgstr ""12571"'git help -a' und 'git help -g' listet verfügbare Unterbefehle und\n"12572"einige Anleitungen zu Git-Konzepten auf. Benutzen Sie 'git help <Befehl>'\n"12573"oder 'git help <Konzept>', um mehr über einen spezifischen Befehl oder\n"12574"Konzept zu erfahren."1257512576#: http.c:32312577msgid "Public key pinning not supported with cURL < 7.44.0"12578msgstr ""12579"Das Anheften des öffentlichen Schlüssels wird mit cURL < 7.44.0\n"12580"nicht unterstützt."1258112582#: common-cmds.h:912583msgid "start a working area (see also: git help tutorial)"12584msgstr "Arbeitsverzeichnis anlegen (siehe auch: git help tutorial)"1258512586#: common-cmds.h:1012587msgid "work on the current change (see also: git help everyday)"12588msgstr "an aktuellen Änderungen arbeiten (siehe auch: git help everyday)"1258912590#: common-cmds.h:1112591msgid "examine the history and state (see also: git help revisions)"12592msgstr "Historie und Status untersuchen (siehe auch: git help revisions)"1259312594#: common-cmds.h:1212595msgid "grow, mark and tweak your common history"12596msgstr "Historie erweitern und bearbeiten"1259712598#: common-cmds.h:1312599msgid "collaborate (see also: git help workflows)"12600msgstr "mit anderen zusammenarbeiten (siehe auch: git help workflows)"1260112602#: common-cmds.h:1712603msgid "Add file contents to the index"12604msgstr "Dateiinhalte zum Commit vormerken"1260512606#: common-cmds.h:1812607msgid "Use binary search to find the commit that introduced a bug"12608msgstr ""12609"Binärsuche verwenden, um den Commit zu finden, der einen Fehler verursacht "12610"hat"1261112612#: common-cmds.h:1912613msgid "List, create, or delete branches"12614msgstr "Branches anzeigen, erstellen oder entfernen"1261512616#: common-cmds.h:2012617msgid "Switch branches or restore working tree files"12618msgstr "Branches wechseln oder Dateien im Arbeitsverzeichnis wiederherstellen"1261912620#: common-cmds.h:2112621msgid "Clone a repository into a new directory"12622msgstr "ein Repository in einem neuen Verzeichnis klonen"1262312624#: common-cmds.h:2212625msgid "Record changes to the repository"12626msgstr "Änderungen in das Repository eintragen"1262712628#: common-cmds.h:2312629msgid "Show changes between commits, commit and working tree, etc"12630msgstr ""12631"Änderungen zwischen Commits, Commit und Arbeitsverzeichnis, etc. anzeigen"1263212633#: common-cmds.h:2412634msgid "Download objects and refs from another repository"12635msgstr "Objekte und Referenzen von einem anderen Repository herunterladen"1263612637#: common-cmds.h:2512638msgid "Print lines matching a pattern"12639msgstr "Zeilen darstellen, die einem Muster entsprechen"1264012641#: common-cmds.h:2612642msgid "Create an empty Git repository or reinitialize an existing one"12643msgstr ""12644"ein leeres Git-Repository erstellen oder ein bestehendes neuinitialisieren"1264512646#: common-cmds.h:2712647msgid "Show commit logs"12648msgstr "Commit-Historie anzeigen"1264912650#: common-cmds.h:2812651msgid "Join two or more development histories together"12652msgstr "zwei oder mehr Entwicklungszweige zusammenführen"1265312654#: common-cmds.h:2912655msgid "Move or rename a file, a directory, or a symlink"12656msgstr ""12657"eine Datei, ein Verzeichnis, oder eine symbolische Verknüpfung verschieben "12658"oder umbenennen"1265912660#: common-cmds.h:3012661msgid "Fetch from and integrate with another repository or a local branch"12662msgstr ""12663"Objekte von einem externen Repository anfordern und sie mit einem anderen "12664"Repository oder einem lokalen Branch zusammenführen"1266512666#: common-cmds.h:3112667msgid "Update remote refs along with associated objects"12668msgstr "Remote-Referenzen mitsamt den verbundenen Objekten aktualisieren"1266912670#: common-cmds.h:3212671msgid "Reapply commits on top of another base tip"12672msgstr "Wiederholtes Anwenden von Commits auf anderem Basis-Commit"1267312674#: common-cmds.h:3312675msgid "Reset current HEAD to the specified state"12676msgstr "aktuellen HEAD zu einem spezifizierten Zustand setzen"1267712678#: common-cmds.h:3412679msgid "Remove files from the working tree and from the index"12680msgstr "Dateien im Arbeitsverzeichnis und vom Index löschen"1268112682#: common-cmds.h:3512683msgid "Show various types of objects"12684msgstr "verschiedene Arten von Objekten anzeigen"1268512686#: common-cmds.h:3612687msgid "Show the working tree status"12688msgstr "den Zustand des Arbeitsverzeichnisses anzeigen"1268912690#: common-cmds.h:3712691msgid "Create, list, delete or verify a tag object signed with GPG"12692msgstr ""12693"ein mit GPG signiertes Tag-Objekt erzeugen, auflisten, löschen oder "12694"verifizieren."1269512696#: parse-options.h:14512697msgid "expiry-date"12698msgstr "Verfallsdatum"1269912700#: parse-options.h:16012701msgid "no-op (backward compatibility)"12702msgstr "Kein Effekt (Rückwärtskompatibilität)"1270312704#: parse-options.h:23712705msgid "be more verbose"12706msgstr "erweiterte Ausgaben"1270712708#: parse-options.h:23912709msgid "be more quiet"12710msgstr "weniger Ausgaben"1271112712#: parse-options.h:24512713msgid "use <n> digits to display SHA-1s"12714msgstr "benutze <n> Ziffern zur Anzeige von SHA-1s"1271512716#: rerere.h:4012717msgid "update the index with reused conflict resolution if possible"12718msgstr ""12719"Index, wenn möglich, mit wiederverwendeter Konfliktauflösung aktualisieren"1272012721#: git-bisect.sh:5412722msgid "You need to start by \"git bisect start\""12723msgstr "Sie müssen mit \"git bisect start\" beginnen."1272412725#. TRANSLATORS: Make sure to include [Y] and [n] in your12726#. translation. The program will only accept English input12727#. at this point.12728#: git-bisect.sh:6012729msgid "Do you want me to do it for you [Y/n]? "12730msgstr "Wollen Sie, dass ich es für Sie mache [Y/n]? "1273112732#: git-bisect.sh:12112733#, sh-format12734msgid "unrecognised option: '$arg'"12735msgstr "nicht erkannte Option: '$arg'"1273612737#: git-bisect.sh:12512738#, sh-format12739msgid "'$arg' does not appear to be a valid revision"12740msgstr "'$arg' scheint kein gültiger Commit zu sein"1274112742#: git-bisect.sh:15412743msgid "Bad HEAD - I need a HEAD"12744msgstr "Ungültiger HEAD - HEAD wird benötigt"1274512746#: git-bisect.sh:16712747#, sh-format12748msgid ""12749"Checking out '$start_head' failed. Try 'git bisect reset <valid-branch>'."12750msgstr ""12751"Auschecken von '$start_head' fehlgeschlagen. Versuchen Sie 'git bisect reset "12752"<gültiger-Branch>'."1275312754#: git-bisect.sh:17712755msgid "won't bisect on cg-seek'ed tree"12756msgstr ""12757"binäre Suche auf einem durch 'cg-seek' geändertem Verzeichnis nicht möglich"1275812759#: git-bisect.sh:18112760msgid "Bad HEAD - strange symbolic ref"12761msgstr "Ungültiger HEAD - merkwürdige symbolische Referenz"1276212763#: git-bisect.sh:23312764#, sh-format12765msgid "Bad bisect_write argument: $state"12766msgstr "Ungültiges \"bisect_write\" Argument: $state"1276712768#: git-bisect.sh:26212769#, sh-format12770msgid "Bad rev input: $arg"12771msgstr "Ungültige Referenz-Eingabe: $arg"1277212773#: git-bisect.sh:28112774#, sh-format12775msgid "Bad rev input: $bisected_head"12776msgstr "Ungültige Referenz-Eingabe: $bisected_head"1277712778#: git-bisect.sh:29012779#, sh-format12780msgid "Bad rev input: $rev"12781msgstr "Ungültige Referenz-Eingabe: $rev"1278212783#: git-bisect.sh:29912784#, sh-format12785msgid "'git bisect $TERM_BAD' can take only one argument."12786msgstr "'git bisect $TERM_BAD' kann nur ein Argument entgegennehmen."1278712788#: git-bisect.sh:32212789#, sh-format12790msgid "Warning: bisecting only with a $TERM_BAD commit."12791msgstr "Warnung: binäre Suche nur mit einem $TERM_BAD Commit."1279212793#. TRANSLATORS: Make sure to include [Y] and [n] in your12794#. translation. The program will only accept English input12795#. at this point.12796#: git-bisect.sh:32812797msgid "Are you sure [Y/n]? "12798msgstr "Sind Sie sicher [Y/n]? "1279912800#: git-bisect.sh:34012801#, sh-format12802msgid ""12803"You need to give me at least one $bad_syn and one $good_syn revision.\n"12804"(You can use \"git bisect $bad_syn\" and \"git bisect $good_syn\" for that.)"12805msgstr ""12806"Sie müssen mindestens einen \"$bad_syn\" und einen \"$good_syn\" Commit "12807"angeben.\n"12808"(Sie können dafür \"git bisect $bad_syn\" und \"git bisect $good_syn\" "12809"benutzen.)"1281012811#: git-bisect.sh:34312812#, sh-format12813msgid ""12814"You need to start by \"git bisect start\".\n"12815"You then need to give me at least one $good_syn and one $bad_syn revision.\n"12816"(You can use \"git bisect $bad_syn\" and \"git bisect $good_syn\" for that.)"12817msgstr ""12818"Sie müssen mit \"git bisect start\" beginnen.\n"12819"Danach müssen Sie mindestens einen \"$good_syn\" und einen \"$bad_syn\" "12820"Commit angeben.\n"12821"(Sie können dafür \"git bisect $bad_syn\" und \"git bisect $good_syn\" "12822"benutzen.)"1282312824#: git-bisect.sh:414 git-bisect.sh:54612825msgid "We are not bisecting."12826msgstr "keine binäre Suche im Gange"1282712828#: git-bisect.sh:42112829#, sh-format12830msgid "'$invalid' is not a valid commit"12831msgstr "'$invalid' ist kein gültiger Commit"1283212833#: git-bisect.sh:43012834#, sh-format12835msgid ""12836"Could not check out original HEAD '$branch'.\n"12837"Try 'git bisect reset <commit>'."12838msgstr ""12839"Konnte den ursprünglichen HEAD '$branch' nicht auschecken.\n"12840"Versuchen Sie 'git bisect reset <Commit>'."1284112842#: git-bisect.sh:45812843msgid "No logfile given"12844msgstr "Keine Log-Datei gegeben"1284512846#: git-bisect.sh:45912847#, sh-format12848msgid "cannot read $file for replaying"12849msgstr "kann $file nicht für das Abspielen lesen"1285012851#: git-bisect.sh:48012852msgid "?? what are you talking about?"12853msgstr "?? Was reden Sie da?"1285412855#: git-bisect.sh:49212856#, sh-format12857msgid "running $command"12858msgstr "führe $command aus"1285912860#: git-bisect.sh:49912861#, sh-format12862msgid ""12863"bisect run failed:\n"12864"exit code $res from '$command' is < 0 or >= 128"12865msgstr ""12866"'bisect run' fehlgeschlagen:\n"12867"Rückkehrwert $res von '$command' ist < 0 oder >= 128"1286812869#: git-bisect.sh:52512870msgid "bisect run cannot continue any more"12871msgstr "'bisect run' kann nicht mehr fortgesetzt werden"1287212873#: git-bisect.sh:53112874#, sh-format12875msgid ""12876"bisect run failed:\n"12877"'bisect_state $state' exited with error code $res"12878msgstr ""12879"'bisect run' fehlgeschlagen:\n"12880"'bisect_state $state' wurde mit Fehlerwert $res beendet"1288112882#: git-bisect.sh:53812883msgid "bisect run success"12884msgstr "'bisect run' erfolgreich ausgeführt"1288512886#: git-bisect.sh:56512887msgid "please use two different terms"12888msgstr "Bitte verwenden Sie zwei verschiedene Begriffe."1288912890#: git-bisect.sh:57512891#, sh-format12892msgid "'$term' is not a valid term"12893msgstr "'$term' ist kein gültiger Begriff"1289412895#: git-bisect.sh:57812896#, sh-format12897msgid "can't use the builtin command '$term' as a term"12898msgstr "Kann eingebauten Befehl '$term' nicht als Begriff verwenden"1289912900#: git-bisect.sh:587 git-bisect.sh:59312901#, sh-format12902msgid "can't change the meaning of term '$term'"12903msgstr "Kann Bedeutung von '$term' nicht ändern."1290412905#: git-bisect.sh:60612906#, sh-format12907msgid "Invalid command: you're currently in a $TERM_BAD/$TERM_GOOD bisect."12908msgstr ""12909"Ungültiger Befehl: Sie sind gerade bei einer binären $TERM_BAD/$TERM_GOOD "12910"Suche."1291112912#: git-bisect.sh:63612913msgid "no terms defined"12914msgstr "Keine Begriffe definiert."1291512916#: git-bisect.sh:65312917#, sh-format12918msgid ""12919"invalid argument $arg for 'git bisect terms'.\n"12920"Supported options are: --term-good|--term-old and --term-bad|--term-new."12921msgstr ""12922"Ungültiges Argument $arg für 'git bisect terms'.\n"12923"Unterstützte Optionen sind: --term-good|--term-old und --term-bad|--term-new."1292412925#: git-merge-octopus.sh:4612926msgid ""12927"Error: Your local changes to the following files would be overwritten by "12928"merge"12929msgstr ""12930"Fehler Ihre lokalen Änderungen in den folgenden Dateien würden durch den Merge\n"12931"überschrieben werden"1293212933#: git-merge-octopus.sh:6112934msgid "Automated merge did not work."12935msgstr "Automatischer Merge hat nicht funktioniert."1293612937#: git-merge-octopus.sh:6212938msgid "Should not be doing an Octopus."12939msgstr "Sollte keinen Octopus-Merge ausführen."1294012941#: git-merge-octopus.sh:7312942#, sh-format12943msgid "Unable to find common commit with $pretty_name"12944msgstr "Konnte keinen gemeinsamen Commit mit $pretty_name finden."1294512946#: git-merge-octopus.sh:7712947#, sh-format12948msgid "Already up-to-date with $pretty_name"12949msgstr "Bereits aktuell mit $pretty_name"1295012951#: git-merge-octopus.sh:8912952#, sh-format12953msgid "Fast-forwarding to: $pretty_name"12954msgstr "Spule vor zu: $pretty_name"1295512956#: git-merge-octopus.sh:9712957#, sh-format12958msgid "Trying simple merge with $pretty_name"12959msgstr "Versuche einfachen Merge mit $pretty_name"1296012961#: git-merge-octopus.sh:10212962msgid "Simple merge did not work, trying automatic merge."12963msgstr "Einfacher Merge hat nicht funktioniert, versuche automatischen Merge."1296412965#: git-rebase.sh:5612966msgid ""12967"When you have resolved this problem, run \"git rebase --continue\".\n"12968"If you prefer to skip this patch, run \"git rebase --skip\" instead.\n"12969"To check out the original branch and stop rebasing, run \"git rebase --abort"12970"\"."12971msgstr ""12972"Wenn Sie das Problem aufgelöst haben, führen Sie \"git rebase --continue\" "12973"aus.\n"12974"Falls Sie diesen Patch auslassen möchten, führen Sie stattdessen \"git "12975"rebase --skip\" aus.\n"12976"Um den ursprünglichen Branch wiederherzustellen und den Rebase abzubrechen,\n"12977"führen Sie \"git rebase --abort\" aus."1297812979#: git-rebase.sh:156 git-rebase.sh:39512980#, sh-format12981msgid "Could not move back to $head_name"12982msgstr "Konnte nicht zu $head_name zurückgehen"1298312984#: git-rebase.sh:16712985msgid "Applied autostash."12986msgstr "Automatischen Stash angewendet."1298712988#: git-rebase.sh:17012989#, sh-format12990msgid "Cannot store $stash_sha1"12991msgstr "Kann $stash_sha1 nicht speichern."1299212993#: git-rebase.sh:17112994msgid ""12995"Applying autostash resulted in conflicts.\n"12996"Your changes are safe in the stash.\n"12997"You can run \"git stash pop\" or \"git stash drop\" at any time.\n"12998msgstr ""12999"Anwendung des automatischen Stash resultierte in Konflikten.\n"13000"Ihre Änderungen sind im Stash sicher.\n"13001"Sie können jederzeit \"git stash pop\" oder \"git stash drop\" ausführen.\n"1300213003#: git-rebase.sh:21013004msgid "The pre-rebase hook refused to rebase."13005msgstr "Der \"pre-rebase hook\" hat den Rebase zurückgewiesen."1300613007#: git-rebase.sh:21513008msgid "It looks like git-am is in progress. Cannot rebase."13009msgstr "\"git-am\" scheint im Gange zu sein. Kann Rebase nicht durchführen."1301013011#: git-rebase.sh:35613012msgid "No rebase in progress?"13013msgstr "Kein Rebase im Gange?"1301413015#: git-rebase.sh:36713016msgid "The --edit-todo action can only be used during interactive rebase."13017msgstr ""13018"Die --edit-todo Aktion kann nur während eines interaktiven Rebase verwendet "13019"werden."1302013021#: git-rebase.sh:37413022msgid "Cannot read HEAD"13023msgstr "Kann HEAD nicht lesen"1302413025#: git-rebase.sh:37713026msgid ""13027"You must edit all merge conflicts and then\n"13028"mark them as resolved using git add"13029msgstr ""13030"Sie müssen alle Merge-Konflikte editieren und diese dann\n"13031"mittels \"git add\" als aufgelöst markieren"1303213033#: git-rebase.sh:41413034#, sh-format13035msgid ""13036"It seems that there is already a $state_dir_base directory, and\n"13037"I wonder if you are in the middle of another rebase. If that is the\n"13038"case, please try\n"13039"\t$cmd_live_rebase\n"13040"If that is not the case, please\n"13041"\t$cmd_clear_stale_rebase\n"13042"and run me again. I am stopping in case you still have something\n"13043"valuable there."13044msgstr ""13045"Es sieht so aus, als ob es das Verzeichnis $state_dir_base bereits gibt\n"13046"und es könnte ein anderer Rebase im Gange sein. Wenn das der Fall ist,\n"13047"probieren Sie bitte\n"13048"\t$cmd_live_rebase\n"13049"Wenn das nicht der Fall ist, probieren Sie bitte\n"13050"\t$cmd_clear_stale_rebase\n"13051"und führen Sie diesen Befehl nochmal aus. Es wird angehalten, falls noch\n"13052"etwas Schützenswertes vorhanden ist."1305313054#: git-rebase.sh:46513055#, sh-format13056msgid "invalid upstream $upstream_name"13057msgstr "ungültiger Upstream-Branch $upstream_name"1305813059#: git-rebase.sh:48913060#, sh-format13061msgid "$onto_name: there are more than one merge bases"13062msgstr "$onto_name: es gibt mehr als eine Merge-Basis"1306313064#: git-rebase.sh:492 git-rebase.sh:49613065#, sh-format13066msgid "$onto_name: there is no merge base"13067msgstr "$onto_name: es gibt keine Merge-Basis"1306813069#: git-rebase.sh:50113070#, sh-format13071msgid "Does not point to a valid commit: $onto_name"13072msgstr "$onto_name zeigt auf keinen gültigen Commit"1307313074#: git-rebase.sh:52413075#, sh-format13076msgid "fatal: no such branch: $branch_name"13077msgstr "fatal: Branch $branch_name nicht gefunden"1307813079#: git-rebase.sh:55713080msgid "Cannot autostash"13081msgstr "Kann automatischen Stash nicht erzeugen."1308213083#: git-rebase.sh:56213084#, sh-format13085msgid "Created autostash: $stash_abbrev"13086msgstr "Automatischen Stash erzeugt: $stash_abbrev"1308713088#: git-rebase.sh:56613089msgid "Please commit or stash them."13090msgstr "Bitte committen Sie die Änderungen oder benutzen Sie \"stash\"."1309113092#: git-rebase.sh:58613093#, sh-format13094msgid "Current branch $branch_name is up to date."13095msgstr "Aktueller Branch $branch_name ist auf dem neuesten Stand."1309613097#: git-rebase.sh:59013098#, sh-format13099msgid "Current branch $branch_name is up to date, rebase forced."13100msgstr ""13101"Aktueller Branch $branch_name ist auf dem neuesten Stand, Rebase erzwungen."1310213103#: git-rebase.sh:60113104#, sh-format13105msgid "Changes from $mb to $onto:"13106msgstr "Änderungen von $mb zu $onto:"1310713108#: git-rebase.sh:61013109msgid "First, rewinding head to replay your work on top of it..."13110msgstr ""13111"Zunächst wird der Branch zurückgespult, um Ihre Änderungen\n"13112"darauf neu anzuwenden ..."1311313114#: git-rebase.sh:62013115#, sh-format13116msgid "Fast-forwarded $branch_name to $onto_name."13117msgstr "$branch_name zu $onto_name vorgespult."1311813119#: git-stash.sh:5013120msgid "git stash clear with parameters is unimplemented"13121msgstr "git stash clear mit Parametern ist nicht implementiert"1312213123#: git-stash.sh:7313124msgid "You do not have the initial commit yet"13125msgstr "Sie haben bisher noch keinen initialen Commit"1312613127#: git-stash.sh:8813128msgid "Cannot save the current index state"13129msgstr "Kann den aktuellen Zustand des Index nicht speichern"1313013131#: git-stash.sh:123 git-stash.sh:13613132msgid "Cannot save the current worktree state"13133msgstr "Kann den aktuellen Zustand des Arbeitsverzeichnisses nicht speichern"1313413135#: git-stash.sh:14013136msgid "No changes selected"13137msgstr "Keine Änderungen ausgewählt"1313813139#: git-stash.sh:14313140msgid "Cannot remove temporary index (can't happen)"13141msgstr "Kann temporären Index nicht löschen (kann nicht passieren)"1314213143#: git-stash.sh:15613144msgid "Cannot record working tree state"13145msgstr "Kann Zustand des Arbeitsverzeichnisses nicht aufzeichnen"1314613147#: git-stash.sh:18813148#, sh-format13149msgid "Cannot update $ref_stash with $w_commit"13150msgstr "Kann $ref_stash nicht mit $w_commit aktualisieren."1315113152#. TRANSLATORS: $option is an invalid option, like13153#. `--blah-blah'. The 7 spaces at the beginning of the13154#. second line correspond to "error: ". So you should line13155#. up the second line with however many characters the13156#. translation of "error: " takes in your language. E.g. in13157#. English this is:13158#.13159#. $ git stash save --blah-blah 2>&1 | head -n 213160#. error: unknown option for 'stash save': --blah-blah13161#. To provide a message, use git stash save -- '--blah-blah'13162#: git-stash.sh:23813163#, sh-format13164msgid ""13165"error: unknown option for 'stash save': $option\n"13166" To provide a message, use git stash save -- '$option'"13167msgstr ""13168"Fehler: unbekannte Option für 'stash save': $option\n"13169" Um eine Beschreibung anzugeben, benutzen Sie \"git stash save -- "13170"'$option'\""1317113172#: git-stash.sh:25913173msgid "No local changes to save"13174msgstr "Keine lokalen Änderungen zum Speichern"1317513176#: git-stash.sh:26313177msgid "Cannot initialize stash"13178msgstr "Kann \"stash\" nicht initialisieren"1317913180#: git-stash.sh:26713181msgid "Cannot save the current status"13182msgstr "Kann den aktuellen Status nicht speichern"1318313184#: git-stash.sh:26813185#, sh-format13186msgid "Saved working directory and index state $stash_msg"13187msgstr "Speicherte Arbeitsverzeichnis und Index-Status $stash_msg"1318813189#: git-stash.sh:28513190msgid "Cannot remove worktree changes"13191msgstr "Kann Änderungen im Arbeitsverzeichnis nicht löschen"1319213193#: git-stash.sh:40413194#, sh-format13195msgid "unknown option: $opt"13196msgstr "unbekannte Option: $opt"1319713198#: git-stash.sh:41413199msgid "No stash found."13200msgstr "Kein Stash-Eintrag gefunden."1320113202#: git-stash.sh:42113203#, sh-format13204msgid "Too many revisions specified: $REV"13205msgstr "Zu viele Commits angegeben: $REV"1320613207#: git-stash.sh:42713208#, sh-format13209msgid "$reference is not a valid reference"13210msgstr "$reference ist keine gültige Referenz"1321113212#: git-stash.sh:45513213#, sh-format13214msgid "'$args' is not a stash-like commit"13215msgstr "'$args' ist kein \"stash\"-artiger Commit"1321613217#: git-stash.sh:46613218#, sh-format13219msgid "'$args' is not a stash reference"13220msgstr "'$args' ist keine \"stash\"-Referenz"1322113222#: git-stash.sh:47413223msgid "unable to refresh index"13224msgstr "Konnte den Index nicht aktualisieren."1322513226#: git-stash.sh:47813227msgid "Cannot apply a stash in the middle of a merge"13228msgstr "Kann \"stash\" nicht anwenden, solang ein Merge im Gange ist"1322913230#: git-stash.sh:48613231msgid "Conflicts in index. Try without --index."13232msgstr "Konflikte im Index. Versuchen Sie es ohne --index."1323313234#: git-stash.sh:48813235msgid "Could not save index tree"13236msgstr "Konnte Index-Verzeichnis nicht speichern"1323713238#: git-stash.sh:52213239msgid "Cannot unstage modified files"13240msgstr "Kann geänderte Dateien nicht aus dem Index entfernen"1324113242#: git-stash.sh:53713243msgid "Index was not unstashed."13244msgstr "Index wurde nicht aus dem Stash zurückgeladen."1324513246#: git-stash.sh:55113247msgid "The stash is kept in case you need it again."13248msgstr "Der Stash wird behalten, im Falle Sie benötigen diesen nochmal."1324913250#: git-stash.sh:56013251#, sh-format13252msgid "Dropped ${REV} ($s)"13253msgstr "Gelöscht ${REV} ($s)"1325413255#: git-stash.sh:56113256#, sh-format13257msgid "${REV}: Could not drop stash entry"13258msgstr "${REV}: Konnte \"stash\"-Eintrag nicht löschen"1325913260#: git-stash.sh:56913261msgid "No branch name specified"13262msgstr "Kein Branchname spezifiziert"1326313264#: git-stash.sh:64113265msgid "(To restore them type \"git stash apply\")"13266msgstr "(Zur Wiederherstellung geben Sie \"git stash apply\" ein)"1326713268#: git-submodule.sh:18313269msgid "Relative path can only be used from the toplevel of the working tree"13270msgstr ""13271"Relative Pfade können nur von der obersten Ebene des Arbeitsverzeichnisses "13272"benutzt werden."1327313274#: git-submodule.sh:19313275#, sh-format13276msgid "repo URL: '$repo' must be absolute or begin with ./|../"13277msgstr "repo URL: '$repo' muss absolut sein oder mit ./|../ beginnen"1327813279#: git-submodule.sh:21013280#, sh-format13281msgid "'$sm_path' already exists in the index"13282msgstr "'$sm_path' ist bereits zum Commit vorgemerkt"1328313284#: git-submodule.sh:21413285#, sh-format13286msgid ""13287"The following path is ignored by one of your .gitignore files:\n"13288"$sm_path\n"13289"Use -f if you really want to add it."13290msgstr ""13291"Der folgende Pfad wird durch eine Ihrer \".gitignore\" Dateien ignoriert:\n"13292"$sm_path\n"13293"Benutzen Sie -f wenn Sie diesen wirklich hinzufügen möchten."1329413295#: git-submodule.sh:23213296#, sh-format13297msgid "Adding existing repo at '$sm_path' to the index"13298msgstr "Füge existierendes Repository in '$sm_path' dem Index hinzu."1329913300#: git-submodule.sh:23413301#, sh-format13302msgid "'$sm_path' already exists and is not a valid git repo"13303msgstr "'$sm_path' existiert bereits und ist kein gültiges Git-Repository"1330413305#: git-submodule.sh:24213306#, sh-format13307msgid "A git directory for '$sm_name' is found locally with remote(s):"13308msgstr ""13309"Ein Git-Verzeichnis für '$sm_name' wurde lokal gefunden mit den Remote-"13310"Repositories:"1331113312#: git-submodule.sh:24413313#, sh-format13314msgid ""13315"If you want to reuse this local git directory instead of cloning again from\n"13316" $realrepo\n"13317"use the '--force' option. If the local git directory is not the correct "13318"repo\n"13319"or you are unsure what this means choose another name with the '--name' "13320"option."13321msgstr ""13322"Wenn Sie das lokale Git-Verzeichnis wiederverwenden wollen, anstatt erneut von\n"13323" $realrepo\n"13324"zu klonen, benutzen Sie die Option '--force'. Wenn das lokale Git-Verzeichnis\n"13325"nicht das korrekte Repository ist oder Sie unsicher sind, was das bedeutet,\n"13326"wählen Sie einen anderen Namen mit der Option '--name'."1332713328#: git-submodule.sh:25013329#, sh-format13330msgid "Reactivating local git directory for submodule '$sm_name'."13331msgstr "Reaktiviere lokales Git-Verzeichnis für Submodul '$sm_name'."1333213333#: git-submodule.sh:26213334#, sh-format13335msgid "Unable to checkout submodule '$sm_path'"13336msgstr "Kann Submodul '$sm_path' nicht auschecken"1333713338#: git-submodule.sh:26713339#, sh-format13340msgid "Failed to add submodule '$sm_path'"13341msgstr "Hinzufügen von Submodul '$sm_path' fehlgeschlagen"1334213343#: git-submodule.sh:27613344#, sh-format13345msgid "Failed to register submodule '$sm_path'"13346msgstr "Fehler beim Eintragen von Submodul '$sm_path' in die Konfiguration."1334713348#: git-submodule.sh:32313349#, sh-format13350msgid "Entering '$displaypath'"13351msgstr "Betrete '$displaypath'"1335213353#: git-submodule.sh:34313354#, sh-format13355msgid "Stopping at '$displaypath'; script returned non-zero status."13356msgstr "Stoppe bei '$displaypath'; Skript gab nicht-Null Status zurück."1335713358#: git-submodule.sh:41413359#, sh-format13360msgid "pathspec and --all are incompatible"13361msgstr "Pfadspezifikationen und --all sind inkompatibel."1336213363#: git-submodule.sh:41913364#, sh-format13365msgid "Use '--all' if you really want to deinitialize all submodules"13366msgstr ""13367"Verwenden Sie '--all', wenn Sie wirklich alle Submodule deinitialisieren\n"13368"möchten."1336913370#: git-submodule.sh:43913371#, sh-format13372msgid ""13373"Submodule work tree '$displaypath' contains a .git directory\n"13374"(use 'rm -rf' if you really want to remove it including all of its history)"13375msgstr ""13376"Arbeitsverzeichnis von Submodul in '$displaypath' enthält ein .git-Verzeichnis\n"13377"(benutzen Sie 'rm -rf' wenn Sie dieses wirklich mitsamt seiner Historie löschen\n"13378"möchten)"1337913380#: git-submodule.sh:44713381#, sh-format13382msgid ""13383"Submodule work tree '$displaypath' contains local modifications; use '-f' to "13384"discard them"13385msgstr ""13386"Arbeitsverzeichnis von Submodul in '$displaypath' enthält lokale Änderungen; "13387"verwenden Sie '-f', um diese zu verwerfen"1338813389#: git-submodule.sh:45013390#, sh-format13391msgid "Cleared directory '$displaypath'"13392msgstr "Verzeichnis '$displaypath' bereinigt."1339313394#: git-submodule.sh:45113395#, sh-format13396msgid "Could not remove submodule work tree '$displaypath'"13397msgstr ""13398"Konnte Arbeitsverzeichnis des Submoduls in '$displaypath' nicht löschen."1339913400#: git-submodule.sh:45413401#, sh-format13402msgid "Could not create empty submodule directory '$displaypath'"13403msgstr ""13404"Konnte kein leeres Verzeichnis für Submodul in '$displaypath' erstellen."1340513406#: git-submodule.sh:46313407#, sh-format13408msgid "Submodule '$name' ($url) unregistered for path '$displaypath'"13409msgstr ""13410"Submodul '$name' ($url) für Pfad '$displaypath' wurde aus der Konfiguration "13411"entfernt."1341213413#: git-submodule.sh:61213414#, sh-format13415msgid "Unable to find current revision in submodule path '$displaypath'"13416msgstr "Konnte aktuellen Commit in Submodul-Pfad '$displaypath' nicht finden."1341713418#: git-submodule.sh:62213419#, sh-format13420msgid "Unable to fetch in submodule path '$sm_path'"13421msgstr "Konnte \"fetch\" in Submodul-Pfad '$sm_path' nicht ausführen"1342213423#: git-submodule.sh:62713424#, sh-format13425msgid ""13426"Unable to find current ${remote_name}/${branch} revision in submodule path "13427"'$sm_path'"13428msgstr ""13429"Konnte aktuellen Commit von ${remote_name}/${branch} in Submodul-Pfad\n"13430"'$sm_path' nicht finden."1343113432#: git-submodule.sh:64513433#, sh-format13434msgid "Unable to fetch in submodule path '$displaypath'"13435msgstr "Konnte \"fetch\" in Submodul-Pfad '$displaypath' nicht ausführen"1343613437#: git-submodule.sh:65113438#, sh-format13439msgid ""13440"Fetched in submodule path '$displaypath', but it did not contain $sha1. "13441"Direct fetching of that commit failed."13442msgstr ""13443"\"fetch\" in Submodul-Pfad '$displaypath' ausgeführt, aber $sha1 nicht\n"13444"enthalten. Direktes Anfordern dieses Commits ist fehlgeschlagen."1344513446#: git-submodule.sh:65813447#, sh-format13448msgid "Unable to checkout '$sha1' in submodule path '$displaypath'"13449msgstr "Konnte '$sha1' in Submodul-Pfad '$displaypath' nicht auschecken."1345013451#: git-submodule.sh:65913452#, sh-format13453msgid "Submodule path '$displaypath': checked out '$sha1'"13454msgstr "Submodul-Pfad: '$displaypath': '$sha1' ausgecheckt"1345513456#: git-submodule.sh:66313457#, sh-format13458msgid "Unable to rebase '$sha1' in submodule path '$displaypath'"13459msgstr "Rebase auf '$sha1' in Submodul-Pfad '$displaypath' nicht möglich"1346013461#: git-submodule.sh:66413462#, sh-format13463msgid "Submodule path '$displaypath': rebased into '$sha1'"13464msgstr "Submodul-Pfad '$displaypath': Rebase auf '$sha1'"1346513466#: git-submodule.sh:66913467#, sh-format13468msgid "Unable to merge '$sha1' in submodule path '$displaypath'"13469msgstr "Merge von '$sha1' in Submodul-Pfad '$displaypath' fehlgeschlagen"1347013471#: git-submodule.sh:67013472#, sh-format13473msgid "Submodule path '$displaypath': merged in '$sha1'"13474msgstr "Submodul-Pfad '$displaypath': zusammengeführt in '$sha1'"1347513476#: git-submodule.sh:67513477#, sh-format13478msgid "Execution of '$command $sha1' failed in submodule path '$displaypath'"13479msgstr ""13480"Ausführung von '$command $sha1' in Submodul-Pfad '$displaypath' "13481"fehlgeschlagen"1348213483#: git-submodule.sh:67613484#, sh-format13485msgid "Submodule path '$displaypath': '$command $sha1'"13486msgstr "Submodul-Pfad '$displaypath': '$command $sha1'"1348713488#: git-submodule.sh:70713489#, sh-format13490msgid "Failed to recurse into submodule path '$displaypath'"13491msgstr "Fehler bei Rekursion in Submodul-Pfad '$displaypath'"1349213493#: git-submodule.sh:81513494msgid "The --cached option cannot be used with the --files option"13495msgstr ""13496"Die Optionen --cached und --files können nicht gemeinsam verwendet werden."1349713498#: git-submodule.sh:86713499#, sh-format13500msgid "unexpected mode $mod_dst"13501msgstr "unerwarteter Modus $mod_dst"1350213503#: git-submodule.sh:88713504#, sh-format13505msgid " Warn: $display_name doesn't contain commit $sha1_src"13506msgstr " Warnung: $display_name beinhaltet nicht Commit $sha1_src"1350713508#: git-submodule.sh:89013509#, sh-format13510msgid " Warn: $display_name doesn't contain commit $sha1_dst"13511msgstr " Warnung: $display_name beinhaltet nicht Commit $sha1_dst"1351213513#: git-submodule.sh:89313514#, sh-format13515msgid " Warn: $display_name doesn't contain commits $sha1_src and $sha1_dst"13516msgstr ""13517" Warnung: $display_name beinhaltet nicht die Commits $sha1_src und $sha1_dst"1351813519#: git-submodule.sh:91813520msgid "blob"13521msgstr "Blob"1352213523#: git-submodule.sh:104013524#, sh-format13525msgid "Failed to recurse into submodule path '$sm_path'"13526msgstr "Fehler bei Rekursion in Submodul-Pfad '$sm_path'"1352713528#: git-submodule.sh:110713529#, sh-format13530msgid "Synchronizing submodule url for '$displaypath'"13531msgstr "Synchronisiere Submodul-URL für '$displaypath'"1353213533#: git-parse-remote.sh:8913534#, sh-format13535msgid "See git-${cmd}(1) for details."13536msgstr "Siehe git-${cmd}(1) für weitere Details."1353713538#: git-rebase--interactive.sh:13113539#, sh-format13540msgid "Rebasing ($new_count/$total)"13541msgstr "Führe Rebase aus ($new_count/$total)"1354213543#: git-rebase--interactive.sh:14713544msgid ""13545"\n"13546"Commands:\n"13547" p, pick = use commit\n"13548" r, reword = use commit, but edit the commit message\n"13549" e, edit = use commit, but stop for amending\n"13550" s, squash = use commit, but meld into previous commit\n"13551" f, fixup = like \"squash\", but discard this commit's log message\n"13552" x, exec = run command (the rest of the line) using shell\n"13553" d, drop = remove commit\n"13554"\n"13555"These lines can be re-ordered; they are executed from top to bottom.\n"13556msgstr ""13557"\n"13558"Befehle:\n"13559" p, pick = Commit verwenden\n"13560" r, reword = Commit verwenden, aber Commit-Beschreibung bearbeiten\n"13561" e, edit = Commit verwenden, aber zum Nachbessern anhalten\n"13562" s, squash = Commit verwenden, aber mit vorherigem Commit vereinen\n"13563" f, fixup = wie \"squash\", aber diese Commit-Beschreibung verwerfen\n"13564" x, exec = Befehl (Rest der Zeile) mittels Shell ausführen\n"13565" d, drop = Commit entfernen\n"13566"\n"13567"Diese Zeilen können umsortiert werden; Sie werden von oben nach unten\n"13568"ausgeführt.\n"1356913570#: git-rebase--interactive.sh:16213571msgid ""13572"\n"13573"Do not remove any line. Use 'drop' explicitly to remove a commit.\n"13574msgstr ""13575"\n"13576"Keine Zeile entfernen. Benutzen Sie 'drop', um explizit einen Commit zu\n"13577"entfernen.\n"1357813579#: git-rebase--interactive.sh:16613580msgid ""13581"\n"13582"If you remove a line here THAT COMMIT WILL BE LOST.\n"13583msgstr "\nWenn Sie hier eine Zeile entfernen, wird DIESER COMMIT VERLOREN GEHEN.\n"1358413585#: git-rebase--interactive.sh:20213586#, sh-format13587msgid ""13588"You can amend the commit now, with\n"13589"\n"13590"\tgit commit --amend $gpg_sign_opt_quoted\n"13591"\n"13592"Once you are satisfied with your changes, run\n"13593"\n"13594"\tgit rebase --continue"13595msgstr ""13596"Sie können den Commit nun nachbessern mit:\n"13597"\n"13598"\tgit commit --amend $gpg_sign_opt_quoted\n"13599"\n"13600"Sobald Sie mit Ihren Änderungen zufrieden sind, führen Sie aus:\n"13601"\n"13602"\tgit rebase --continue"1360313604#: git-rebase--interactive.sh:22713605#, sh-format13606msgid "$sha1: not a commit that can be picked"13607msgstr "$sha1: kein Commit der gepickt werden kann"1360813609#: git-rebase--interactive.sh:26613610#, sh-format13611msgid "Invalid commit name: $sha1"13612msgstr "Ungültiger Commit-Name: $sha1"1361313614#: git-rebase--interactive.sh:30813615msgid "Cannot write current commit's replacement sha1"13616msgstr "Kann ersetzenden SHA-1 des aktuellen Commits nicht schreiben"1361713618#: git-rebase--interactive.sh:36013619#, sh-format13620msgid "Fast-forward to $sha1"13621msgstr "Spule vor zu $sha1"1362213623#: git-rebase--interactive.sh:36213624#, sh-format13625msgid "Cannot fast-forward to $sha1"13626msgstr "Kann nicht zu $sha1 vorspulen"1362713628#: git-rebase--interactive.sh:37113629#, sh-format13630msgid "Cannot move HEAD to $first_parent"13631msgstr "Kann HEAD nicht auf $first_parent setzen"1363213633#: git-rebase--interactive.sh:37613634#, sh-format13635msgid "Refusing to squash a merge: $sha1"13636msgstr "\"squash\" eines Merges ($sha1) zurückgewiesen."1363713638#: git-rebase--interactive.sh:39013639#, sh-format13640msgid "Error redoing merge $sha1"13641msgstr "Fehler beim Wiederholen des Merges von $sha1"1364213643#: git-rebase--interactive.sh:39813644#, sh-format13645msgid "Could not pick $sha1"13646msgstr "Konnte $sha1 nicht picken"1364713648#: git-rebase--interactive.sh:40713649#, sh-format13650msgid "This is the commit message #${n}:"13651msgstr "Das ist Commit-Beschreibung #${n}:"1365213653#: git-rebase--interactive.sh:41213654#, sh-format13655msgid "The commit message #${n} will be skipped:"13656msgstr "Commit-Beschreibung #${n} wird ausgelassen:"1365713658#: git-rebase--interactive.sh:42313659#, sh-format13660msgid "This is a combination of $count commit."13661msgid_plural "This is a combination of $count commits."13662msgstr[0] "Das ist eine Kombination aus $count Commit."13663msgstr[1] "Das ist eine Kombination aus $count Commits."1366413665#: git-rebase--interactive.sh:43113666#, sh-format13667msgid "Cannot write $fixup_msg"13668msgstr "Kann $fixup_msg nicht schreiben"1366913670#: git-rebase--interactive.sh:43413671msgid "This is a combination of 2 commits."13672msgstr "Das ist eine Kombination aus 2 Commits."1367313674#: git-rebase--interactive.sh:43513675msgid "This is the 1st commit message:"13676msgstr "Das ist die erste Commit-Beschreibung:"1367713678#: git-rebase--interactive.sh:475 git-rebase--interactive.sh:51813679#: git-rebase--interactive.sh:52113680#, sh-format13681msgid "Could not apply $sha1... $rest"13682msgstr "Konnte $sha1... ($rest) nicht anwenden"1368313684#: git-rebase--interactive.sh:54913685#, sh-format13686msgid ""13687"Could not amend commit after successfully picking $sha1... $rest\n"13688"This is most likely due to an empty commit message, or the pre-commit hook\n"13689"failed. If the pre-commit hook failed, you may need to resolve the issue "13690"before\n"13691"you are able to reword the commit."13692msgstr ""13693"Konnte Commit nicht nachbessern, nachdem dieser verwendet wurde: $sha1... $rest\n"13694"Das passierte sehr wahrscheinlich wegen einer leeren Commit-Beschreibung, oder\n"13695"weil der pre-commit Hook fehlschlug. Falls der pre-commit Hook fehlschlug,\n"13696"sollten Sie das Problem beheben, bevor Sie die Commit-Beschreibung ändern können."1369713698#: git-rebase--interactive.sh:56413699#, sh-format13700msgid "Stopped at $sha1_abbrev... $rest"13701msgstr "Angehalten bei $sha1_abbrev... $rest"1370213703#: git-rebase--interactive.sh:57913704#, sh-format13705msgid "Cannot '$squash_style' without a previous commit"13706msgstr "Kann nicht '$squash_style' ohne vorherigen Commit"1370713708#: git-rebase--interactive.sh:62113709#, sh-format13710msgid "Executing: $rest"13711msgstr "Führe aus: $rest"1371213713#: git-rebase--interactive.sh:62913714#, sh-format13715msgid "Execution failed: $rest"13716msgstr "Ausführung fehlgeschlagen: $rest"1371713718#: git-rebase--interactive.sh:63113719msgid "and made changes to the index and/or the working tree"13720msgstr "Der Index und/oder das Arbeitsverzeichnis wurde geändert."1372113722#: git-rebase--interactive.sh:63313723msgid ""13724"You can fix the problem, and then run\n"13725"\n"13726"\tgit rebase --continue"13727msgstr ""13728"Sie können das Problem beheben, und dann\n"13729"\n"13730"\tgit rebase --continue\n"13731"\n"13732"ausführen."1373313734#. TRANSLATORS: after these lines is a command to be issued by the user13735#: git-rebase--interactive.sh:64613736#, sh-format13737msgid ""13738"Execution succeeded: $rest\n"13739"but left changes to the index and/or the working tree\n"13740"Commit or stash your changes, and then run\n"13741"\n"13742"\tgit rebase --continue"13743msgstr ""13744"Ausführung erfolgreich: $rest\n"13745"Aber Änderungen in Index oder Arbeitsverzeichnis verblieben.\n"13746"Committen Sie Ihre Änderungen oder benutzen Sie \"stash\".\n"13747"Führen Sie dann aus:\n"13748"\n"13749"\tgit rebase --continue"1375013751#: git-rebase--interactive.sh:65713752#, sh-format13753msgid "Unknown command: $command $sha1 $rest"13754msgstr "Unbekannter Befehl: $command $sha1 $rest"1375513756#: git-rebase--interactive.sh:65813757msgid "Please fix this using 'git rebase --edit-todo'."13758msgstr "Bitte beheben Sie das, indem Sie 'git rebase --edit-todo' ausführen."1375913760#: git-rebase--interactive.sh:69313761#, sh-format13762msgid "Successfully rebased and updated $head_name."13763msgstr "Erfolgreich Rebase ausgeführt und $head_name aktualisiert."1376413765#: git-rebase--interactive.sh:74013766msgid "Could not skip unnecessary pick commands"13767msgstr "Fehler beim Auslassen von nicht erforderlichen \"pick\"-Befehlen."1376813769#: git-rebase--interactive.sh:89813770#, sh-format13771msgid ""13772"Warning: the SHA-1 is missing or isn't a commit in the following line:\n"13773" - $line"13774msgstr ""13775"Warnung: Der SHA-1 in der folgenden Zeile fehlt oder ist kein Commit:\n"13776" - $line"1377713778#: git-rebase--interactive.sh:93113779#, sh-format13780msgid ""13781"Warning: the command isn't recognized in the following line:\n"13782" - $line"13783msgstr ""13784"Warnung: Das Kommando in der folgenden Zeile wurde nicht erkannt:\n"13785" - $line"1378613787#: git-rebase--interactive.sh:97013788msgid "could not detach HEAD"13789msgstr "Konnte HEAD nicht loslösen"1379013791#: git-rebase--interactive.sh:100813792msgid ""13793"Warning: some commits may have been dropped accidentally.\n"13794"Dropped commits (newer to older):"13795msgstr ""13796"Warnung: Einige Commits könnten aus Versehen entfernt worden sein.\n"13797"Entfernte Commits (neu zu alt):"1379813799#: git-rebase--interactive.sh:101613800msgid ""13801"To avoid this message, use \"drop\" to explicitly remove a commit.\n"13802"\n"13803"Use 'git config rebase.missingCommitsCheck' to change the level of "13804"warnings.\n"13805"The possible behaviours are: ignore, warn, error."13806msgstr ""13807"Um diese Meldung zu vermeiden, benutzen Sie \"drop\", um exlizit Commits zu\n"13808"entfernen.\n"13809"\n"13810"Benutzen Sie 'git config rebase.missingCommitsCheck', um die Stufe der Warnungen\n"13811"zu ändern.\n"13812"Die möglichen Verhaltensweisen sind: ignore, warn, error."1381313814#: git-rebase--interactive.sh:102713815#, sh-format13816msgid ""13817"Unrecognized setting $check_level for option rebase.missingCommitsCheck. "13818"Ignoring."13819msgstr ""13820"Nicht erkannte Einstellung $check_level für Option rebase.missingCommitsCheck.\n"13821"Ignoriere."1382213823#: git-rebase--interactive.sh:104413824msgid "You can fix this with 'git rebase --edit-todo'."13825msgstr "Sie können das mit 'git rebase --edit-todo' beheben."1382613827#: git-rebase--interactive.sh:104513828msgid "Or you can abort the rebase with 'git rebase --abort'."13829msgstr "Oder Sie können den Rebase mit 'git rebase --abort' abbrechen."1383013831#: git-rebase--interactive.sh:106913832msgid "Could not remove CHERRY_PICK_HEAD"13833msgstr "Konnte CHERRY_PICK_HEAD nicht löschen"1383413835#: git-rebase--interactive.sh:107413836#, sh-format13837msgid ""13838"You have staged changes in your working tree.\n"13839"If these changes are meant to be\n"13840"squashed into the previous commit, run:\n"13841"\n"13842" git commit --amend $gpg_sign_opt_quoted\n"13843"\n"13844"If they are meant to go into a new commit, run:\n"13845"\n"13846" git commit $gpg_sign_opt_quoted\n"13847"\n"13848"In both case, once you're done, continue with:\n"13849"\n"13850" git rebase --continue\n"13851msgstr ""13852"Es befinden sich zum Commit vorgemerkte Änderungen in Ihrem Arbeitsverzeichnis.\n"13853"Wenn diese Änderungen in den vorherigen Commit aufgenommen werden sollen,\n"13854"führen Sie aus:\n"13855"\n"13856" git commit --amend $gpg_sign_opt_quoted\n"13857"\n"13858"Wenn daraus ein neuer Commit erzeugt werden soll, führen Sie aus:\n"13859"\n"13860" git commit $gpg_sign_opt_quoted\n"13861"\n"13862"Im Anschluss führen Sie zum Fortfahren aus:\n"13863"\n"13864" git rebase --continue\n"1386513866#: git-rebase--interactive.sh:109113867msgid "Error trying to find the author identity to amend commit"13868msgstr ""13869"Fehler beim Versuch die Identität des Authors zum Verbessern des Commits zu\n"13870"finden"1387113872#: git-rebase--interactive.sh:109613873msgid ""13874"You have uncommitted changes in your working tree. Please commit them\n"13875"first and then run 'git rebase --continue' again."13876msgstr ""13877"Sie haben nicht committete Änderungen in Ihrem Arbeitsverzeichnis. Bitte\n"13878"committen Sie diese zuerst und führen Sie dann 'git rebase --continue' erneut\n"13879"aus."1388013881#: git-rebase--interactive.sh:1101 git-rebase--interactive.sh:110513882msgid "Could not commit staged changes."13883msgstr "Konnte Änderungen aus der Staging-Area nicht committen."1388413885#: git-rebase--interactive.sh:112913886msgid ""13887"\n"13888"You are editing the todo file of an ongoing interactive rebase.\n"13889"To continue rebase after editing, run:\n"13890" git rebase --continue\n"13891"\n"13892msgstr ""13893"\n"13894"Sie bearbeiten gerade die TODO-Datei eines laufenden interaktiven Rebase.\n"13895"Um den Rebase nach dem Editieren fortzusetzen, führen Sie aus:\n"13896" git rebase --continue\n"13897"\n"1389813899#: git-rebase--interactive.sh:1137 git-rebase--interactive.sh:129813900msgid "Could not execute editor"13901msgstr "Konnte Editor nicht ausführen."1390213903#: git-rebase--interactive.sh:114513904msgid "You need to set your committer info first"13905msgstr "Sie müssen zuerst die Informationen zum Commit-Ersteller setzen."1390613907#: git-rebase--interactive.sh:115313908#, sh-format13909msgid "Could not checkout $switch_to"13910msgstr "Konnte $switch_to nicht auschecken."1391113912#: git-rebase--interactive.sh:115813913msgid "No HEAD?"13914msgstr "Kein HEAD?"1391513916#: git-rebase--interactive.sh:115913917#, sh-format13918msgid "Could not create temporary $state_dir"13919msgstr "Konnte temporäres Verzeichnis $state_dir nicht erstellen."1392013921#: git-rebase--interactive.sh:116113922msgid "Could not mark as interactive"13923msgstr "Konnte nicht als interaktiven Rebase markieren."1392413925#: git-rebase--interactive.sh:1171 git-rebase--interactive.sh:117613926msgid "Could not init rewritten commits"13927msgstr "Konnte neu geschriebene Commits nicht initialisieren."1392813929#: git-rebase--interactive.sh:127613930#, sh-format13931msgid "Rebase $shortrevisions onto $shortonto ($todocount command)"13932msgid_plural "Rebase $shortrevisions onto $shortonto ($todocount commands)"13933msgstr[0] "Rebase von $shortrevisions auf $shortonto ($todocount Kommando)"13934msgstr[1] "Rebase von $shortrevisions auf $shortonto ($todocount Kommandos)"1393513936#: git-rebase--interactive.sh:128113937msgid ""13938"\n"13939"However, if you remove everything, the rebase will be aborted.\n"13940"\n"13941msgstr "\nWenn Sie jedoch alles löschen, wird der Rebase abgebrochen.\n\n"1394213943#: git-rebase--interactive.sh:128813944msgid "Note that empty commits are commented out"13945msgstr "Leere Commits sind auskommentiert."1394613947#: git-sh-setup.sh:89 git-sh-setup.sh:9413948#, sh-format13949msgid "usage: $dashless $USAGE"13950msgstr "Verwendung: $dashless $USAGE"1395113952#: git-sh-setup.sh:19013953#, sh-format13954msgid "Cannot chdir to $cdup, the toplevel of the working tree"13955msgstr ""13956"Konnte nicht in Verzeichnis $cdup wechseln, der obersten Ebene des\n"13957"Arbeitsverzeichnisses."1395813959#: git-sh-setup.sh:199 git-sh-setup.sh:20613960#, sh-format13961msgid "fatal: $program_name cannot be used without a working tree."13962msgstr "fatal: $program_name kann ohne ein Arbeitsverzeichnis nicht verwendet werden."1396313964#: git-sh-setup.sh:22013965msgid "Cannot rebase: You have unstaged changes."13966msgstr "Rebase nicht möglich: Sie haben Änderungen, die nicht zum Commit vorgemerkt sind."1396713968#: git-sh-setup.sh:22313969msgid "Cannot rewrite branches: You have unstaged changes."13970msgstr ""13971"Kann Branches nicht neu schreiben: Sie haben Änderungen, die nicht zum Commit\n"13972"vorgemerkt sind."1397313974#: git-sh-setup.sh:22913975#, sh-format13976msgid "Cannot $action: You have unstaged changes."13977msgstr ""13978"Kann $action nicht ausführen: Sie haben Änderungen, die nicht zum Commit\n"13979"vorgemerkt sind."1398013981#: git-sh-setup.sh:24213982msgid "Cannot rebase: Your index contains uncommitted changes."13983msgstr "Rebase nicht möglich: Die Staging-Area beinhaltet nicht committete Änderungen."1398413985#: git-sh-setup.sh:24813986#, sh-format13987msgid "Cannot $action: Your index contains uncommitted changes."13988msgstr ""13989"Kann $action nicht ausführen: Die Staging-Area beinhaltet nicht committete\n"13990"Änderungen."1399113992#: git-sh-setup.sh:37213993msgid "You need to run this command from the toplevel of the working tree."13994msgstr "Sie müssen den Befehl von der obersten Ebene des Arbeitsverzeichnisses ausführen."1399513996#: git-sh-setup.sh:37713997msgid "Unable to determine absolute path of git directory"13998msgstr "Konnte absoluten Pfad des Git-Verzeichnisses nicht bestimmen."13999