We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 345bf97 commit 2944270Copy full SHA for 2944270
src/bin/psql/describe.c
@@ -2181,15 +2181,15 @@ describeOneTableDetails(const char *schemaname,
2181
}
2182
2183
/* Print server name */
2184
- printfPQExpBuffer(&buf, "Server: %s",
+ printfPQExpBuffer(&buf, _("Server: %s"),
2185
PQgetvalue(result, 0, 0));
2186
printTableAddFooter(&cont, buf.data);
2187
2188
/* Print per-table FDW options, if any */
2189
ftoptions = PQgetvalue(result, 0, 1);
2190
if (ftoptions && ftoptions[0] != '\0')
2191
{
2192
- printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
+ printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
2193
2194
2195
PQclear(result);
0 commit comments