From: Vasco Almeida Date: Wed, 13 Apr 2016 10:29:53 +0000 (+0000) Subject: i18n: branch: unmark string for translation X-Git-Tag: v2.9.0-rc0~37^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2010aabd91eec0e8b074774e924e5264a522a923;p=thirdparty%2Fgit.git i18n: branch: unmark string for translation Unmark strings for translation for command help/hint. These strings can not be translated, just copied. Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- diff --git a/builtin/branch.c b/builtin/branch.c index 5ab106bed2..cfb523205f 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -828,8 +828,8 @@ int cmd_branch(int argc, const char **argv, const char *prefix) if (argc == 1 && track == BRANCH_TRACK_OVERRIDE && !branch_existed && remote_tracking) { fprintf(stderr, _("\nIf you wanted to make '%s' track '%s', do this:\n\n"), head, branch->name); - fprintf(stderr, _(" git branch -d %s\n"), branch->name); - fprintf(stderr, _(" git branch --set-upstream-to %s\n"), branch->name); + fprintf(stderr, " git branch -d %s\n", branch->name); + fprintf(stderr, " git branch --set-upstream-to %s\n", branch->name); } } else