pg_dump: Restore lost translation marker
authorPeter Eisentraut <[email protected]>
Mon, 8 May 2023 05:43:54 +0000 (07:43 +0200)
committerPeter Eisentraut <[email protected]>
Mon, 8 May 2023 05:43:54 +0000 (07:43 +0200)
The refactoring in 03d02f54a6 lost a translation marker.

src/bin/pg_dump/compress_io.c

index db19058354df647148351b6cde2b7d58f43821c8..f97fb1aaff8dc0020abb642bab4ccda0b1953ac2 100644 (file)
@@ -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;