Skip to content

Commit 2010aab

Browse files
vascoolgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8ae51c4 commit 2010aab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/branch.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -828,8 +828,8 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
828828
if (argc == 1 && track == BRANCH_TRACK_OVERRIDE &&
829829
!branch_existed && remote_tracking) {
830830
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);
833833
}
834834

835835
} else

0 commit comments

Comments
 (0)