diff options
author | Michael Paquier | 2019-06-06 13:10:52 +0000 |
---|---|---|
committer | Michael Paquier | 2019-06-06 13:10:52 +0000 |
commit | 438e51987dcc21ca7ce28c6d1a4e58b0249eb690 (patch) | |
tree | 93805efdc98b7d5c54325a115d875df9f3d74141 | |
parent | f65eced25118aab29804debc4e0b9a67f4d043ad (diff) |
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
-rw-r--r-- | src/bin/pg_checksums/pg_checksums.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_checksums/pg_checksums.c b/src/bin/pg_checksums/pg_checksums.c index 1d75aa0282c..7c7a75cdcd6 100644 --- a/src/bin/pg_checksums/pg_checksums.c +++ b/src/bin/pg_checksums/pg_checksums.c @@ -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); |