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 <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Vasco Almeida committed Apr 13, 2016 at 10:29 UTC 2010aabd91eec0e8b074774e924e5264a522a923
1 file changed +2 -2
builtin/branch.c
+2 -2
@@ -828,8 +828,8 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
828 if (argc == 1 && track == BRANCH_TRACK_OVERRIDE &&
829 !branch_existed && remote_tracking) {
830 fprintf(stderr, _("\nIf you wanted to make '%s' track '%s', do this:\n\n"), head, branch->name);
831 - fprintf(stderr, _(" git branch -d %s\n"), branch->name);
832 - fprintf(stderr, _(" git branch --set-upstream-to %s\n"), branch->name);
831 + fprintf(stderr, " git branch -d %s\n", branch->name);
832 + fprintf(stderr, " git branch --set-upstream-to %s\n", branch->name);
833 }
834
835 } else