1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-09 18:21:05 +03:00

psql: Add missing translation markers

This commit is contained in:
Peter Eisentraut 2017-05-10 10:14:49 -04:00
parent bfaba24829
commit 7f335e780c

View File

@ -2516,7 +2516,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);
@ -2524,7 +2524,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);