diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-04-08 20:02:45 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-08 15:18:13 -0700 |
commit | ab86885a61cdbcae19d08697285957462593069d (patch) | |
tree | be30a4174f0b212a42a64de00635e06113798ec1 | |
parent | 71d99b81dad4eaf3b25bedd5790d68df509f2a45 (diff) | |
download | git-ab86885a61cdbcae19d08697285957462593069d.tar.gz |
i18n: builtin/branch.c: mark option for translation
Mark description and parameter for option "set-upstream-to" for translation.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index 7b45b6bd6b..5ab106bed2 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -620,7 +620,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) BRANCH_TRACK_EXPLICIT), OPT_SET_INT( 0, "set-upstream", &track, N_("change upstream info"), BRANCH_TRACK_OVERRIDE), - OPT_STRING('u', "set-upstream-to", &new_upstream, "upstream", "change the upstream info"), + OPT_STRING('u', "set-upstream-to", &new_upstream, N_("upstream"), N_("change the upstream info")), OPT_BOOL(0, "unset-upstream", &unset_upstream, "Unset the upstream info"), OPT__COLOR(&branch_use_color, N_("use colored output")), OPT_SET_INT('r', "remotes", &filter.kind, N_("act on remote-tracking branches"), |