Skip to content

Commit 4d55d63

Browse files
agrngitster
authored andcommitted
sequencer: mark messages for translation
Signed-off-by: Alban Gruin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3bab5d5 commit 4d55d63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sequencer.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3128,7 +3128,7 @@ static int do_exec(struct repository *r, const char *command_line)
31283128
const char *child_argv[] = { NULL, NULL };
31293129
int dirty, status;
31303130

3131-
fprintf(stderr, "Executing: %s\n", command_line);
3131+
fprintf(stderr, _("Executing: %s\n"), command_line);
31323132
child_argv[0] = command_line;
31333133
argv_array_pushf(&child_env, "GIT_DIR=%s", absolute_path(get_git_dir()));
31343134
argv_array_pushf(&child_env, "GIT_WORK_TREE=%s",
@@ -3841,7 +3841,7 @@ static int pick_commits(struct repository *r,
38413841
fclose(f);
38423842
}
38433843
if (!opts->quiet)
3844-
fprintf(stderr, "Rebasing (%d/%d)%s",
3844+
fprintf(stderr, _("Rebasing (%d/%d)%s"),
38453845
todo_list->done_nr,
38463846
todo_list->total_nr,
38473847
opts->verbose ? "\n" : "\r");
@@ -4093,7 +4093,7 @@ static int pick_commits(struct repository *r,
40934093
if (!opts->verbose)
40944094
term_clear_line();
40954095
fprintf(stderr,
4096-
"Successfully rebased and updated %s.\n",
4096+
_("Successfully rebased and updated %s.\n"),
40974097
head_ref.buf);
40984098
}
40994099

0 commit comments

Comments
 (0)