Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
i18n: branch: unmark string for translation
author
Vasco Almeida
<vascomalmeida@sapo.pt>
Wed, 13 Apr 2016 10:29:53 +0000
(10:29 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 13 Apr 2016 20:23:27 +0000
(13:23 -0700)
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>
builtin/branch.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
8ae51c4
)
diff --git
a/builtin/branch.c
b/builtin/branch.c
index 5ab106bed2ed4e2c322bf789b7d5cca6a8a12809..cfb523205f873365a6ec23fa0d0c5d3a41bf4eb1 100644
(file)
--- 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);
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
}
} else