git.pot 65.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: Git Mailing List <git@vger.kernel.org>\n"
11
"POT-Creation-Date: 2012-05-08 15:45+0800\n"
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: advice.c:34
#, c-format
msgid "hint: %.*s\n"
msgstr ""

#.
#. * Message used both when 'git commit' fails and when
#. * other commands doing a merge do.
#.
#: advice.c:64
msgid ""
"Fix them up in the work tree,\n"
"and then use 'git add/rm <file>' as\n"
"appropriate to mark resolution and make a commit,\n"
"or use 'git commit -a'."
msgstr ""

#: commit.c:47
#, c-format
msgid "could not parse %s"
msgstr ""

#: commit.c:49
#, c-format
msgid "%s %s is not a commit!"
msgstr ""

#: compat/obstack.c:406 compat/obstack.c:408
msgid "memory exhausted"
msgstr ""

#: connected.c:39
msgid "Could not run 'git rev-list'"
msgstr ""

#: connected.c:48
#, c-format
msgid "failed write to rev-list: %s"
msgstr ""

#: connected.c:56
#, c-format
msgid "failed to close rev-list's stdin: %s"
msgstr ""

J
Jiang Xin 已提交
66
#: diff.c:105
67 68 69 70
#, c-format
msgid "  Failed to parse dirstat cut-off percentage '%.*s'\n"
msgstr ""

J
Jiang Xin 已提交
71
#: diff.c:110
72 73 74 75
#, c-format
msgid "  Unknown dirstat parameter '%.*s'\n"
msgstr ""

J
Jiang Xin 已提交
76
#: diff.c:210
77 78 79 80 81 82
#, c-format
msgid ""
"Found errors in 'diff.dirstat' config variable:\n"
"%s"
msgstr ""

83
#: diff.c:1400
84 85 86
msgid " 0 files changed\n"
msgstr ""

87
#: diff.c:1404
88 89 90 91 92 93
#, c-format
msgid " %d file changed"
msgid_plural " %d files changed"
msgstr[0] ""
msgstr[1] ""

94
#: diff.c:1421
95 96 97 98 99 100
#, c-format
msgid ", %d insertion(+)"
msgid_plural ", %d insertions(+)"
msgstr[0] ""
msgstr[1] ""

101
#: diff.c:1432
102 103 104 105 106 107
#, c-format
msgid ", %d deletion(-)"
msgid_plural ", %d deletions(-)"
msgstr[0] ""
msgstr[1] ""

108
#: diff.c:3435
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
#, c-format
msgid ""
"Failed to parse --dirstat/-X option parameter:\n"
"%s"
msgstr ""

#: gpg-interface.c:59
msgid "could not run gpg."
msgstr ""

#: gpg-interface.c:71
msgid "gpg did not accept the data"
msgstr ""

#: gpg-interface.c:82
msgid "gpg failed to sign the data"
msgstr ""

J
Jiang Xin 已提交
127
#: grep.c:1280
128 129 130 131
#, c-format
msgid "'%s': unable to read %s"
msgstr ""

J
Jiang Xin 已提交
132
#: grep.c:1297
133 134 135 136
#, c-format
msgid "'%s': %s"
msgstr ""

J
Jiang Xin 已提交
137
#: grep.c:1308
138 139 140 141 142
#, c-format
msgid "'%s': short read %s"
msgstr ""

#: help.c:287
143 144 145 146 147 148
#, c-format
msgid ""
"'%s' appears to be a git command, but we were not\n"
"able to execute it. Maybe git-%s is broken?"
msgstr ""

149
#: remote.c:1607
150 151 152 153 154 155
#, c-format
msgid "Your branch is ahead of '%s' by %d commit.\n"
msgid_plural "Your branch is ahead of '%s' by %d commits.\n"
msgstr[0] ""
msgstr[1] ""

156
#: remote.c:1613
157 158 159 160 161 162 163
#, c-format
msgid "Your branch is behind '%s' by %d commit, and can be fast-forwarded.\n"
msgid_plural ""
"Your branch is behind '%s' by %d commits, and can be fast-forwarded.\n"
msgstr[0] ""
msgstr[1] ""

164
#: remote.c:1621
165 166 167 168 169 170 171 172 173 174
#, c-format
msgid ""
"Your branch and '%s' have diverged,\n"
"and have %d and %d different commit each, respectively.\n"
msgid_plural ""
"Your branch and '%s' have diverged,\n"
"and have %d and %d different commits each, respectively.\n"
msgstr[0] ""
msgstr[1] ""

175 176
#: sequencer.c:120 builtin/merge.c:865 builtin/merge.c:978
#: builtin/merge.c:1088 builtin/merge.c:1098
177 178 179 180
#, c-format
msgid "Could not open '%s' for writing"
msgstr ""

181 182
#: sequencer.c:122 builtin/merge.c:333 builtin/merge.c:868
#: builtin/merge.c:1090 builtin/merge.c:1103
183 184 185 186
#, c-format
msgid "Could not write to '%s'"
msgstr ""

J
Jiang Xin 已提交
187 188 189 190 191 192 193
#: sequencer.c:143
msgid ""
"after resolving the conflicts, mark the corrected paths\n"
"with 'git add <paths>' or 'git rm <paths>'"
msgstr ""

#: sequencer.c:146
194 195 196 197 198 199
msgid ""
"after resolving the conflicts, mark the corrected paths\n"
"with 'git add <paths>' or 'git rm <paths>'\n"
"and commit the result with 'git commit'"
msgstr ""

J
Jiang Xin 已提交
200
#: sequencer.c:159 sequencer.c:685 sequencer.c:768
201 202 203 204
#, c-format
msgid "Could not write to %s"
msgstr ""

J
Jiang Xin 已提交
205
#: sequencer.c:162
206 207 208 209
#, c-format
msgid "Error wrapping up %s"
msgstr ""

J
Jiang Xin 已提交
210
#: sequencer.c:177
211 212 213
msgid "Your local changes would be overwritten by cherry-pick."
msgstr ""

J
Jiang Xin 已提交
214
#: sequencer.c:179
215 216 217
msgid "Your local changes would be overwritten by revert."
msgstr ""

J
Jiang Xin 已提交
218
#: sequencer.c:182
219 220 221 222
msgid "Commit your changes or stash them to proceed."
msgstr ""

#. TRANSLATORS: %s will be "revert" or "cherry-pick"
J
Jiang Xin 已提交
223
#: sequencer.c:232
224 225 226 227
#, c-format
msgid "%s: Unable to write new index file"
msgstr ""

J
Jiang Xin 已提交
228
#: sequencer.c:298
229 230 231
msgid "Your index file is unmerged."
msgstr ""

J
Jiang Xin 已提交
232
#: sequencer.c:301
233 234 235
msgid "You do not have a valid HEAD"
msgstr ""

J
Jiang Xin 已提交
236
#: sequencer.c:316
237 238 239 240
#, c-format
msgid "Commit %s is a merge but no -m option was given."
msgstr ""

J
Jiang Xin 已提交
241
#: sequencer.c:324
242 243 244 245
#, c-format
msgid "Commit %s does not have parent %d"
msgstr ""

J
Jiang Xin 已提交
246
#: sequencer.c:328
247 248 249 250 251 252
#, c-format
msgid "Mainline was specified but commit %s is not a merge."
msgstr ""

#. TRANSLATORS: The first %s will be "revert" or
#. "cherry-pick", the second %s a SHA1
J
Jiang Xin 已提交
253
#: sequencer.c:339
254 255 256 257
#, c-format
msgid "%s: cannot parse parent commit %s"
msgstr ""

J
Jiang Xin 已提交
258
#: sequencer.c:343
259 260 261 262
#, c-format
msgid "Cannot get commit message for %s"
msgstr ""

J
Jiang Xin 已提交
263
#: sequencer.c:427
264 265 266 267
#, c-format
msgid "could not revert %s... %s"
msgstr ""

J
Jiang Xin 已提交
268
#: sequencer.c:428
269 270 271 272
#, c-format
msgid "could not apply %s... %s"
msgstr ""

J
Jiang Xin 已提交
273
#: sequencer.c:450 sequencer.c:909 builtin/log.c:288 builtin/log.c:713
274
#: builtin/log.c:1329 builtin/log.c:1548 builtin/merge.c:347
275 276 277 278
#: builtin/shortlog.c:181
msgid "revision walk setup failed"
msgstr ""

J
Jiang Xin 已提交
279
#: sequencer.c:453
280 281 282
msgid "empty commit set passed"
msgstr ""

J
Jiang Xin 已提交
283
#: sequencer.c:461
284 285 286 287
#, c-format
msgid "git %s: failed to read the index"
msgstr ""

J
Jiang Xin 已提交
288
#: sequencer.c:466
289 290 291 292
#, c-format
msgid "git %s: failed to refresh the index"
msgstr ""

J
Jiang Xin 已提交
293
#: sequencer.c:551
294 295 296 297
#, c-format
msgid "Cannot %s during a %s"
msgstr ""

J
Jiang Xin 已提交
298
#: sequencer.c:573
299 300 301 302
#, c-format
msgid "Could not parse line %d."
msgstr ""

J
Jiang Xin 已提交
303
#: sequencer.c:578
304 305 306
msgid "No commits parsed."
msgstr ""

J
Jiang Xin 已提交
307
#: sequencer.c:591
308 309 310 311
#, c-format
msgid "Could not open %s"
msgstr ""

J
Jiang Xin 已提交
312
#: sequencer.c:595
313 314 315 316
#, c-format
msgid "Could not read %s."
msgstr ""

J
Jiang Xin 已提交
317
#: sequencer.c:602
318 319 320 321
#, c-format
msgid "Unusable instruction sheet: %s"
msgstr ""

J
Jiang Xin 已提交
322
#: sequencer.c:630
323 324 325 326
#, c-format
msgid "Invalid key: %s"
msgstr ""

J
Jiang Xin 已提交
327
#: sequencer.c:633
328 329 330 331
#, c-format
msgid "Invalid value for %s: %s"
msgstr ""

J
Jiang Xin 已提交
332
#: sequencer.c:645
333 334 335 336
#, c-format
msgid "Malformed options sheet: %s"
msgstr ""

J
Jiang Xin 已提交
337
#: sequencer.c:666
338 339 340
msgid "a cherry-pick or revert is already in progress"
msgstr ""

J
Jiang Xin 已提交
341
#: sequencer.c:667
342 343 344
msgid "try \"git cherry-pick (--continue | --quit | --abort)\""
msgstr ""

J
Jiang Xin 已提交
345
#: sequencer.c:671
346 347 348 349
#, c-format
msgid "Could not create sequencer directory %s"
msgstr ""

J
Jiang Xin 已提交
350
#: sequencer.c:687 sequencer.c:772
351 352 353 354
#, c-format
msgid "Error wrapping up %s."
msgstr ""

J
Jiang Xin 已提交
355
#: sequencer.c:706 sequencer.c:840
356 357 358
msgid "no cherry-pick or revert in progress"
msgstr ""

J
Jiang Xin 已提交
359
#: sequencer.c:708
360 361 362
msgid "cannot resolve HEAD"
msgstr ""

J
Jiang Xin 已提交
363
#: sequencer.c:710
364 365 366
msgid "cannot abort from a branch yet to be born"
msgstr ""

J
Jiang Xin 已提交
367
#: sequencer.c:732
368 369 370 371
#, c-format
msgid "cannot open %s: %s"
msgstr ""

J
Jiang Xin 已提交
372
#: sequencer.c:735
373 374 375 376
#, c-format
msgid "cannot read %s: %s"
msgstr ""

J
Jiang Xin 已提交
377
#: sequencer.c:736
378 379 380
msgid "unexpected end of file"
msgstr ""

J
Jiang Xin 已提交
381
#: sequencer.c:742
382 383 384 385
#, c-format
msgid "stored pre-cherry-pick HEAD file '%s' is corrupt"
msgstr ""

J
Jiang Xin 已提交
386
#: sequencer.c:765
387 388 389 390
#, c-format
msgid "Could not format %s."
msgstr ""

J
Jiang Xin 已提交
391
#: sequencer.c:927
392 393 394
msgid "Can't revert as initial commit"
msgstr ""

J
Jiang Xin 已提交
395
#: sequencer.c:928
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
msgid "Can't cherry-pick into empty head"
msgstr ""

#: wt-status.c:134
msgid "Unmerged paths:"
msgstr ""

#: wt-status.c:140 wt-status.c:157
#, c-format
msgid "  (use \"git reset %s <file>...\" to unstage)"
msgstr ""

#: wt-status.c:142 wt-status.c:159
msgid "  (use \"git rm --cached <file>...\" to unstage)"
msgstr ""

#: wt-status.c:143
msgid "  (use \"git add/rm <file>...\" as appropriate to mark resolution)"
msgstr ""

#: wt-status.c:151
msgid "Changes to be committed:"
msgstr ""

#: wt-status.c:169
msgid "Changes not staged for commit:"
msgstr ""

#: wt-status.c:173
msgid "  (use \"git add <file>...\" to update what will be committed)"
msgstr ""

#: wt-status.c:175
msgid "  (use \"git add/rm <file>...\" to update what will be committed)"
msgstr ""

#: wt-status.c:176
msgid ""
"  (use \"git checkout -- <file>...\" to discard changes in working directory)"
msgstr ""

#: wt-status.c:178
msgid "  (commit or discard the untracked or modified content in submodules)"
msgstr ""

#: wt-status.c:187
#, c-format
msgid "%s files:"
msgstr ""

#: wt-status.c:190
#, c-format
msgid "  (use \"git %s <file>...\" to include in what will be committed)"
msgstr ""

#: wt-status.c:207
msgid "bug"
msgstr ""

#: wt-status.c:212
msgid "both deleted:"
msgstr ""

#: wt-status.c:213
msgid "added by us:"
msgstr ""

#: wt-status.c:214
msgid "deleted by them:"
msgstr ""

#: wt-status.c:215
msgid "added by them:"
msgstr ""

#: wt-status.c:216
msgid "deleted by us:"
msgstr ""

#: wt-status.c:217
msgid "both added:"
msgstr ""

#: wt-status.c:218
msgid "both modified:"
msgstr ""

#: wt-status.c:248
msgid "new commits, "
msgstr ""

#: wt-status.c:250
msgid "modified content, "
msgstr ""

#: wt-status.c:252
msgid "untracked content, "
msgstr ""

#: wt-status.c:266
#, c-format
msgid "new file:   %s"
msgstr ""

#: wt-status.c:269
#, c-format
msgid "copied:     %s -> %s"
msgstr ""

#: wt-status.c:272
#, c-format
msgid "deleted:    %s"
msgstr ""

#: wt-status.c:275
#, c-format
msgid "modified:   %s"
msgstr ""

#: wt-status.c:278
#, c-format
msgid "renamed:    %s -> %s"
msgstr ""

#: wt-status.c:281
#, c-format
msgid "typechange: %s"
msgstr ""

#: wt-status.c:284
#, c-format
msgid "unknown:    %s"
msgstr ""

#: wt-status.c:287
#, c-format
msgid "unmerged:   %s"
msgstr ""

#: wt-status.c:290
#, c-format
msgid "bug: unhandled diff status %c"
msgstr ""

#: wt-status.c:713
msgid "On branch "
msgstr ""

#: wt-status.c:720
msgid "Not currently on any branch."
msgstr ""

#: wt-status.c:731
msgid "Initial commit"
msgstr ""

#: wt-status.c:745
msgid "Untracked"
msgstr ""

#: wt-status.c:747
msgid "Ignored"
msgstr ""

#: wt-status.c:749
#, c-format
msgid "Untracked files not listed%s"
msgstr ""

#: wt-status.c:751
msgid " (use -u option to show untracked files)"
msgstr ""

#: wt-status.c:757
msgid "No changes"
msgstr ""

#: wt-status.c:761
#, c-format
msgid "no changes added to commit%s\n"
msgstr ""

#: wt-status.c:763
msgid " (use \"git add\" and/or \"git commit -a\")"
msgstr ""

#: wt-status.c:765
#, c-format
msgid "nothing added to commit but untracked files present%s\n"
msgstr ""

#: wt-status.c:767
msgid " (use \"git add\" to track)"
msgstr ""

#: wt-status.c:769 wt-status.c:772 wt-status.c:775
#, c-format
msgid "nothing to commit%s\n"
msgstr ""

#: wt-status.c:770
msgid " (create/copy files and use \"git add\" to track)"
msgstr ""

#: wt-status.c:773
msgid " (use -u to show untracked files)"
msgstr ""

#: wt-status.c:776
msgid " (working directory clean)"
msgstr ""

#: wt-status.c:884
msgid "HEAD (no branch)"
msgstr ""

#: wt-status.c:890
msgid "Initial commit on "
msgstr ""

#: wt-status.c:905
msgid "behind "
msgstr ""

#: wt-status.c:908 wt-status.c:911
msgid "ahead "
msgstr ""

#: wt-status.c:913
msgid ", behind "
msgstr ""

#: builtin/add.c:62
#, c-format
msgid "unexpected diff status %c"
msgstr ""

#: builtin/add.c:67 builtin/commit.c:298
msgid "updating files failed"
msgstr ""

#: builtin/add.c:77
#, c-format
msgid "remove '%s'\n"
msgstr ""

#: builtin/add.c:176
#, c-format
msgid "Path '%s' is in submodule '%.*s'"
msgstr ""

#: builtin/add.c:192
msgid "Unstaged changes after refreshing the index:"
msgstr ""

#: builtin/add.c:195 builtin/add.c:456 builtin/rm.c:186
#, c-format
msgid "pathspec '%s' did not match any files"
msgstr ""

#: builtin/add.c:209
#, c-format
msgid "'%s' is beyond a symbolic link"
msgstr ""

#: builtin/add.c:276
msgid "Could not read the index"
msgstr ""

#: builtin/add.c:286
#, c-format
msgid "Could not open '%s' for writing."
msgstr ""

#: builtin/add.c:290
msgid "Could not write patch"
msgstr ""

#: builtin/add.c:295
#, c-format
msgid "Could not stat '%s'"
msgstr ""

#: builtin/add.c:297
msgid "Empty patch. Aborted."
msgstr ""

#: builtin/add.c:303
#, c-format
msgid "Could not apply '%s'"
msgstr ""

#: builtin/add.c:312
msgid "The following paths are ignored by one of your .gitignore files:\n"
msgstr ""

#: builtin/add.c:352
#, c-format
msgid "Use -f if you really want to add them.\n"
msgstr ""

#: builtin/add.c:353
msgid "no files added"
msgstr ""

#: builtin/add.c:359
msgid "adding files failed"
msgstr ""

#: builtin/add.c:391
msgid "-A and -u are mutually incompatible"
msgstr ""

#: builtin/add.c:393
msgid "Option --ignore-missing can only be used together with --dry-run"
msgstr ""

#: builtin/add.c:413
#, c-format
msgid "Nothing specified, nothing added.\n"
msgstr ""

#: builtin/add.c:414
#, c-format
msgid "Maybe you wanted to say 'git add .'?\n"
msgstr ""

#: builtin/add.c:420 builtin/clean.c:95 builtin/commit.c:358 builtin/mv.c:82
#: builtin/rm.c:162
msgid "index file corrupt"
msgstr ""

#: builtin/add.c:476 builtin/mv.c:229 builtin/rm.c:260
msgid "Unable to write new index file"
msgstr ""

#: builtin/archive.c:17
#, c-format
msgid "could not create archive file '%s'"
msgstr ""

#: builtin/archive.c:20
msgid "could not redirect output"
msgstr ""

#: builtin/archive.c:37
msgid "git archive: Remote with no URL"
msgstr ""

#: builtin/archive.c:58
msgid "git archive: expected ACK/NAK, got EOF"
msgstr ""

#: builtin/archive.c:63
#, c-format
msgid "git archive: NACK %s"
msgstr ""

#: builtin/archive.c:65
#, c-format
msgid "remote error: %s"
msgstr ""

#: builtin/archive.c:66
msgid "git archive: protocol error"
msgstr ""

#: builtin/archive.c:71
msgid "git archive: expected a flush"
msgstr ""

#: builtin/branch.c:137
#, c-format
msgid ""
"deleting branch '%s' that has been merged to\n"
"         '%s', but not yet merged to HEAD."
msgstr ""

#: builtin/branch.c:141
#, c-format
msgid ""
"not deleting branch '%s' that is not yet merged to\n"
"         '%s', even though it is merged to HEAD."
msgstr ""

#. TRANSLATORS: This is "remote " in "remote branch '%s' not found"
#: builtin/branch.c:163
msgid "remote "
msgstr ""

#: builtin/branch.c:171
msgid "cannot use -a with -d"
msgstr ""

#: builtin/branch.c:177
msgid "Couldn't look up commit object for HEAD"
msgstr ""

#: builtin/branch.c:182
#, c-format
msgid "Cannot delete the branch '%s' which you are currently on."
msgstr ""

#: builtin/branch.c:192
#, c-format
msgid "%sbranch '%s' not found."
msgstr ""

#: builtin/branch.c:200
#, c-format
msgid "Couldn't look up commit object for '%s'"
msgstr ""

#: builtin/branch.c:206
#, c-format
msgid ""
"The branch '%s' is not fully merged.\n"
"If you are sure you want to delete it, run 'git branch -D %s'."
msgstr ""

#: builtin/branch.c:214
#, c-format
msgid "Error deleting %sbranch '%s'"
msgstr ""

#: builtin/branch.c:219
#, c-format
msgid "Deleted %sbranch %s (was %s).\n"
msgstr ""

#: builtin/branch.c:224
msgid "Update of config-file failed"
msgstr ""

#: builtin/branch.c:322
#, c-format
msgid "branch '%s' does not point at a commit"
msgstr ""

#: builtin/branch.c:394
#, c-format
msgid "behind %d] "
msgstr ""

#: builtin/branch.c:396
#, c-format
msgid "ahead %d] "
msgstr ""

#: builtin/branch.c:398
#, c-format
msgid "ahead %d, behind %d] "
msgstr ""

#: builtin/branch.c:501
msgid "(no branch)"
msgstr ""

J
Jiang Xin 已提交
854
#: builtin/branch.c:566
855 856 857
msgid "some refs could not be read"
msgstr ""

J
Jiang Xin 已提交
858
#: builtin/branch.c:579
859 860 861
msgid "cannot rename the current branch while not on any."
msgstr ""

J
Jiang Xin 已提交
862
#: builtin/branch.c:589
863 864 865 866
#, c-format
msgid "Invalid branch name: '%s'"
msgstr ""

J
Jiang Xin 已提交
867
#: builtin/branch.c:604
868 869 870
msgid "Branch rename failed"
msgstr ""

J
Jiang Xin 已提交
871
#: builtin/branch.c:608
872 873 874 875
#, c-format
msgid "Renamed a misnamed branch '%s' away"
msgstr ""

J
Jiang Xin 已提交
876
#: builtin/branch.c:612
877 878 879 880
#, c-format
msgid "Branch renamed to %s, but HEAD is not updated!"
msgstr ""

J
Jiang Xin 已提交
881
#: builtin/branch.c:619
882 883 884
msgid "Branch is renamed, but update of config-file failed"
msgstr ""

J
Jiang Xin 已提交
885
#: builtin/branch.c:634
886 887 888 889
#, c-format
msgid "malformed object name %s"
msgstr ""

J
Jiang Xin 已提交
890
#: builtin/branch.c:658
891 892 893 894
#, c-format
msgid "could not write branch description template: %s\n"
msgstr ""

J
Jiang Xin 已提交
895
#: builtin/branch.c:746
896 897 898
msgid "Failed to resolve HEAD as a valid ref."
msgstr ""

J
Jiang Xin 已提交
899
#: builtin/branch.c:751 builtin/clone.c:558
900 901 902
msgid "HEAD not found below refs/heads!"
msgstr ""

J
Jiang Xin 已提交
903
#: builtin/branch.c:809
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
msgid "-a and -r options to 'git branch' do not make sense with a branch name"
msgstr ""

#: builtin/bundle.c:47
#, c-format
msgid "%s is okay\n"
msgstr ""

#: builtin/bundle.c:56
msgid "Need a repository to create a bundle."
msgstr ""

#: builtin/bundle.c:60
msgid "Need a repository to unbundle."
msgstr ""

#: builtin/checkout.c:113 builtin/checkout.c:146
#, c-format
msgid "path '%s' does not have our version"
msgstr ""

#: builtin/checkout.c:115 builtin/checkout.c:148
#, c-format
msgid "path '%s' does not have their version"
msgstr ""

#: builtin/checkout.c:131
#, c-format
msgid "path '%s' does not have all necessary versions"
msgstr ""

#: builtin/checkout.c:175
#, c-format
msgid "path '%s' does not have necessary versions"
msgstr ""

#: builtin/checkout.c:192
#, c-format
msgid "path '%s': cannot merge"
msgstr ""

#: builtin/checkout.c:209
#, c-format
msgid "Unable to add merge result for '%s'"
msgstr ""

#: builtin/checkout.c:212 builtin/reset.c:158
#, c-format
msgid "make_cache_entry failed for path '%s'"
msgstr ""

#: builtin/checkout.c:234 builtin/checkout.c:392
msgid "corrupt index file"
msgstr ""

#: builtin/checkout.c:264 builtin/checkout.c:271
#, c-format
msgid "path '%s' is unmerged"
msgstr ""

964
#: builtin/checkout.c:302 builtin/checkout.c:498 builtin/clone.c:583
965
#: builtin/merge.c:812
966 967 968
msgid "unable to write new index file"
msgstr ""

J
Jiang Xin 已提交
969
#: builtin/checkout.c:319 builtin/diff.c:302 builtin/merge.c:408
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
msgid "diff_setup_done failed"
msgstr ""

#: builtin/checkout.c:414
msgid "you need to resolve your current index first"
msgstr ""

#: builtin/checkout.c:533
#, c-format
msgid "Can not do reflog for '%s'\n"
msgstr ""

#: builtin/checkout.c:565
msgid "HEAD is now at"
msgstr ""

#: builtin/checkout.c:572
#, c-format
msgid "Reset branch '%s'\n"
msgstr ""

#: builtin/checkout.c:575
#, c-format
msgid "Already on '%s'\n"
msgstr ""

#: builtin/checkout.c:579
#, c-format
msgid "Switched to and reset branch '%s'\n"
msgstr ""

#: builtin/checkout.c:581
#, c-format
msgid "Switched to a new branch '%s'\n"
msgstr ""

#: builtin/checkout.c:583
#, c-format
msgid "Switched to branch '%s'\n"
msgstr ""

#: builtin/checkout.c:639
#, c-format
msgid " ... and %d more.\n"
msgstr ""

#. The singular version
#: builtin/checkout.c:645
#, c-format
msgid ""
"Warning: you are leaving %d commit behind, not connected to\n"
"any of your branches:\n"
"\n"
"%s\n"
msgid_plural ""
"Warning: you are leaving %d commits behind, not connected to\n"
"any of your branches:\n"
"\n"
"%s\n"
msgstr[0] ""
msgstr[1] ""

#: builtin/checkout.c:663
#, c-format
msgid ""
"If you want to keep them by creating a new branch, this may be a good time\n"
"to do so with:\n"
"\n"
" git branch new_branch_name %s\n"
"\n"
msgstr ""

#: builtin/checkout.c:692
msgid "internal error in revision walk"
msgstr ""

#: builtin/checkout.c:696
msgid "Previous HEAD position was"
msgstr ""

#: builtin/checkout.c:722
msgid "You are on a branch yet to be born"
msgstr ""

#. case (1)
#: builtin/checkout.c:853
#, c-format
msgid "invalid reference: %s"
msgstr ""

#. case (1): want a tree
#: builtin/checkout.c:892
#, c-format
msgid "reference is not a tree: %s"
msgstr ""

1066
#: builtin/checkout.c:972
1067 1068 1069
msgid "-B cannot be used with -b"
msgstr ""

1070
#: builtin/checkout.c:981
1071 1072 1073
msgid "--patch is incompatible with all other options"
msgstr ""

1074
#: builtin/checkout.c:984
1075 1076 1077
msgid "--detach cannot be used with -b/-B/--orphan"
msgstr ""

1078
#: builtin/checkout.c:986
1079 1080 1081
msgid "--detach cannot be used with -t"
msgstr ""

1082
#: builtin/checkout.c:992
1083 1084 1085
msgid "--track needs a branch name"
msgstr ""

1086
#: builtin/checkout.c:999
1087 1088 1089
msgid "Missing branch name; try -b"
msgstr ""

1090
#: builtin/checkout.c:1005
1091 1092 1093
msgid "--orphan and -b|-B are mutually exclusive"
msgstr ""

1094
#: builtin/checkout.c:1007
1095 1096 1097
msgid "--orphan cannot be used with -t"
msgstr ""

1098
#: builtin/checkout.c:1017
1099 1100 1101
msgid "git checkout: -f and -m are incompatible"
msgstr ""

1102
#: builtin/checkout.c:1051
1103 1104 1105
msgid "invalid path specification"
msgstr ""

1106
#: builtin/checkout.c:1059
1107 1108 1109 1110 1111 1112
#, c-format
msgid ""
"git checkout: updating paths is incompatible with switching branches.\n"
"Did you intend to checkout '%s' which can not be resolved as commit?"
msgstr ""

1113
#: builtin/checkout.c:1061
1114 1115 1116
msgid "git checkout: updating paths is incompatible with switching branches."
msgstr ""

1117
#: builtin/checkout.c:1066
1118 1119 1120
msgid "git checkout: --detach does not take a path argument"
msgstr ""

1121
#: builtin/checkout.c:1069
1122 1123 1124 1125 1126
msgid ""
"git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
"checking out of the index."
msgstr ""

1127
#: builtin/checkout.c:1088
1128 1129 1130
msgid "Cannot switch branch to a non-commit."
msgstr ""

1131
#: builtin/checkout.c:1091
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
msgid "--ours/--theirs is incompatible with switching branches."
msgstr ""

#: builtin/clean.c:78
msgid "-x and -X cannot be used together"
msgstr ""

#: builtin/clean.c:82
msgid ""
"clean.requireForce set to true and neither -n nor -f given; refusing to clean"
msgstr ""

#: builtin/clean.c:85
msgid ""
"clean.requireForce defaults to true and neither -n nor -f given; refusing to "
"clean"
msgstr ""

#: builtin/clean.c:155 builtin/clean.c:176
#, c-format
msgid "Would remove %s\n"
msgstr ""

#: builtin/clean.c:159 builtin/clean.c:179
#, c-format
msgid "Removing %s\n"
msgstr ""

#: builtin/clean.c:162 builtin/clean.c:182
#, c-format
msgid "failed to remove %s"
msgstr ""

#: builtin/clean.c:166
#, c-format
msgid "Would not remove %s\n"
msgstr ""

#: builtin/clean.c:168
#, c-format
msgid "Not removing %s\n"
msgstr ""

1175
#: builtin/clone.c:243
1176 1177 1178 1179
#, c-format
msgid "reference repository '%s' is not a local directory."
msgstr ""

1180
#: builtin/clone.c:302
1181 1182 1183 1184
#, c-format
msgid "failed to open '%s'"
msgstr ""

1185
#: builtin/clone.c:306
1186 1187 1188 1189
#, c-format
msgid "failed to create directory '%s'"
msgstr ""

1190
#: builtin/clone.c:308 builtin/diff.c:75
1191 1192 1193 1194
#, c-format
msgid "failed to stat '%s'"
msgstr ""

1195
#: builtin/clone.c:310
1196 1197 1198 1199
#, c-format
msgid "%s exists and is not a directory"
msgstr ""

1200
#: builtin/clone.c:324
1201 1202 1203 1204
#, c-format
msgid "failed to stat %s\n"
msgstr ""

1205
#: builtin/clone.c:341
1206 1207 1208 1209
#, c-format
msgid "failed to unlink '%s'"
msgstr ""

1210
#: builtin/clone.c:346
1211 1212 1213 1214
#, c-format
msgid "failed to create link '%s'"
msgstr ""

1215
#: builtin/clone.c:350
1216 1217 1218 1219
#, c-format
msgid "failed to copy file to '%s'"
msgstr ""

1220
#: builtin/clone.c:373
1221 1222 1223 1224
#, c-format
msgid "done.\n"
msgstr ""

1225
#: builtin/clone.c:440
1226 1227 1228 1229
#, c-format
msgid "Could not find remote branch %s to clone."
msgstr ""

1230
#: builtin/clone.c:549
1231 1232 1233
msgid "remote HEAD refers to nonexistent ref, unable to checkout.\n"
msgstr ""

1234
#: builtin/clone.c:639
1235 1236 1237
msgid "Too many arguments."
msgstr ""

1238
#: builtin/clone.c:643
1239 1240 1241
msgid "You must specify a repository to clone."
msgstr ""

1242
#: builtin/clone.c:654
1243 1244 1245 1246
#, c-format
msgid "--bare and --origin %s options are incompatible."
msgstr ""

1247
#: builtin/clone.c:668
1248 1249 1250 1251
#, c-format
msgid "repository '%s' does not exist"
msgstr ""

1252
#: builtin/clone.c:673
1253 1254 1255
msgid "--depth is ignored in local clones; use file:// instead."
msgstr ""

1256
#: builtin/clone.c:683
1257 1258 1259 1260
#, c-format
msgid "destination path '%s' already exists and is not an empty directory."
msgstr ""

1261
#: builtin/clone.c:693
1262 1263 1264 1265
#, c-format
msgid "working tree '%s' already exists."
msgstr ""

1266
#: builtin/clone.c:706 builtin/clone.c:720
1267 1268 1269 1270
#, c-format
msgid "could not create leading directories of '%s'"
msgstr ""

1271
#: builtin/clone.c:709
1272 1273 1274 1275
#, c-format
msgid "could not create work tree dir '%s'."
msgstr ""

1276
#: builtin/clone.c:728
1277 1278 1279 1280
#, c-format
msgid "Cloning into bare repository '%s'...\n"
msgstr ""

1281
#: builtin/clone.c:730
1282 1283 1284 1285
#, c-format
msgid "Cloning into '%s'...\n"
msgstr ""

1286
#: builtin/clone.c:786
1287 1288 1289 1290
#, c-format
msgid "Don't know how to clone %s"
msgstr ""

1291
#: builtin/clone.c:835
1292 1293 1294 1295
#, c-format
msgid "Remote branch %s not found in upstream %s"
msgstr ""

1296
#: builtin/clone.c:842
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
msgid "You appear to have cloned an empty repository."
msgstr ""

#: builtin/commit.c:42
msgid ""
"Your name and email address were configured automatically based\n"
"on your username and hostname. Please check that they are accurate.\n"
"You can suppress this message by setting them explicitly:\n"
"\n"
"    git config --global user.name \"Your Name\"\n"
"    git config --global user.email you@example.com\n"
"\n"
"After doing this, you may fix the identity used for this commit with:\n"
"\n"
"    git commit --amend --reset-author\n"
msgstr ""

#: builtin/commit.c:54
msgid ""
"You asked to amend the most recent commit, but doing so would make\n"
"it empty. You can repeat your command with --allow-empty, or you can\n"
"remove the commit entirely with \"git reset HEAD^\".\n"
msgstr ""

#: builtin/commit.c:59
msgid ""
"The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
"If you wish to commit it anyway, use:\n"
"\n"
"    git commit --allow-empty\n"
"\n"
"Otherwise, please use 'git reset'\n"
msgstr ""

#: builtin/commit.c:205 builtin/reset.c:33
msgid "merge"
msgstr ""

#: builtin/commit.c:208
msgid "cherry-pick"
msgstr ""

#: builtin/commit.c:325
msgid "failed to unpack HEAD tree object"
msgstr ""

#: builtin/commit.c:367
msgid "unable to create temporary index"
msgstr ""

#: builtin/commit.c:373
msgid "interactive add failed"
msgstr ""

#: builtin/commit.c:406 builtin/commit.c:427 builtin/commit.c:473
msgid "unable to write new_index file"
msgstr ""

#: builtin/commit.c:457
#, c-format
msgid "cannot do a partial commit during a %s."
msgstr ""

#: builtin/commit.c:466
msgid "cannot read the index"
msgstr ""

#: builtin/commit.c:486
msgid "unable to write temporary index file"
msgstr ""

1368
#: builtin/commit.c:561 builtin/commit.c:567
1369 1370 1371 1372
#, c-format
msgid "invalid commit: %s"
msgstr ""

1373
#: builtin/commit.c:590
1374 1375 1376
msgid "malformed --author parameter"
msgstr ""

1377
#: builtin/commit.c:651
1378 1379 1380 1381
#, c-format
msgid "Malformed ident string: '%s'"
msgstr ""

1382
#: builtin/commit.c:689 builtin/commit.c:722 builtin/commit.c:1033
1383 1384 1385 1386
#, c-format
msgid "could not lookup commit %s"
msgstr ""

1387
#: builtin/commit.c:701 builtin/shortlog.c:296
1388 1389 1390 1391
#, c-format
msgid "(reading log message from standard input)\n"
msgstr ""

1392
#: builtin/commit.c:703
1393 1394 1395
msgid "could not read log from standard input"
msgstr ""

1396
#: builtin/commit.c:707
1397 1398 1399 1400
#, c-format
msgid "could not read log file '%s'"
msgstr ""

1401
#: builtin/commit.c:713
1402 1403 1404
msgid "commit has empty message"
msgstr ""

1405
#: builtin/commit.c:729
1406 1407 1408
msgid "could not read MERGE_MSG"
msgstr ""

1409
#: builtin/commit.c:733
1410 1411 1412
msgid "could not read SQUASH_MSG"
msgstr ""

1413
#: builtin/commit.c:737
1414 1415 1416 1417
#, c-format
msgid "could not read '%s'"
msgstr ""

1418
#: builtin/commit.c:765
1419 1420 1421 1422
#, c-format
msgid "could not open '%s'"
msgstr ""

1423
#: builtin/commit.c:789
1424 1425 1426
msgid "could not write commit template"
msgstr ""

1427
#: builtin/commit.c:799
1428 1429 1430 1431 1432 1433 1434 1435 1436
#, c-format
msgid ""
"\n"
"It looks like you may be committing a %s.\n"
"If this is not correct, please remove the file\n"
"\t%s\n"
"and try again.\n"
msgstr ""

1437
#: builtin/commit.c:812
1438 1439 1440
msgid "Please enter the commit message for your changes."
msgstr ""

1441
#: builtin/commit.c:815
1442 1443 1444 1445 1446
msgid ""
" Lines starting\n"
"with '#' will be ignored, and an empty message aborts the commit.\n"
msgstr ""

1447
#: builtin/commit.c:820
1448 1449 1450 1451 1452 1453
msgid ""
" Lines starting\n"
"with '#' will be kept; you may remove them yourself if you want to.\n"
"An empty message aborts the commit.\n"
msgstr ""

1454
#: builtin/commit.c:832
1455 1456 1457 1458
#, c-format
msgid "%sAuthor:    %s"
msgstr ""

1459
#: builtin/commit.c:839
1460 1461 1462 1463
#, c-format
msgid "%sCommitter: %s"
msgstr ""

1464
#: builtin/commit.c:859
1465 1466 1467
msgid "Cannot read index"
msgstr ""

1468
#: builtin/commit.c:896
1469 1470 1471
msgid "Error building trees"
msgstr ""

1472
#: builtin/commit.c:911 builtin/tag.c:357
1473 1474 1475 1476
#, c-format
msgid "Please supply the message using either -m or -F option.\n"
msgstr ""

1477
#: builtin/commit.c:1008
1478 1479 1480 1481
#, c-format
msgid "No existing author found with '%s'"
msgstr ""

1482
#: builtin/commit.c:1023 builtin/commit.c:1217
1483 1484 1485 1486
#, c-format
msgid "Invalid untracked files mode '%s'"
msgstr ""

1487
#: builtin/commit.c:1063
1488 1489 1490
msgid "Using both --reset-author and --author does not make sense"
msgstr ""

1491
#: builtin/commit.c:1074
1492 1493 1494
msgid "You have nothing to amend."
msgstr ""

1495
#: builtin/commit.c:1076
1496 1497 1498 1499
#, c-format
msgid "You are in the middle of a %s -- cannot amend."
msgstr ""

1500
#: builtin/commit.c:1078
1501 1502 1503
msgid "Options --squash and --fixup cannot be used together"
msgstr ""

1504
#: builtin/commit.c:1088
1505 1506 1507
msgid "Only one of -c/-C/-F/--fixup can be used."
msgstr ""

1508
#: builtin/commit.c:1090
1509 1510 1511
msgid "Option -m cannot be combined with -c/-C/-F/--fixup."
msgstr ""

1512
#: builtin/commit.c:1098
1513 1514 1515
msgid "--reset-author can be used only with -C, -c or --amend."
msgstr ""

1516
#: builtin/commit.c:1115
1517 1518 1519
msgid "Only one of --include/--only/--all/--interactive/--patch can be used."
msgstr ""

1520
#: builtin/commit.c:1117
1521 1522 1523
msgid "No paths with --include/--only does not make sense."
msgstr ""

1524
#: builtin/commit.c:1119
1525 1526 1527
msgid "Clever... amending the last one with dirty index."
msgstr ""

1528
#: builtin/commit.c:1121
1529 1530 1531
msgid "Explicit paths specified without -i nor -o; assuming --only paths..."
msgstr ""

1532
#: builtin/commit.c:1131 builtin/tag.c:556
1533 1534 1535 1536
#, c-format
msgid "Invalid cleanup mode %s"
msgstr ""

1537
#: builtin/commit.c:1136
1538 1539 1540
msgid "Paths with -a does not make sense."
msgstr ""

1541
#: builtin/commit.c:1315
1542 1543 1544
msgid "couldn't look up newly created commit"
msgstr ""

1545
#: builtin/commit.c:1317
1546 1547 1548
msgid "could not parse newly created commit"
msgstr ""

1549
#: builtin/commit.c:1358
1550 1551 1552
msgid "detached HEAD"
msgstr ""

1553
#: builtin/commit.c:1360
1554 1555 1556
msgid " (root-commit)"
msgstr ""

1557
#: builtin/commit.c:1450
1558 1559 1560
msgid "could not parse HEAD commit"
msgstr ""

1561
#: builtin/commit.c:1487 builtin/merge.c:509
1562 1563 1564 1565
#, c-format
msgid "could not open '%s' for reading"
msgstr ""

1566
#: builtin/commit.c:1494
1567 1568 1569 1570
#, c-format
msgid "Corrupt MERGE_HEAD file (%s)"
msgstr ""

1571
#: builtin/commit.c:1501
1572 1573 1574
msgid "could not read MERGE_MODE"
msgstr ""

1575
#: builtin/commit.c:1520
1576 1577 1578 1579
#, c-format
msgid "could not read commit message: %s"
msgstr ""

1580 1581 1582 1583 1584 1585
#: builtin/commit.c:1534
#, c-format
msgid "Aborting commit; you did not edit the message.\n"
msgstr ""

#: builtin/commit.c:1539
1586 1587 1588 1589
#, c-format
msgid "Aborting commit due to empty commit message.\n"
msgstr ""

1590
#: builtin/commit.c:1554 builtin/merge.c:936 builtin/merge.c:961
1591 1592 1593
msgid "failed to write commit object"
msgstr ""

1594
#: builtin/commit.c:1575
1595 1596 1597
msgid "cannot lock HEAD ref"
msgstr ""

1598
#: builtin/commit.c:1579
1599 1600 1601
msgid "cannot update HEAD ref"
msgstr ""

1602
#: builtin/commit.c:1590
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696
msgid ""
"Repository has been updated, but unable to write\n"
"new_index file. Check that disk is not full or quota is\n"
"not exceeded, and then \"git reset HEAD\" to recover."
msgstr ""

#: builtin/describe.c:234
#, c-format
msgid "annotated tag %s not available"
msgstr ""

#: builtin/describe.c:238
#, c-format
msgid "annotated tag %s has no embedded name"
msgstr ""

#: builtin/describe.c:240
#, c-format
msgid "tag '%s' is really '%s' here"
msgstr ""

#: builtin/describe.c:267
#, c-format
msgid "Not a valid object name %s"
msgstr ""

#: builtin/describe.c:270
#, c-format
msgid "%s is not a valid '%s' object"
msgstr ""

#: builtin/describe.c:287
#, c-format
msgid "no tag exactly matches '%s'"
msgstr ""

#: builtin/describe.c:289
#, c-format
msgid "searching to describe %s\n"
msgstr ""

#: builtin/describe.c:329
#, c-format
msgid "finished search at %s\n"
msgstr ""

#: builtin/describe.c:353
#, c-format
msgid ""
"No annotated tags can describe '%s'.\n"
"However, there were unannotated tags: try --tags."
msgstr ""

#: builtin/describe.c:357
#, c-format
msgid ""
"No tags can describe '%s'.\n"
"Try --always, or create some tags."
msgstr ""

#: builtin/describe.c:378
#, c-format
msgid "traversed %lu commits\n"
msgstr ""

#: builtin/describe.c:381
#, c-format
msgid ""
"more than %i tags found; listed %i most recent\n"
"gave up search at %s\n"
msgstr ""

#: builtin/describe.c:436
msgid "--long is incompatible with --abbrev=0"
msgstr ""

#: builtin/describe.c:462
msgid "No names found, cannot describe anything."
msgstr ""

#: builtin/describe.c:482
msgid "--dirty is incompatible with committishes"
msgstr ""

#: builtin/diff.c:77
#, c-format
msgid "'%s': not a regular file or symlink"
msgstr ""

#: builtin/diff.c:220
#, c-format
msgid "invalid option: %s"
msgstr ""

J
Jiang Xin 已提交
1697
#: builtin/diff.c:297
1698 1699 1700
msgid "Not a git repository"
msgstr ""

J
Jiang Xin 已提交
1701
#: builtin/diff.c:347
1702 1703 1704 1705
#, c-format
msgid "invalid object '%s' given."
msgstr ""

J
Jiang Xin 已提交
1706
#: builtin/diff.c:352
1707 1708 1709 1710
#, c-format
msgid "more than %d trees given: '%s'"
msgstr ""

J
Jiang Xin 已提交
1711
#: builtin/diff.c:362
1712 1713 1714 1715
#, c-format
msgid "more than two blobs given: '%s'"
msgstr ""

J
Jiang Xin 已提交
1716
#: builtin/diff.c:370
1717 1718 1719 1720 1721 1722 1723 1724
#, c-format
msgid "unhandled object '%s' given."
msgstr ""

#: builtin/fetch.c:200
msgid "Couldn't find remote ref HEAD"
msgstr ""

1725
#: builtin/fetch.c:253
1726 1727 1728 1729
#, c-format
msgid "object %s not found"
msgstr ""

1730
#: builtin/fetch.c:259
1731 1732 1733
msgid "[up to date]"
msgstr ""

1734
#: builtin/fetch.c:273
1735 1736 1737 1738
#, c-format
msgid "! %-*s %-*s -> %s  (can't fetch in current branch)"
msgstr ""

1739
#: builtin/fetch.c:274 builtin/fetch.c:360
1740 1741 1742
msgid "[rejected]"
msgstr ""

1743
#: builtin/fetch.c:285
1744 1745 1746
msgid "[tag update]"
msgstr ""

1747
#: builtin/fetch.c:287 builtin/fetch.c:322 builtin/fetch.c:340
1748 1749 1750
msgid "  (unable to update local ref)"
msgstr ""

1751
#: builtin/fetch.c:305
1752 1753 1754
msgid "[new tag]"
msgstr ""

1755
#: builtin/fetch.c:308
1756 1757 1758
msgid "[new branch]"
msgstr ""

1759 1760 1761 1762 1763
#: builtin/fetch.c:311
msgid "[new ref]"
msgstr ""

#: builtin/fetch.c:356
1764 1765 1766
msgid "unable to update local ref"
msgstr ""

1767
#: builtin/fetch.c:356
1768 1769 1770
msgid "forced update"
msgstr ""

1771
#: builtin/fetch.c:362
1772 1773 1774
msgid "(non-fast-forward)"
msgstr ""

1775
#: builtin/fetch.c:393 builtin/fetch.c:685
1776 1777 1778 1779
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""

1780
#: builtin/fetch.c:402
1781 1782 1783 1784
#, c-format
msgid "%s did not send all necessary objects\n"
msgstr ""

1785
#: builtin/fetch.c:488
1786 1787 1788 1789
#, c-format
msgid "From %.*s\n"
msgstr ""

1790
#: builtin/fetch.c:499
1791 1792 1793 1794 1795 1796
#, c-format
msgid ""
"some local refs could not be updated; try running\n"
" 'git remote prune %s' to remove any old, conflicting branches"
msgstr ""

1797
#: builtin/fetch.c:549
1798 1799 1800 1801
#, c-format
msgid "   (%s will become dangling)\n"
msgstr ""

1802
#: builtin/fetch.c:550
1803 1804 1805 1806
#, c-format
msgid "   (%s has become dangling)\n"
msgstr ""

1807
#: builtin/fetch.c:557
1808 1809 1810
msgid "[deleted]"
msgstr ""

1811
#: builtin/fetch.c:558
1812 1813 1814
msgid "(none)"
msgstr ""

1815
#: builtin/fetch.c:675
1816 1817 1818 1819
#, c-format
msgid "Refusing to fetch into current branch %s of non-bare repository"
msgstr ""

1820
#: builtin/fetch.c:709
1821 1822 1823 1824
#, c-format
msgid "Don't know how to fetch from %s"
msgstr ""

1825
#: builtin/fetch.c:786
1826 1827 1828 1829
#, c-format
msgid "Option \"%s\" value \"%s\" is not valid for %s"
msgstr ""

1830
#: builtin/fetch.c:789
1831 1832 1833 1834
#, c-format
msgid "Option \"%s\" is ignored for %s\n"
msgstr ""

1835
#: builtin/fetch.c:888
1836 1837 1838 1839
#, c-format
msgid "Fetching %s\n"
msgstr ""

1840
#: builtin/fetch.c:890
1841 1842 1843 1844
#, c-format
msgid "Could not fetch %s"
msgstr ""

1845
#: builtin/fetch.c:907
1846 1847 1848 1849 1850
msgid ""
"No remote repository specified.  Please, specify either a URL or a\n"
"remote name from which new revisions should be fetched."
msgstr ""

1851
#: builtin/fetch.c:927
1852 1853 1854
msgid "You need to specify a tag name."
msgstr ""

1855
#: builtin/fetch.c:979
1856 1857 1858
msgid "fetch --all does not take a repository argument"
msgstr ""

1859
#: builtin/fetch.c:981
1860 1861 1862
msgid "fetch --all does not make sense with refspecs"
msgstr ""

1863
#: builtin/fetch.c:992
1864 1865 1866 1867
#, c-format
msgid "No such remote or remote group: %s"
msgstr ""

1868
#: builtin/fetch.c:1000
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902
msgid "Fetching a group and specifying refspecs does not make sense"
msgstr ""

#: builtin/gc.c:63
#, c-format
msgid "Invalid %s: '%s'"
msgstr ""

#: builtin/gc.c:78
msgid "Too many options specified"
msgstr ""

#: builtin/gc.c:103
#, c-format
msgid "insanely long object directory %.*s"
msgstr ""

#: builtin/gc.c:223
#, c-format
msgid "Auto packing the repository for optimum performance.\n"
msgstr ""

#: builtin/gc.c:226
#, c-format
msgid ""
"Auto packing the repository for optimum performance. You may also\n"
"run \"git gc\" manually. See \"git help gc\" for more information.\n"
msgstr ""

#: builtin/gc.c:256
msgid ""
"There are too many unreachable loose objects; run 'git prune' to remove them."
msgstr ""

1903
#: builtin/grep.c:216
1904 1905 1906 1907
#, c-format
msgid "grep: failed to create thread: %s"
msgstr ""

1908
#: builtin/grep.c:402
1909 1910 1911 1912
#, c-format
msgid "Failed to chdir: %s"
msgstr ""

1913
#: builtin/grep.c:478 builtin/grep.c:512
1914 1915 1916 1917
#, c-format
msgid "unable to read tree (%s)"
msgstr ""

1918
#: builtin/grep.c:526
1919 1920 1921 1922
#, c-format
msgid "unable to grep from object of type %s"
msgstr ""

1923
#: builtin/grep.c:584
1924 1925 1926 1927
#, c-format
msgid "switch `%c' expects a numerical value"
msgstr ""

1928
#: builtin/grep.c:601
1929 1930 1931 1932
#, c-format
msgid "cannot open '%s'"
msgstr ""

J
Jiang Xin 已提交
1933
#: builtin/grep.c:888
1934 1935 1936
msgid "no pattern given."
msgstr ""

J
Jiang Xin 已提交
1937
#: builtin/grep.c:902
1938 1939 1940 1941
#, c-format
msgid "bad object %s"
msgstr ""

J
Jiang Xin 已提交
1942
#: builtin/grep.c:943
1943 1944 1945
msgid "--open-files-in-pager only works on the worktree"
msgstr ""

J
Jiang Xin 已提交
1946
#: builtin/grep.c:966
1947 1948 1949
msgid "--cached or --untracked cannot be used with --no-index."
msgstr ""

J
Jiang Xin 已提交
1950
#: builtin/grep.c:971
1951 1952 1953
msgid "--no-index or --untracked cannot be used with revs."
msgstr ""

J
Jiang Xin 已提交
1954
#: builtin/grep.c:974
1955 1956 1957
msgid "--[no-]exclude-standard cannot be used for tracked contents."
msgstr ""

J
Jiang Xin 已提交
1958
#: builtin/grep.c:982
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
msgid "both --cached and trees are given."
msgstr ""

#: builtin/init-db.c:35
#, c-format
msgid "Could not make %s writable by group"
msgstr ""

#: builtin/init-db.c:62
#, c-format
msgid "insanely long template name %s"
msgstr ""

#: builtin/init-db.c:67
#, c-format
msgid "cannot stat '%s'"
msgstr ""

#: builtin/init-db.c:73
#, c-format
msgid "cannot stat template '%s'"
msgstr ""

#: builtin/init-db.c:80
#, c-format
msgid "cannot opendir '%s'"
msgstr ""

#: builtin/init-db.c:97
#, c-format
msgid "cannot readlink '%s'"
msgstr ""

#: builtin/init-db.c:99
#, c-format
msgid "insanely long symlink %s"
msgstr ""

#: builtin/init-db.c:102
#, c-format
msgid "cannot symlink '%s' '%s'"
msgstr ""

#: builtin/init-db.c:106
#, c-format
msgid "cannot copy '%s' to '%s'"
msgstr ""

#: builtin/init-db.c:110
#, c-format
msgid "ignoring template %s"
msgstr ""

#: builtin/init-db.c:133
#, c-format
msgid "insanely long template path %s"
msgstr ""

#: builtin/init-db.c:141
#, c-format
msgid "templates not found %s"
msgstr ""

#: builtin/init-db.c:154
#, c-format
msgid "not copying templates of a wrong format version %d from '%s'"
msgstr ""

#: builtin/init-db.c:192
#, c-format
msgid "insane git directory %s"
msgstr ""

#: builtin/init-db.c:322 builtin/init-db.c:325
#, c-format
msgid "%s already exists"
msgstr ""

#: builtin/init-db.c:354
#, c-format
msgid "unable to handle file type %d"
msgstr ""

#: builtin/init-db.c:357
#, c-format
msgid "unable to move %s to %s"
msgstr ""

#: builtin/init-db.c:362
#, c-format
msgid "Could not create git link %s"
msgstr ""

#.
#. * TRANSLATORS: The first '%s' is either "Reinitialized
#. * existing" or "Initialized empty", the second " shared" or
#. * "", and the last '%s%s' is the verbatim directory name.
#.
#: builtin/init-db.c:419
#, c-format
msgid "%s%s Git repository in %s%s\n"
msgstr ""

#: builtin/init-db.c:420
msgid "Reinitialized existing"
msgstr ""

#: builtin/init-db.c:420
msgid "Initialized empty"
msgstr ""

#: builtin/init-db.c:421
msgid " shared"
msgstr ""

#: builtin/init-db.c:440
msgid "cannot tell cwd"
msgstr ""

#: builtin/init-db.c:521 builtin/init-db.c:528
#, c-format
msgid "cannot mkdir %s"
msgstr ""

#: builtin/init-db.c:532
#, c-format
msgid "cannot chdir to %s"
msgstr ""

#: builtin/init-db.c:554
#, c-format
msgid ""
"%s (or --work-tree=<directory>) not allowed without specifying %s (or --git-"
"dir=<directory>)"
msgstr ""

#: builtin/init-db.c:578
msgid "Cannot access current working directory"
msgstr ""

#: builtin/init-db.c:585
#, c-format
msgid "Cannot access work tree '%s'"
msgstr ""

J
Jiang Xin 已提交
2104
#: builtin/log.c:187
2105 2106 2107 2108
#, c-format
msgid "Final output: %d %s\n"
msgstr ""

J
Jiang Xin 已提交
2109
#: builtin/log.c:395 builtin/log.c:483
2110 2111 2112 2113
#, c-format
msgid "Could not read object %s"
msgstr ""

J
Jiang Xin 已提交
2114
#: builtin/log.c:507
2115 2116 2117 2118
#, c-format
msgid "Unknown type: %d"
msgstr ""

J
Jiang Xin 已提交
2119
#: builtin/log.c:596
2120 2121 2122
msgid "format.headers without value"
msgstr ""

J
Jiang Xin 已提交
2123
#: builtin/log.c:669
2124 2125 2126
msgid "name of output directory is too long"
msgstr ""

J
Jiang Xin 已提交
2127
#: builtin/log.c:680
2128 2129 2130 2131
#, c-format
msgid "Cannot open patch file %s"
msgstr ""

J
Jiang Xin 已提交
2132
#: builtin/log.c:694
2133 2134 2135
msgid "Need exactly one range."
msgstr ""

J
Jiang Xin 已提交
2136
#: builtin/log.c:702
2137 2138 2139
msgid "Not a range."
msgstr ""

J
Jiang Xin 已提交
2140
#: builtin/log.c:739
2141 2142 2143
msgid "Could not extract email from committer identity."
msgstr ""

J
Jiang Xin 已提交
2144
#: builtin/log.c:785
2145 2146 2147
msgid "Cover letter needs email format"
msgstr ""

J
Jiang Xin 已提交
2148
#: builtin/log.c:879
2149 2150 2151 2152
#, c-format
msgid "insane in-reply-to: %s"
msgstr ""

J
Jiang Xin 已提交
2153
#: builtin/log.c:952
2154 2155 2156
msgid "Two output directories?"
msgstr ""

J
Jiang Xin 已提交
2157
#: builtin/log.c:1173
2158 2159 2160 2161
#, c-format
msgid "bogus committer info %s"
msgstr ""

J
Jiang Xin 已提交
2162
#: builtin/log.c:1218
2163 2164 2165
msgid "-n and -k are mutually exclusive."
msgstr ""

J
Jiang Xin 已提交
2166
#: builtin/log.c:1220
2167 2168 2169
msgid "--subject-prefix and -k are mutually exclusive."
msgstr ""

J
Jiang Xin 已提交
2170
#: builtin/log.c:1225 builtin/shortlog.c:284
2171 2172 2173 2174
#, c-format
msgid "unrecognized argument: %s"
msgstr ""

J
Jiang Xin 已提交
2175
#: builtin/log.c:1228
2176 2177 2178
msgid "--name-only does not make sense"
msgstr ""

J
Jiang Xin 已提交
2179
#: builtin/log.c:1230
2180 2181 2182
msgid "--name-status does not make sense"
msgstr ""

J
Jiang Xin 已提交
2183
#: builtin/log.c:1232
2184 2185 2186
msgid "--check does not make sense"
msgstr ""

J
Jiang Xin 已提交
2187
#: builtin/log.c:1255
2188 2189 2190
msgid "standard output, or directory, which one?"
msgstr ""

J
Jiang Xin 已提交
2191
#: builtin/log.c:1257
2192 2193 2194 2195
#, c-format
msgid "Could not create directory '%s'"
msgstr ""

J
Jiang Xin 已提交
2196
#: builtin/log.c:1410
2197 2198 2199
msgid "Failed to create output files"
msgstr ""

J
Jiang Xin 已提交
2200
#: builtin/log.c:1514
2201 2202 2203 2204 2205
#, c-format
msgid ""
"Could not find a tracked remote branch, please specify <upstream> manually.\n"
msgstr ""

J
Jiang Xin 已提交
2206
#: builtin/log.c:1530 builtin/log.c:1532 builtin/log.c:1544
2207 2208 2209 2210
#, c-format
msgid "Unknown commit %s"
msgstr ""

2211
#: builtin/merge.c:90
2212 2213 2214
msgid "switch `m' requires a value"
msgstr ""

2215
#: builtin/merge.c:127
2216 2217 2218 2219
#, c-format
msgid "Could not find merge strategy '%s'.\n"
msgstr ""

2220
#: builtin/merge.c:128
2221 2222 2223 2224
#, c-format
msgid "Available strategies are:"
msgstr ""

2225
#: builtin/merge.c:133
2226 2227 2228 2229
#, c-format
msgid "Available custom strategies are:"
msgstr ""

2230
#: builtin/merge.c:240
2231 2232 2233
msgid "could not run stash."
msgstr ""

2234
#: builtin/merge.c:245
2235 2236 2237
msgid "stash failed"
msgstr ""

2238
#: builtin/merge.c:250
2239 2240 2241 2242
#, c-format
msgid "not a valid object: %s"
msgstr ""

2243
#: builtin/merge.c:269 builtin/merge.c:286
2244 2245 2246
msgid "read-tree failed"
msgstr ""

2247
#: builtin/merge.c:316
2248 2249 2250
msgid " (nothing to squash)"
msgstr ""

2251
#: builtin/merge.c:329
2252 2253 2254 2255
#, c-format
msgid "Squash commit -- not updating HEAD\n"
msgstr ""

2256
#: builtin/merge.c:361
2257 2258 2259
msgid "Writing SQUASH_MSG"
msgstr ""

2260
#: builtin/merge.c:363
2261 2262 2263 2264 2265 2266 2267 2268
msgid "Finishing SQUASH_MSG"
msgstr ""

#: builtin/merge.c:386
#, c-format
msgid "No merge message -- not updating HEAD\n"
msgstr ""

J
Jiang Xin 已提交
2269
#: builtin/merge.c:437
2270 2271 2272 2273
#, c-format
msgid "'%s' does not point to a commit"
msgstr ""

J
Jiang Xin 已提交
2274
#: builtin/merge.c:536
2275 2276 2277 2278
#, c-format
msgid "Bad branch.%s.mergeoptions string: %s"
msgstr ""

J
Jiang Xin 已提交
2279
#: builtin/merge.c:629
2280 2281 2282
msgid "git write-tree failed to write a tree"
msgstr ""

J
Jiang Xin 已提交
2283
#: builtin/merge.c:679
2284 2285 2286
msgid "failed to read the cache"
msgstr ""

2287
#: builtin/merge.c:697
2288 2289 2290
msgid "Unable to write index."
msgstr ""

2291
#: builtin/merge.c:710
2292 2293 2294
msgid "Not handling anything other than two heads merge."
msgstr ""

2295
#: builtin/merge.c:724
2296 2297 2298 2299
#, c-format
msgid "Unknown option for merge-recursive: -X%s"
msgstr ""

2300
#: builtin/merge.c:738
2301 2302 2303 2304
#, c-format
msgid "unable to write %s"
msgstr ""

2305
#: builtin/merge.c:877
2306 2307 2308 2309
#, c-format
msgid "Could not read from '%s'"
msgstr ""

2310
#: builtin/merge.c:886
2311 2312 2313 2314
#, c-format
msgid "Not committing merge; use 'git commit' to complete the merge.\n"
msgstr ""

2315
#: builtin/merge.c:892
2316 2317 2318 2319 2320 2321 2322 2323
msgid ""
"Please enter a commit message to explain why this merge is necessary,\n"
"especially if it merges an updated upstream into a topic branch.\n"
"\n"
"Lines starting with '#' will be ignored, and an empty message aborts\n"
"the commit.\n"
msgstr ""

2324
#: builtin/merge.c:916
2325 2326 2327
msgid "Empty commit message."
msgstr ""

2328
#: builtin/merge.c:928
2329 2330 2331 2332
#, c-format
msgid "Wonderful.\n"
msgstr ""

2333
#: builtin/merge.c:993
2334 2335 2336 2337
#, c-format
msgid "Automatic merge failed; fix conflicts and then commit the result.\n"
msgstr ""

2338
#: builtin/merge.c:1009
2339 2340 2341 2342
#, c-format
msgid "'%s' is not a commit"
msgstr ""

2343
#: builtin/merge.c:1050
2344 2345 2346
msgid "No current branch."
msgstr ""

2347
#: builtin/merge.c:1052
2348 2349 2350
msgid "No remote for the current branch."
msgstr ""

2351
#: builtin/merge.c:1054
2352 2353 2354
msgid "No default upstream defined for the current branch."
msgstr ""

2355
#: builtin/merge.c:1059
2356 2357 2358 2359
#, c-format
msgid "No remote tracking branch for %s from %s"
msgstr ""

2360 2361 2362 2363 2364 2365
#: builtin/merge.c:1146 builtin/merge.c:1303
#, c-format
msgid "%s - not something we can merge"
msgstr ""

#: builtin/merge.c:1214
2366 2367 2368
msgid "There is no merge to abort (MERGE_HEAD missing)."
msgstr ""

2369
#: builtin/merge.c:1230 git-pull.sh:31
2370 2371 2372 2373 2374
msgid ""
"You have not concluded your merge (MERGE_HEAD exists).\n"
"Please, commit your changes before you can merge."
msgstr ""

2375
#: builtin/merge.c:1233 git-pull.sh:34
2376 2377 2378
msgid "You have not concluded your merge (MERGE_HEAD exists)."
msgstr ""

2379
#: builtin/merge.c:1237
2380 2381 2382 2383 2384
msgid ""
"You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
"Please, commit your changes before you can merge."
msgstr ""

2385
#: builtin/merge.c:1240
2386 2387 2388
msgid "You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."
msgstr ""

2389
#: builtin/merge.c:1249
2390 2391 2392
msgid "You cannot combine --squash with --no-ff."
msgstr ""

2393
#: builtin/merge.c:1254
2394 2395 2396
msgid "You cannot combine --no-ff with --ff-only."
msgstr ""

2397
#: builtin/merge.c:1261
2398 2399 2400
msgid "No commit specified and merge.defaultToUpstream not set."
msgstr ""

2401
#: builtin/merge.c:1293
2402 2403 2404
msgid "Can merge only exactly one commit into empty head"
msgstr ""

2405
#: builtin/merge.c:1296
2406 2407 2408
msgid "Squash commit into empty head not supported yet"
msgstr ""

2409
#: builtin/merge.c:1298
2410 2411 2412
msgid "Non-fast-forward commit does not make sense into an empty head"
msgstr ""

2413
#: builtin/merge.c:1413
2414 2415 2416 2417
#, c-format
msgid "Updating %s..%s\n"
msgstr ""

2418
#: builtin/merge.c:1451
2419 2420 2421 2422
#, c-format
msgid "Trying really trivial in-index merge...\n"
msgstr ""

2423
#: builtin/merge.c:1458
2424 2425 2426 2427
#, c-format
msgid "Nope.\n"
msgstr ""

2428
#: builtin/merge.c:1490
2429 2430 2431
msgid "Not possible to fast-forward, aborting."
msgstr ""

2432
#: builtin/merge.c:1513 builtin/merge.c:1592
2433 2434 2435 2436
#, c-format
msgid "Rewinding the tree to pristine...\n"
msgstr ""

2437
#: builtin/merge.c:1517
2438 2439 2440 2441
#, c-format
msgid "Trying merge strategy %s...\n"
msgstr ""

2442
#: builtin/merge.c:1583
2443 2444 2445 2446
#, c-format
msgid "No merge strategy handled the merge.\n"
msgstr ""

2447
#: builtin/merge.c:1585
2448 2449 2450 2451
#, c-format
msgid "Merge with strategy %s failed.\n"
msgstr ""

2452
#: builtin/merge.c:1594
2453 2454 2455 2456
#, c-format
msgid "Using the %s to prepare resolving by hand.\n"
msgstr ""

2457
#: builtin/merge.c:1606
2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542
#, c-format
msgid "Automatic merge went well; stopped before committing as requested\n"
msgstr ""

#: builtin/mv.c:108
#, c-format
msgid "Checking rename of '%s' to '%s'\n"
msgstr ""

#: builtin/mv.c:112
msgid "bad source"
msgstr ""

#: builtin/mv.c:115
msgid "can not move directory into itself"
msgstr ""

#: builtin/mv.c:118
msgid "cannot move directory over file"
msgstr ""

#: builtin/mv.c:128
#, c-format
msgid "Huh? %.*s is in index?"
msgstr ""

#: builtin/mv.c:140
msgid "source directory is empty"
msgstr ""

#: builtin/mv.c:171
msgid "not under version control"
msgstr ""

#: builtin/mv.c:173
msgid "destination exists"
msgstr ""

#: builtin/mv.c:181
#, c-format
msgid "overwriting '%s'"
msgstr ""

#: builtin/mv.c:184
msgid "Cannot overwrite"
msgstr ""

#: builtin/mv.c:187
msgid "multiple sources for the same target"
msgstr ""

#: builtin/mv.c:202
#, c-format
msgid "%s, source=%s, destination=%s"
msgstr ""

#: builtin/mv.c:212
#, c-format
msgid "Renaming %s to %s\n"
msgstr ""

#: builtin/mv.c:215
#, c-format
msgid "renaming '%s' failed"
msgstr ""

#: builtin/notes.c:139
#, c-format
msgid "unable to start 'show' for object '%s'"
msgstr ""

#: builtin/notes.c:145
msgid "can't fdopen 'show' output fd"
msgstr ""

#: builtin/notes.c:155
#, c-format
msgid "failed to close pipe to 'show' for object '%s'"
msgstr ""

#: builtin/notes.c:158
#, c-format
msgid "failed to finish 'show' for object '%s'"
msgstr ""

2543
#: builtin/notes.c:175 builtin/tag.c:343
2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565
#, c-format
msgid "could not create file '%s'"
msgstr ""

#: builtin/notes.c:189
msgid "Please supply the note contents using either -m or -F option"
msgstr ""

#: builtin/notes.c:210 builtin/notes.c:973
#, c-format
msgid "Removing note for object %s\n"
msgstr ""

#: builtin/notes.c:215
msgid "unable to write note object"
msgstr ""

#: builtin/notes.c:217
#, c-format
msgid "The note contents has been left in %s"
msgstr ""

2566
#: builtin/notes.c:251 builtin/tag.c:521
2567 2568 2569 2570
#, c-format
msgid "cannot read '%s'"
msgstr ""

2571
#: builtin/notes.c:253 builtin/tag.c:524
2572 2573 2574 2575 2576 2577 2578
#, c-format
msgid "could not open or read '%s'"
msgstr ""

#: builtin/notes.c:272 builtin/notes.c:445 builtin/notes.c:447
#: builtin/notes.c:507 builtin/notes.c:561 builtin/notes.c:644
#: builtin/notes.c:649 builtin/notes.c:724 builtin/notes.c:766
2579
#: builtin/notes.c:968 builtin/reset.c:293 builtin/tag.c:537
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675
#, c-format
msgid "Failed to resolve '%s' as a valid ref."
msgstr ""

#: builtin/notes.c:275
#, c-format
msgid "Failed to read object '%s'."
msgstr ""

#: builtin/notes.c:299
msgid "Cannot commit uninitialized/unreferenced notes tree"
msgstr ""

#: builtin/notes.c:340
#, c-format
msgid "Bad notes.rewriteMode value: '%s'"
msgstr ""

#: builtin/notes.c:350
#, c-format
msgid "Refusing to rewrite notes in %s (outside of refs/notes/)"
msgstr ""

#. TRANSLATORS: The first %s is the name of the
#. environment variable, the second %s is its value
#: builtin/notes.c:377
#, c-format
msgid "Bad %s value: '%s'"
msgstr ""

#: builtin/notes.c:441
#, c-format
msgid "Malformed input line: '%s'."
msgstr ""

#: builtin/notes.c:456
#, c-format
msgid "Failed to copy notes from '%s' to '%s'"
msgstr ""

#: builtin/notes.c:500 builtin/notes.c:554 builtin/notes.c:627
#: builtin/notes.c:639 builtin/notes.c:712 builtin/notes.c:759
#: builtin/notes.c:1033
msgid "too many parameters"
msgstr ""

#: builtin/notes.c:513 builtin/notes.c:772
#, c-format
msgid "No note found for object %s."
msgstr ""

#: builtin/notes.c:580
#, c-format
msgid ""
"Cannot add notes. Found existing notes for object %s. Use '-f' to overwrite "
"existing notes"
msgstr ""

#: builtin/notes.c:585 builtin/notes.c:662
#, c-format
msgid "Overwriting existing notes for object %s\n"
msgstr ""

#: builtin/notes.c:635
msgid "too few parameters"
msgstr ""

#: builtin/notes.c:656
#, c-format
msgid ""
"Cannot copy notes. Found existing notes for object %s. Use '-f' to overwrite "
"existing notes"
msgstr ""

#: builtin/notes.c:668
#, c-format
msgid "Missing notes on source object %s. Cannot copy."
msgstr ""

#: builtin/notes.c:717
#, c-format
msgid ""
"The -m/-F/-c/-C options have been deprecated for the 'edit' subcommand.\n"
"Please use 'git notes add -f -m/-F/-c/-C' instead.\n"
msgstr ""

#: builtin/notes.c:971
#, c-format
msgid "Object %s has no note\n"
msgstr ""

#: builtin/notes.c:1103
#, c-format
msgid "Unknown subcommand: %s"
msgstr ""

2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
#: builtin/pack-objects.c:2310
#, c-format
msgid "unsupported index version %s"
msgstr ""

#: builtin/pack-objects.c:2314
#, c-format
msgid "bad index version '%s'"
msgstr ""

#: builtin/pack-objects.c:2322
#, c-format
msgid "option %s does not accept negative form"
msgstr ""

#: builtin/pack-objects.c:2326
#, c-format
msgid "unable to parse value '%s' for option %s"
msgstr ""

2696 2697 2698 2699 2700 2701 2702 2703
#: builtin/push.c:44
msgid "tag shorthand without <tag>"
msgstr ""

#: builtin/push.c:63
msgid "--delete only accepts plain target ref names"
msgstr ""

2704
#: builtin/push.c:83
2705 2706 2707 2708 2709 2710 2711 2712 2713
#, c-format
msgid ""
"You are not currently on a branch.\n"
"To push the history leading to the current (detached HEAD)\n"
"state now, use\n"
"\n"
"    git push %s HEAD:<name-of-remote-branch>\n"
msgstr ""

2714
#: builtin/push.c:90
2715 2716 2717 2718 2719 2720 2721 2722
#, c-format
msgid ""
"The current branch %s has no upstream branch.\n"
"To push the current branch and set the remote as upstream, use\n"
"\n"
"    git push --set-upstream %s %s\n"
msgstr ""

2723
#: builtin/push.c:98
2724 2725 2726 2727
#, c-format
msgid "The current branch %s has multiple upstream branches, refusing to push."
msgstr ""

2728 2729 2730 2731 2732 2733 2734 2735 2736
#: builtin/push.c:101
#, c-format
msgid ""
"You are pushing to remote '%s', which is not the upstream of\n"
"your current branch '%s', without telling me what to push\n"
"to update which remote branch."
msgstr ""

#: builtin/push.c:127
2737 2738 2739 2740
msgid ""
"You didn't specify any refspecs to push, and push.default is \"nothing\"."
msgstr ""

2741
#: builtin/push.c:147
2742 2743 2744 2745
#, c-format
msgid "Pushing to %s\n"
msgstr ""

2746
#: builtin/push.c:151
2747 2748 2749 2750
#, c-format
msgid "failed to push some refs to '%s'"
msgstr ""

2751
#: builtin/push.c:159
2752 2753 2754 2755 2756 2757 2758
#, c-format
msgid ""
"To prevent you from losing history, non-fast-forward updates were rejected\n"
"Merge the remote changes (e.g. 'git pull') before pushing again.  See the\n"
"'Note about fast-forwards' section of 'git push --help' for details.\n"
msgstr ""

2759
#: builtin/push.c:176
2760 2761 2762 2763
#, c-format
msgid "bad repository '%s'"
msgstr ""

2764
#: builtin/push.c:177
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776
msgid ""
"No configured push destination.\n"
"Either specify the URL from the command-line or configure a remote "
"repository using\n"
"\n"
"    git remote add <name> <url>\n"
"\n"
"and then push using the remote name\n"
"\n"
"    git push <name>\n"
msgstr ""

2777
#: builtin/push.c:192
2778 2779 2780
msgid "--all and --tags are incompatible"
msgstr ""

2781
#: builtin/push.c:193
2782 2783 2784
msgid "--all can't be combined with refspecs"
msgstr ""

2785
#: builtin/push.c:198
2786 2787 2788
msgid "--mirror and --tags are incompatible"
msgstr ""

2789
#: builtin/push.c:199
2790 2791 2792
msgid "--mirror can't be combined with refspecs"
msgstr ""

2793
#: builtin/push.c:204
2794 2795 2796
msgid "--all and --mirror are incompatible"
msgstr ""

2797
#: builtin/push.c:284
2798 2799 2800
msgid "--delete is incompatible with --all, --mirror and --tags"
msgstr ""

2801
#: builtin/push.c:286
2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892
msgid "--delete doesn't make sense without any refs"
msgstr ""

#: builtin/reset.c:33
msgid "mixed"
msgstr ""

#: builtin/reset.c:33
msgid "soft"
msgstr ""

#: builtin/reset.c:33
msgid "hard"
msgstr ""

#: builtin/reset.c:33
msgid "keep"
msgstr ""

#: builtin/reset.c:77
msgid "You do not have a valid HEAD."
msgstr ""

#: builtin/reset.c:79
msgid "Failed to find tree of HEAD."
msgstr ""

#: builtin/reset.c:85
#, c-format
msgid "Failed to find tree of %s."
msgstr ""

#: builtin/reset.c:96
msgid "Could not write new index file."
msgstr ""

#: builtin/reset.c:106
#, c-format
msgid "HEAD is now at %s"
msgstr ""

#: builtin/reset.c:130
msgid "Could not read index"
msgstr ""

#: builtin/reset.c:133
msgid "Unstaged changes after reset:"
msgstr ""

#: builtin/reset.c:223
#, c-format
msgid "Cannot do a %s reset in the middle of a merge."
msgstr ""

#: builtin/reset.c:297
#, c-format
msgid "Could not parse object '%s'."
msgstr ""

#: builtin/reset.c:302
msgid "--patch is incompatible with --{hard,mixed,soft}"
msgstr ""

#: builtin/reset.c:311
msgid "--mixed with paths is deprecated; use 'git reset -- <paths>' instead."
msgstr ""

#: builtin/reset.c:313
#, c-format
msgid "Cannot do %s reset with paths."
msgstr ""

#: builtin/reset.c:325
#, c-format
msgid "%s reset is not allowed in a bare repository"
msgstr ""

#: builtin/reset.c:341
#, c-format
msgid "Could not reset index file to revision '%s'."
msgstr ""

#: builtin/revert.c:70 builtin/revert.c:91
#, c-format
msgid "%s: %s cannot be used with %s"
msgstr ""

#: builtin/revert.c:126
msgid "program error"
msgstr ""

2893
#: builtin/revert.c:212
2894 2895 2896
msgid "revert failed"
msgstr ""

2897
#: builtin/revert.c:227
2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
msgid "cherry-pick failed"
msgstr ""

#: builtin/rm.c:109
#, c-format
msgid ""
"'%s' has staged content different from both the file and the HEAD\n"
"(use -f to force removal)"
msgstr ""

#: builtin/rm.c:115
#, c-format
msgid ""
"'%s' has changes staged in the index\n"
"(use --cached to keep the file, or -f to force removal)"
msgstr ""

#: builtin/rm.c:119
#, c-format
msgid ""
"'%s' has local modifications\n"
"(use --cached to keep the file, or -f to force removal)"
msgstr ""

#: builtin/rm.c:194
#, c-format
msgid "not removing '%s' recursively without -r"
msgstr ""

#: builtin/rm.c:230
#, c-format
msgid "git rm: unable to remove %s"
msgstr ""

#: builtin/shortlog.c:157
#, c-format
msgid "Missing author: %s"
msgstr ""

2937 2938 2939 2940 2941 2942
#: builtin/tag.c:58
#, c-format
msgid "malformed object at '%s'"
msgstr ""

#: builtin/tag.c:205
2943 2944 2945 2946
#, c-format
msgid "tag name too long: %.*s..."
msgstr ""

2947
#: builtin/tag.c:210
2948 2949 2950 2951
#, c-format
msgid "tag '%s' not found."
msgstr ""

2952
#: builtin/tag.c:225
2953 2954 2955 2956
#, c-format
msgid "Deleted tag '%s' (was %s)\n"
msgstr ""

2957
#: builtin/tag.c:237
2958 2959 2960 2961
#, c-format
msgid "could not verify the tag '%s'"
msgstr ""

2962
#: builtin/tag.c:247
2963 2964 2965 2966 2967 2968 2969 2970
msgid ""
"\n"
"#\n"
"# Write a tag message\n"
"# Lines starting with '#' will be ignored.\n"
"#\n"
msgstr ""

2971
#: builtin/tag.c:254
2972 2973 2974 2975 2976 2977 2978 2979 2980
msgid ""
"\n"
"#\n"
"# Write a tag message\n"
"# Lines starting with '#' will be kept; you may remove them yourself if you "
"want to.\n"
"#\n"
msgstr ""

2981
#: builtin/tag.c:294
2982 2983 2984
msgid "unable to sign the tag"
msgstr ""

2985
#: builtin/tag.c:296
2986 2987 2988
msgid "unable to write tag file"
msgstr ""

2989
#: builtin/tag.c:321
2990 2991 2992
msgid "bad object type."
msgstr ""

2993
#: builtin/tag.c:334
2994 2995 2996
msgid "tag header too big."
msgstr ""

2997
#: builtin/tag.c:366
2998 2999 3000
msgid "no tag message?"
msgstr ""

3001
#: builtin/tag.c:372
3002 3003 3004 3005
#, c-format
msgid "The tag message has been left in %s\n"
msgstr ""

3006 3007 3008 3009 3010 3011 3012 3013 3014 3015
#: builtin/tag.c:421
msgid "switch 'points-at' requires an object"
msgstr ""

#: builtin/tag.c:423
#, c-format
msgid "malformed object name '%s'"
msgstr ""

#: builtin/tag.c:502
3016 3017 3018
msgid "-n option is only allowed with -l."
msgstr ""

3019
#: builtin/tag.c:504
3020 3021 3022
msgid "--contains option is only allowed with -l."
msgstr ""

3023 3024 3025 3026 3027
#: builtin/tag.c:506
msgid "--points-at option is only allowed with -l."
msgstr ""

#: builtin/tag.c:514
3028 3029 3030
msgid "only one -F or -m option is allowed."
msgstr ""

3031
#: builtin/tag.c:534
3032 3033 3034
msgid "too many params"
msgstr ""

3035
#: builtin/tag.c:540
3036 3037 3038 3039
#, c-format
msgid "'%s' is not a valid tag name."
msgstr ""

3040
#: builtin/tag.c:545
3041 3042 3043 3044
#, c-format
msgid "tag '%s' already exists"
msgstr ""

3045
#: builtin/tag.c:563
3046 3047 3048 3049
#, c-format
msgid "%s: cannot lock the ref"
msgstr ""

3050
#: builtin/tag.c:565
3051 3052 3053 3054
#, c-format
msgid "%s: cannot update the ref"
msgstr ""

3055
#: builtin/tag.c:567
3056 3057 3058 3059 3060 3061 3062 3063
#, c-format
msgid "Updated tag '%s' (was %s)\n"
msgstr ""

#: git-am.sh:49
msgid "You need to set your committer info first"
msgstr ""

J
Jiang Xin 已提交
3064
#: git-am.sh:136
3065 3066 3067
msgid "Repository lacks necessary blobs to fall back on 3-way merge."
msgstr ""

J
Jiang Xin 已提交
3068
#: git-am.sh:147
3069 3070 3071 3072 3073
msgid ""
"Did you hand edit your patch?\n"
"It does not apply to blobs recorded in its index."
msgstr ""

J
Jiang Xin 已提交
3074
#: git-am.sh:156
3075 3076 3077
msgid "Falling back to patching base and 3-way merge..."
msgstr ""

J
Jiang Xin 已提交
3078
#: git-am.sh:268
3079 3080 3081
msgid "Only one StGIT patch series can be applied at once"
msgstr ""

J
Jiang Xin 已提交
3082
#: git-am.sh:355
3083 3084 3085 3086
#, sh-format
msgid "Patch format $patch_format is not supported."
msgstr ""

J
Jiang Xin 已提交
3087
#: git-am.sh:357
3088 3089 3090
msgid "Patch format detection failed."
msgstr ""

J
Jiang Xin 已提交
3091
#: git-am.sh:411
3092 3093 3094
msgid "-d option is no longer supported.  Do not use."
msgstr ""

J
Jiang Xin 已提交
3095
#: git-am.sh:474
3096 3097 3098 3099
#, sh-format
msgid "previous rebase directory $dotest still exists but mbox given."
msgstr ""

J
Jiang Xin 已提交
3100
#: git-am.sh:479
3101 3102 3103
msgid "Please make up your mind. --skip or --abort?"
msgstr ""

J
Jiang Xin 已提交
3104
#: git-am.sh:506
3105 3106 3107
msgid "Resolve operation not in progress, we are not resuming."
msgstr ""

J
Jiang Xin 已提交
3108
#: git-am.sh:572
3109 3110 3111 3112
#, sh-format
msgid "Dirty index: cannot apply patches (dirty: $files)"
msgstr ""

J
Jiang Xin 已提交
3113
#: git-am.sh:748
3114 3115 3116 3117 3118 3119
msgid "cannot be interactive without stdin connected to a terminal."
msgstr ""

#. TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
#. in your translation. The program will only accept English
#. input at this point.
J
Jiang Xin 已提交
3120
#: git-am.sh:759
3121 3122 3123
msgid "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all "
msgstr ""

J
Jiang Xin 已提交
3124
#: git-am.sh:795
3125 3126 3127 3128
#, sh-format
msgid "Applying: $FIRSTLINE"
msgstr ""

J
Jiang Xin 已提交
3129
#: git-am.sh:840
3130 3131 3132
msgid "No changes -- Patch already applied."
msgstr ""

J
Jiang Xin 已提交
3133
#: git-am.sh:866
3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241
msgid "applying to an empty history"
msgstr ""

#. TRANSLATORS: Make sure to include [Y] and [n] in your
#. translation. The program will only accept English input
#. at this point.
#: git-bisect.sh:54
msgid "Do you want me to do it for you [Y/n]? "
msgstr ""

#: git-bisect.sh:95
#, sh-format
msgid "unrecognised option: '$arg'"
msgstr ""

#: git-bisect.sh:99
#, sh-format
msgid "'$arg' does not appear to be a valid revision"
msgstr ""

#: git-bisect.sh:117
msgid "Bad HEAD - I need a HEAD"
msgstr ""

#: git-bisect.sh:130
#, sh-format
msgid ""
"Checking out '$start_head' failed. Try 'git bisect reset <validbranch>'."
msgstr ""

#: git-bisect.sh:140
msgid "won't bisect on seeked tree"
msgstr ""

#: git-bisect.sh:144
msgid "Bad HEAD - strange symbolic ref"
msgstr ""

#: git-bisect.sh:189
#, sh-format
msgid "Bad bisect_write argument: $state"
msgstr ""

#: git-bisect.sh:218
#, sh-format
msgid "Bad rev input: $arg"
msgstr ""

#: git-bisect.sh:232
msgid "Please call 'bisect_state' with at least one argument."
msgstr ""

#: git-bisect.sh:244
#, sh-format
msgid "Bad rev input: $rev"
msgstr ""

#: git-bisect.sh:250
msgid "'git bisect bad' can take only one argument."
msgstr ""

#. TRANSLATORS: Make sure to include [Y] and [n] in your
#. translation. The program will only accept English input
#. at this point.
#: git-bisect.sh:279
msgid "Are you sure [Y/n]? "
msgstr ""

#: git-bisect.sh:354
#, sh-format
msgid "'$invalid' is not a valid commit"
msgstr ""

#: git-bisect.sh:363
#, sh-format
msgid ""
"Could not check out original HEAD '$branch'.\n"
"Try 'git bisect reset <commit>'."
msgstr ""

#: git-bisect.sh:390
msgid "No logfile given"
msgstr ""

#: git-bisect.sh:391
#, sh-format
msgid "cannot read $file for replaying"
msgstr ""

#: git-bisect.sh:408
msgid "?? what are you talking about?"
msgstr ""

#: git-bisect.sh:474
msgid "We are not bisecting."
msgstr ""

#: git-pull.sh:21
msgid ""
"Pull is not possible because you have unmerged files.\n"
"Please, fix them up in the work tree, and then use 'git add/rm <file>'\n"
"as appropriate to mark resolution, or use 'git commit -a'."
msgstr ""

#: git-pull.sh:25
msgid "Pull is not possible because you have unmerged files."
msgstr ""

3242
#: git-pull.sh:197
3243 3244 3245
msgid "updating an unborn branch with changes added to the index"
msgstr ""

3246
#: git-pull.sh:253
3247 3248 3249
msgid "Cannot merge multiple branches into empty head"
msgstr ""

3250
#: git-pull.sh:257
3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369
msgid "Cannot rebase onto multiple branches"
msgstr ""

#: git-stash.sh:51
msgid "git stash clear with parameters is unimplemented"
msgstr ""

#: git-stash.sh:74
msgid "You do not have the initial commit yet"
msgstr ""

#: git-stash.sh:89
msgid "Cannot save the current index state"
msgstr ""

#: git-stash.sh:123 git-stash.sh:136
msgid "Cannot save the current worktree state"
msgstr ""

#: git-stash.sh:140
msgid "No changes selected"
msgstr ""

#: git-stash.sh:143
msgid "Cannot remove temporary index (can't happen)"
msgstr ""

#: git-stash.sh:156
msgid "Cannot record working tree state"
msgstr ""

#: git-stash.sh:223
msgid "No local changes to save"
msgstr ""

#: git-stash.sh:227
msgid "Cannot initialize stash"
msgstr ""

#: git-stash.sh:235
msgid "Cannot save the current status"
msgstr ""

#: git-stash.sh:253
msgid "Cannot remove worktree changes"
msgstr ""

#: git-stash.sh:352
msgid "No stash found."
msgstr ""

#: git-stash.sh:359
#, sh-format
msgid "Too many revisions specified: $REV"
msgstr ""

#: git-stash.sh:365
#, sh-format
msgid "$reference is not valid reference"
msgstr ""

#: git-stash.sh:393
#, sh-format
msgid "'$args' is not a stash-like commit"
msgstr ""

#: git-stash.sh:404
#, sh-format
msgid "'$args' is not a stash reference"
msgstr ""

#: git-stash.sh:412
msgid "unable to refresh index"
msgstr ""

#: git-stash.sh:416
msgid "Cannot apply a stash in the middle of a merge"
msgstr ""

#: git-stash.sh:424
msgid "Conflicts in index. Try without --index."
msgstr ""

#: git-stash.sh:426
msgid "Could not save index tree"
msgstr ""

#: git-stash.sh:460
msgid "Cannot unstage modified files"
msgstr ""

#: git-stash.sh:491
#, sh-format
msgid "Dropped ${REV} ($s)"
msgstr ""

#: git-stash.sh:492
#, sh-format
msgid "${REV}: Could not drop stash entry"
msgstr ""

#: git-stash.sh:499
msgid "No branch name specified"
msgstr ""

#: git-stash.sh:570
msgid "(To restore them type \"git stash apply\")"
msgstr ""

#: git-submodule.sh:56
#, sh-format
msgid "cannot strip one component off url '$remoteurl'"
msgstr ""

#: git-submodule.sh:108
#, sh-format
msgid "No submodule mapping found in .gitmodules for path '$path'"
msgstr ""

J
Jiang Xin 已提交
3370
#: git-submodule.sh:149
3371 3372 3373 3374
#, sh-format
msgid "Clone of '$url' into submodule path '$path' failed"
msgstr ""

J
Jiang Xin 已提交
3375 3376 3377 3378 3379
#: git-submodule.sh:159
#, sh-format
msgid "Gitdir '$a' is part of the submodule path '$b' or vice versa"
msgstr ""

3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522
#: git-submodule.sh:247
#, sh-format
msgid "repo URL: '$repo' must be absolute or begin with ./|../"
msgstr ""

#: git-submodule.sh:264
#, sh-format
msgid "'$path' already exists in the index"
msgstr ""

#: git-submodule.sh:281
#, sh-format
msgid "'$path' already exists and is not a valid git repo"
msgstr ""

#: git-submodule.sh:295
#, sh-format
msgid "Unable to checkout submodule '$path'"
msgstr ""

#: git-submodule.sh:300
#, sh-format
msgid "Failed to add submodule '$path'"
msgstr ""

#: git-submodule.sh:305
#, sh-format
msgid "Failed to register submodule '$path'"
msgstr ""

#: git-submodule.sh:347
#, sh-format
msgid "Entering '$prefix$path'"
msgstr ""

#: git-submodule.sh:359
#, sh-format
msgid "Stopping at '$path'; script returned non-zero status."
msgstr ""

#: git-submodule.sh:401
#, sh-format
msgid "No url found for submodule path '$path' in .gitmodules"
msgstr ""

#: git-submodule.sh:410
#, sh-format
msgid "Failed to register url for submodule path '$path'"
msgstr ""

#: git-submodule.sh:418
#, sh-format
msgid "Failed to register update mode for submodule path '$path'"
msgstr ""

#: git-submodule.sh:420
#, sh-format
msgid "Submodule '$name' ($url) registered for path '$path'"
msgstr ""

#: git-submodule.sh:519
#, sh-format
msgid ""
"Submodule path '$path' not initialized\n"
"Maybe you want to use 'update --init'?"
msgstr ""

#: git-submodule.sh:532
#, sh-format
msgid "Unable to find current revision in submodule path '$path'"
msgstr ""

#: git-submodule.sh:551
#, sh-format
msgid "Unable to fetch in submodule path '$path'"
msgstr ""

#: git-submodule.sh:565
#, sh-format
msgid "Unable to rebase '$sha1' in submodule path '$path'"
msgstr ""

#: git-submodule.sh:566
#, sh-format
msgid "Submodule path '$path': rebased into '$sha1'"
msgstr ""

#: git-submodule.sh:571
#, sh-format
msgid "Unable to merge '$sha1' in submodule path '$path'"
msgstr ""

#: git-submodule.sh:572
#, sh-format
msgid "Submodule path '$path': merged in '$sha1'"
msgstr ""

#: git-submodule.sh:577
#, sh-format
msgid "Unable to checkout '$sha1' in submodule path '$path'"
msgstr ""

#: git-submodule.sh:578
#, sh-format
msgid "Submodule path '$path': checked out '$sha1'"
msgstr ""

#: git-submodule.sh:600 git-submodule.sh:923
#, sh-format
msgid "Failed to recurse into submodule path '$path'"
msgstr ""

#: git-submodule.sh:708
msgid "--"
msgstr ""

#: git-submodule.sh:766
#, sh-format
msgid "  Warn: $name doesn't contain commit $sha1_src"
msgstr ""

#: git-submodule.sh:769
#, sh-format
msgid "  Warn: $name doesn't contain commit $sha1_dst"
msgstr ""

#: git-submodule.sh:772
#, sh-format
msgid "  Warn: $name doesn't contain commits $sha1_src and $sha1_dst"
msgstr ""

#: git-submodule.sh:797
msgid "blob"
msgstr ""

#: git-submodule.sh:798
msgid "submodule"
msgstr ""

#: git-submodule.sh:969
#, sh-format
msgid "Synchronizing submodule url for '$name'"
msgstr ""