summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorAlban Gruin <alban.gruin@gmail.com>2020-03-28 13:05:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-03-29 01:11:25 (GMT)
commit4d55d63bde85287e7642a4e8588fb8362e2a62cd (patch)
tree3e6d27edfa2c23c52691bcd3ae971868e2ef6a41 /sequencer.c
parent3bab5d56259722843359702bc27111475437ad2a (diff)
downloadgit-4d55d63bde85287e7642a4e8588fb8362e2a62cd.zip
git-4d55d63bde85287e7642a4e8588fb8362e2a62cd.tar.gz
git-4d55d63bde85287e7642a4e8588fb8362e2a62cd.tar.bz2
sequencer: mark messages for translation
Signed-off-by: Alban Gruin <alban.gruin@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sequencer.c b/sequencer.c
index 6fd2674..ba13a9a 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -3128,7 +3128,7 @@ static int do_exec(struct repository *r, const char *command_line)
const char *child_argv[] = { NULL, NULL };
int dirty, status;
- fprintf(stderr, "Executing: %s\n", command_line);
+ fprintf(stderr, _("Executing: %s\n"), command_line);
child_argv[0] = command_line;
argv_array_pushf(&child_env, "GIT_DIR=%s", absolute_path(get_git_dir()));
argv_array_pushf(&child_env, "GIT_WORK_TREE=%s",
@@ -3841,7 +3841,7 @@ static int pick_commits(struct repository *r,
fclose(f);
}
if (!opts->quiet)
- fprintf(stderr, "Rebasing (%d/%d)%s",
+ fprintf(stderr, _("Rebasing (%d/%d)%s"),
todo_list->done_nr,
todo_list->total_nr,
opts->verbose ? "\n" : "\r");
@@ -4093,7 +4093,7 @@ cleanup_head_ref:
if (!opts->verbose)
term_clear_line();
fprintf(stderr,
- "Successfully rebased and updated %s.\n",
+ _("Successfully rebased and updated %s.\n"),
head_ref.buf);
}