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 e7226dc commit d270093Copy full SHA for d270093
src/bin/psql/describe.c
@@ -2421,15 +2421,15 @@ describeOneTableDetails(const char *schemaname,
2421
}
2422
2423
/* Print server name */
2424
- printfPQExpBuffer(&buf, "Server: %s",
+ printfPQExpBuffer(&buf, _("Server: %s"),
2425
PQgetvalue(result, 0, 0));
2426
printTableAddFooter(&cont, buf.data);
2427
2428
/* Print per-table FDW options, if any */
2429
ftoptions = PQgetvalue(result, 0, 1);
2430
if (ftoptions && ftoptions[0] != '\0')
2431
{
2432
- printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
+ printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
2433
2434
2435
PQclear(result);
0 commit comments