Commit b83f4e4a authored by Peter Eisentraut's avatar Peter Eisentraut

psql: Add missing translation markers

parent 03bf5967
...@@ -2752,7 +2752,7 @@ describeOneTableDetails(const char *schemaname, ...@@ -2752,7 +2752,7 @@ describeOneTableDetails(const char *schemaname,
} }
/* Print server name */ /* Print server name */
printfPQExpBuffer(&buf, "Server: %s", printfPQExpBuffer(&buf, _("Server: %s"),
PQgetvalue(result, 0, 0)); PQgetvalue(result, 0, 0));
printTableAddFooter(&cont, buf.data); printTableAddFooter(&cont, buf.data);
...@@ -2760,7 +2760,7 @@ describeOneTableDetails(const char *schemaname, ...@@ -2760,7 +2760,7 @@ describeOneTableDetails(const char *schemaname,
ftoptions = PQgetvalue(result, 0, 1); ftoptions = PQgetvalue(result, 0, 1);
if (ftoptions && ftoptions[0] != '\0') if (ftoptions && ftoptions[0] != '\0')
{ {
printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions); printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
printTableAddFooter(&cont, buf.data); printTableAddFooter(&cont, buf.data);
} }
PQclear(result); PQclear(result);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment