diff options
| author | Peter Eisentraut | 2017-05-10 14:14:49 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2017-05-10 14:15:53 +0000 |
| commit | d270093cd8bec6b980d68880c5ab0c64f87ab9d5 (patch) | |
| tree | 1a320ba4aebf8fb6d150c5a126847442b6b24224 /src | |
| parent | e7226dc3eb39d91fb999d58ef52121dd3c8ee9fc (diff) | |
psql: Add missing translation markers
Diffstat (limited to 'src')
| -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 2798aa3fa96..c4c538186f0 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2421,7 +2421,7 @@ describeOneTableDetails(const char *schemaname, } /* Print server name */ - printfPQExpBuffer(&buf, "Server: %s", + printfPQExpBuffer(&buf, _("Server: %s"), PQgetvalue(result, 0, 0)); printTableAddFooter(&cont, buf.data); @@ -2429,7 +2429,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); |
