Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7f335e7

Browse files
committed
psql: Add missing translation markers
1 parent bfaba24 commit 7f335e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/describe.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2516,15 +2516,15 @@ describeOneTableDetails(const char *schemaname,
25162516
}
25172517

25182518
/* Print server name */
2519-
printfPQExpBuffer(&buf, "Server: %s",
2519+
printfPQExpBuffer(&buf, _("Server: %s"),
25202520
PQgetvalue(result, 0, 0));
25212521
printTableAddFooter(&cont, buf.data);
25222522

25232523
/* Print per-table FDW options, if any */
25242524
ftoptions = PQgetvalue(result, 0, 1);
25252525
if (ftoptions && ftoptions[0] != '\0')
25262526
{
2527-
printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
2527+
printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions);
25282528
printTableAddFooter(&cont, buf.data);
25292529
}
25302530
PQclear(result);

0 commit comments

Comments
 (0)