From 9f9abfeb10026bc2c2ac7076c6adff201608eab5 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 8 May 2023 07:43:54 +0200 Subject: [PATCH] pg_dump: Restore lost translation marker The refactoring in 03d02f54a6 lost a translation marker. --- src/bin/pg_dump/compress_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/compress_io.c b/src/bin/pg_dump/compress_io.c index db19058354..f97fb1aaff 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;