diff options
| author | Peter Eisentraut | 2017-05-10 14:14:49 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2017-05-10 14:16:07 +0000 |
| commit | f230457bff1fb5cf179e5938f2f1614d9e3f6815 (patch) | |
| tree | 6ac0f15c22fe6f9c75d91fd19ed41dc1f598a29f | |
| parent | 2176839a4832ad5d19176da2173fec30f78d7bc4 (diff) | |
psql: Add missing translation markers
| -rw-r--r-- | src/bin/psql/describe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 71ad0dc9a20..8b4fe709692 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2260,7 +2260,7 @@ describeOneTableDetails(const char *schemaname, } /* Print server name */ - printfPQExpBuffer(&buf, "Server: %s", + printfPQExpBuffer(&buf, _("Server: %s"), PQgetvalue(result, 0, 0)); printTableAddFooter(&cont, buf.data); @@ -2268,7 +2268,7 @@ describeOneTableDetails(const char *schemaname, ftoptions = PQgetvalue(result, 0, 1); if (ftoptions && ftoptions[0] != '\0') { - printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions); + printfPQExpBuffer(&buf, _("FDW Options: (%s)"), ftoptions); printTableAddFooter(&cont, buf.data); } PQclear(result); |
