summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a1b1d3)
raw | patch | inline | side by side (parent: 7a1b1d3)
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Sun, 19 Sep 2010 15:20:50 +0000 (15:20 +0000) | ||
committer | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Sat, 30 Oct 2010 07:12:07 +0000 (07:12 +0000) |
Gettextize the "You have not concluded your merge messages. A test in
t3030-merge-recursive.sh explicitly checked for this message. Change
it to skip the test under GETTEXT_POISON=YesPlease.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
t3030-merge-recursive.sh explicitly checked for this message. Change
it to skip the test under GETTEXT_POISON=YesPlease.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
builtin/merge.c | patch | blob | history | |
t/t3030-merge-recursive.sh | patch | blob | history |
diff --git a/builtin/merge.c b/builtin/merge.c
index 0571ab38daab75a34307be4d47c4a57080772239..595f216e42fdbb183b045285bb4274be7e4465d7 100644 (file)
--- a/builtin/merge.c
+++ b/builtin/merge.c
* add/rm <file>', just 'git commit'.
*/
if (advice_resolve_conflict)
- die("You have not concluded your merge (MERGE_HEAD exists).\n"
- "Please, commit your changes before you can merge.");
+ die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
+ "Please, commit your changes before you can merge."));
else
- die("You have not concluded your merge (MERGE_HEAD exists).");
+ die(_("You have not concluded your merge (MERGE_HEAD exists)."));
}
resolve_undo_clear();
index e66e550b2449e76435a0bf16c6a9889c0794f858..b21626842223f46adf1245d1634b90032192150d 100755 (executable)
'
-test_expect_success 'fail if the index has unresolved entries' '
+test_expect_success NO_GETTEXT_POISON 'fail if the index has unresolved entries' '
rm -fr [abcd] &&
git checkout -f "$c1" &&