psql: Add missing translation markers
authorPeter Eisentraut
Wed, 10 May 2017 14:14:49 +0000 (10:14 -0400)
committerPeter Eisentraut
Wed, 10 May 2017 14:15:36 +0000 (10:15 -0400)
src/bin/psql/describe.c

index 6ba5b3e363aeed26794f87b9cd3b54d5e91ea3c1..e48f347031c00e8ed65e94664d168117e7863a3a 100644 (file)
@@ -2516,7 +2516,7 @@ describeOneTableDetails(const char *schemaname,
            }
 
            /* Print server name */
-           printfPQExpBuffer(&buf, "Server: %s",
+           printfPQExpBuffer(&buf, _("Server: %s"),
                              PQgetvalue(result, 0, 0));
            printTableAddFooter(&cont, buf.data);
 
@@ -2524,7 +2524,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);