From: Peter Eisentraut Date: Mon, 8 May 2023 05:43:54 +0000 (+0200) Subject: pg_dump: Restore lost translation marker X-Git-Tag: REL_16_BETA1~96 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=9f9abfeb10026bc2c2ac7076c6adff201608eab5;p=postgresql.git pg_dump: Restore lost translation marker The refactoring in 03d02f54a6 lost a translation marker. --- diff --git a/src/bin/pg_dump/compress_io.c b/src/bin/pg_dump/compress_io.c index db19058354d..f97fb1aaff8 100644 --- a/src/bin/pg_dump/compress_io.c +++ b/src/bin/pg_dump/compress_io.c @@ -106,7 +106,7 @@ supports_compression(const pg_compress_specification compression_spec) #endif if (!supported) - return psprintf("this build does not support compression with %s", + return psprintf(_("this build does not support compression with %s"), get_compress_algorithm_name(algorithm)); return NULL;