8000
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 03bf596 commit b83f4e4Copy full SHA for b83f4e4
src/bin/psql/describe.c
@@ -2752,15 +2752,15 @@ describeOneTableDetails(const char *schemaname,
2752
}
2753
2754
/* Print server name */
2755
- printfPQExpBuffer(&buf, "Server: %s",
+ printfPQExpBuffer(&buf, _("Server: %s"),
2756
PQgetvalue(result, 0, 0));
2757
printTableAddFooter(&cont, buf.data);
2758
2759
/* Print per-table FDW options, if any */
2760
ftoptions = PQgetvalue(result, 0, 1);
2761
if (ftoptions && ftoptions[0] != '\0')
2762
{
2763
- printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
+ printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
2764
2765
2766
PQclear(result);
0 commit comments