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:53 +0000 (10:15 -0400)
src/bin/psql/describe.c

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