translate oneline statistics of diff/apply. Signed-off-by: Jiang Xin <worldhello.net@xxxxxxxxx> --- builtin/apply.c | 2 +- diff.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/apply.c b/builtin/apply.c index c24d..e289e 100644 --- a/builtin/apply.c +++ b/builtin/apply.c @@ -3241,7 +3241,7 @@ static void stat_patch_list(struct patch *patch) show_stats(patch); } - printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels); + printf(_(" %d files changed, %d insertions(+), %d deletions(-)\n"), files, adds, dels); } static void numstat_patch_list(struct patch *patch) diff --git a/diff.c b/diff.c index 7e1542..b9115 100644 --- a/diff.c +++ b/diff.c @@ -1476,7 +1476,7 @@ static void show_stats(struct diffstat_t *data, struct diff_options *options) } fprintf(options->file, "%s", line_prefix); fprintf(options->file, - " %d files changed, %d insertions(+), %d deletions(-)\n", + _(" %d files changed, %d insertions(+), %d deletions(-)\n"), total_files, adds, dels); } @@ -1507,7 +1507,7 @@ static void show_shortstats(struct diffstat_t *data, struct diff_options *option options->output_prefix_data); fprintf(options->file, "%s", msg->buf); } - fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n", + fprintf(options->file, _(" %d files changed, %d insertions(+), %d deletions(-)\n"), total_files, adds, dels); } -- 1.7.9.3.g1fbd7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html