We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfaba24 commit 7f335e7Copy full SHA for 7f335e7
src/bin/psql/describe.c
@@ -2516,15 +2516,15 @@ describeOneTableDetails(const char *schemaname,
2516
}
2517
2518
/* Print server name */
2519
- printfPQExpBuffer(&buf, "Server: %s",
+ printfPQExpBuffer(&buf, _("Server: %s"),
2520
PQgetvalue(result, 0, 0));
2521
printTableAddFooter(&cont, buf.data);
2522
2523
/* Print per-table FDW options, if any */
2524
ftoptions = PQgetvalue(result, 0, 1);
2525
if (ftoptions && ftoptions[0] != '\0')
2526
{
2527
- printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
+ printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
2528
2529
2530
PQclear(result);
0 commit comments