We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ad47d5 commit 0cdf205Copy full SHA for 0cdf205
src/bin/psql/describe.c
@@ -2138,15 +2138,15 @@ describeOneTableDetails(const char *schemaname,
2138
}
2139
2140
/* Print server name */
2141
- printfPQExpBuffer(&buf, "Server: %s",
+ printfPQExpBuffer(&buf, _("Server: %s"),
2142
PQgetvalue(result, 0, 0));
2143
printTableAddFooter(&cont, buf.data);
2144
2145
/* Print per-table FDW options, if any */
2146
ftoptions = PQgetvalue(result, 0, 1);
2147
if (ftoptions && ftoptions[0] != '\0')
2148
{
2149
- printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
+ printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
2150
2151
2152
PQclear(result);
0 commit comments