From: Ævar Arnfjörð Bjarmason Date: Sun, 19 Sep 2010 14:43:47 +0000 (+0000) Subject: gettextize: git-merge "Updating %s..%s" message X-Git-Tag: ko-pu~10^2~101 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7a1b1d33c5749522428fcb2aea3ab8c9edc6fdf9;p=git.git gettextize: git-merge "Updating %s..%s" message Gettextize the "Updating %s..%s\n" message. A test in t1200-tutorial.sh explicitly checked for this message. Split it into two tests to skip the test_cmp test under GETTEXT_POISON=YesPlease. Signed-off-by: Ævar Arnfjörð Bjarmason --- diff --git a/builtin/merge.c b/builtin/merge.c index 70b60ae13..0571ab38d 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -1086,7 +1086,7 @@ int cmd_merge(int argc, const char **argv, const char *prefix) strcpy(hex, find_unique_abbrev(head, DEFAULT_ABBREV)); if (verbosity >= 0) - printf("Updating %s..%s\n", + printf(_("Updating %s..%s\n"), hex, find_unique_abbrev(remoteheads->item->object.sha1, DEFAULT_ABBREV)); diff --git a/t/t1200-tutorial.sh b/t/t1200-tutorial.sh index ab55eda15..c9b59843b 100755 --- a/t/t1200-tutorial.sh +++ b/t/t1200-tutorial.sh @@ -163,7 +163,10 @@ test_expect_success 'git resolve' ' git checkout mybranch && git merge -m "Merge upstream changes." master | sed -e "1s/[0-9a-f]\{7\}/VARIABLE/g" \ - -e "s/^Fast[- ]forward /FASTFORWARD /" >resolve.output && + -e "s/^Fast[- ]forward /FASTFORWARD /" >resolve.output +' + +test_expect_success NO_GETTEXT_POISON 'git resolve output' ' test_cmp resolve.expect resolve.output '