From: Vasco Almeida Date: Tue, 19 Apr 2016 13:19:21 +0000 (+0000) Subject: i18n: builtin/pull.c: mark placeholders for translation X-Git-Tag: v2.9.0-rc0~37^2~2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8a0de58a2a0cfd64944c2de9df184253286b7eac;p=git-core%2Fgit.git i18n: builtin/pull.c: mark placeholders for translation Some translations might also translate "" and "". Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- diff --git a/builtin/pull.c b/builtin/pull.c index 10eff0396..61079f10a 100644 --- a/builtin/pull.c +++ b/builtin/pull.c @@ -458,13 +458,13 @@ static void NORETURN die_no_merge_candidates(const char *repo, const char **refs fprintf_ln(stderr, _("Please specify which branch you want to merge with.")); fprintf_ln(stderr, _("See git-pull(1) for details.")); fprintf(stderr, "\n"); - fprintf_ln(stderr, " git pull "); + fprintf_ln(stderr, " git pull %s %s", _(""), _("")); fprintf(stderr, "\n"); } else if (!curr_branch->merge_nr) { const char *remote_name = NULL; if (for_each_remote(get_only_remote, &remote_name) || !remote_name) - remote_name = ""; + remote_name = _(""); fprintf_ln(stderr, _("There is no tracking information for the current branch.")); if (opt_rebase) @@ -473,7 +473,7 @@ static void NORETURN die_no_merge_candidates(const char *repo, const char **refs fprintf_ln(stderr, _("Please specify which branch you want to merge with.")); fprintf_ln(stderr, _("See git-pull(1) for details.")); fprintf(stderr, "\n"); - fprintf_ln(stderr, " git pull "); + fprintf_ln(stderr, " git pull %s %s", _(""), _("")); fprintf(stderr, "\n"); fprintf_ln(stderr, _("If you wish to set tracking information for this branch you can do so with:\n" "\n"