]> git.ipfire.org Git - thirdparty/git.git/commitdiff
sequencer: mark messages for translation
authorAlban Gruin <alban.gruin@gmail.com>
Sat, 28 Mar 2020 13:05:15 +0000 (14:05 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 29 Mar 2020 01:11:25 +0000 (18:11 -0700)
Signed-off-by: Alban Gruin <alban.gruin@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c

index 6fd2674632bb2a524e22536e22658dbb3d06d6c3..ba13a9a63bf3c6c696fa0804e2a180e6d62ca42e 100644 (file)
@@ -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);
                }