]> granicus.if.org Git - postgresql/commitdiff
Add forgotten translatable string in pg_checksums.c
authorMichael Paquier <michael@paquier.xyz>
Thu, 6 Jun 2019 13:10:52 +0000 (22:10 +0900)
committerMichael Paquier <michael@paquier.xyz>
Thu, 6 Jun 2019 13:10:52 +0000 (22:10 +0900)
Oversight in commit 280e5f1.

Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20190606.200612.110313249.horikyota.ntt@gmail.com

src/bin/pg_checksums/pg_checksums.c

index 1d75aa0282cc232d08b077d64bc8fd1f04835785..7c7a75cdcd6167290f0500db1a4695be841ed652 100644 (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);