Skip to content

Commit 3d6c56d

Browse files
committed
Merge branch 'ag/sequencer-i18n-messages'
Message fix. * ag/sequencer-i18n-messages: sequencer: mark messages for translation
2 parents 9f471e4 + 4d55d63 commit 3d6c56d

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)