Skip to content

Commit 2944270

Browse files
committed
psql: Add missing translation markers
1 parent 345bf97 commit 2944270

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
@@ -2181,15 +2181,15 @@ describeOneTableDetails(const char *schemaname,
21812181
}
21822182

21832183
/* Print server name */
2184-
printfPQExpBuffer(&buf, "Server: %s",
2184+
printfPQExpBuffer(&buf, _("Server: %s"),
21852185
PQgetvalue(result, 0, 0));
21862186
printTableAddFooter(&cont, buf.data);
21872187

21882188
/* Print per-table FDW options, if any */
21892189
ftoptions = PQgetvalue(result, 0, 1);
21902190
if (ftoptions && ftoptions[0] != '\0')
21912191
{
2192-
printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
2192+
printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
21932193
printTableAddFooter(&cont, buf.data);
21942194
}
21952195
PQclear(result);

0 commit comments

Comments
 (0)