From 0cdf2057c8af4d13d652a902b8d78f7b1c810ea5 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 10 May 2017 10:14:49 -0400 Subject: [PATCH] psql: Add missing translation markers --- src/bin/psql/describe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index a6ed9ba4ae..5867d8abb7 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2138,7 +2138,7 @@ describeOneTableDetails(const char *schemaname, } /* Print server name */ - printfPQExpBuffer(&buf, "Server: %s", + printfPQExpBuffer(&buf, _("Server: %s"), PQgetvalue(result, 0, 0)); printTableAddFooter(&cont, buf.data); @@ -2146,7 +2146,7 @@ describeOneTableDetails(const char *schemaname, ftoptions = PQgetvalue(result, 0, 1); if (ftoptions && ftoptions[0] != '\0') { - printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions); + printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions); printTableAddFooter(&cont, buf.data); } PQclear(result); -- 2.40.0