1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Add forgotten translatable string in pg_checksums.c

Oversight in commit 280e5f1.

Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20190606.200612.110313249.horikyota.ntt@gmail.com
This commit is contained in:
Michael Paquier
2019-06-06 22:10:52 +09:00
parent f65eced251
commit 438e51987d

View File

@ -146,7 +146,7 @@ progress_report(bool force)
snprintf(current_size_str, sizeof(current_size_str), INT64_FORMAT,
current_size / (1024 * 1024));
fprintf(stderr, "%*s/%s MB (%d%%) computed",
fprintf(stderr, _("%*s/%s MB (%d%%) computed"),
(int) strlen(current_size_str), current_size_str, total_size_str,
percent);