8000 psql: Add missing translation markers · markusborg/postgres@d270093 · GitHub
[go: up one dir, main page]

8000
Skip to content

Commit d270093

Browse files
committed
psql: Add missing translation markers
1 parent e7226dc commit d270093

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/describe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2421,15 +2421,15 @@ describeOneTableDetails(const char *schemaname,
24212421
}
24222422

24232423
/* Print server name */
2424-
printfPQExpBuffer(&buf, "Server: %s",
2424+
printfPQExpBuffer(&buf, _("Server: %s"),
24252425
PQgetvalue(result, 0, 0));
24262426
printTableAddFooter(&cont, buf.data);
24272427

24282428
/* Print per-table FDW options, if any */
24292429
ftoptions = PQgetvalue(result, 0, 1);
24302430
if (ftoptions && ftoptions[0] != '\0')
24312431
{
2432-
printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
2432+
printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
24332433
printTableAddFooter(&cont, buf.data);
24342434
}
24352435
PQclear(result);

0 commit comments

Comments
 (0)
0