diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-04-13 10:29:53 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-13 13:23:27 -0700 |
commit | 2010aabd91eec0e8b074774e924e5264a522a923 (patch) | |
tree | 321d75f766cf3ed2490f4f0de50d52a62b35d9cc /builtin | |
parent | i18n: builtin/rm.c: remove a comma ',' from string (diff) | |
download | tgif-2010aabd91eec0e8b074774e924e5264a522a923.tar.xz |
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>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/branch.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |