psql: Add missing translation markers
authorPeter Eisentraut <[email protected]>
Wed, 10 May 2017 14:14:49 +0000 (10:14 -0400)
committerPeter Eisentraut <[email protected]>
Wed, 10 May 2017 14:16:34 +0000 (10:16 -0400)
src/bin/psql/describe.c

index a6ed9ba4ae673cc0a62708d9529bcdf91aa1da46..5867d8abb7a3947dca5c04a4efbe28bb34e37ae9 100644 (file)
@@ -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);