diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-05-10 10:14:49 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-05-10 10:15:36 -0400 |
commit | 7f335e780c78f24ef3a84da55faf423e14b836b5 (patch) | |
tree | 4bfa5d8affac8ffec6c3d4fed89babd1a772e79f | |
parent | bfaba24829f511c509557ffc718ac75fb580dca7 (diff) | |
download | postgresql-7f335e780c78f24ef3a84da55faf423e14b836b5.tar.gz postgresql-7f335e780c78f24ef3a84da55faf423e14b836b5.zip |
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 6ba5b3e363a..e48f347031c 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2516,7 +2516,7 @@ describeOneTableDetails(const char *schemaname, } /* Print server name */ - printfPQExpBuffer(&buf, "Server: %s", + printfPQExpBuffer(&buf, _("Server: %s"), PQgetvalue(result, 0, 0)); printTableAddFooter(&cont, buf.data); @@ -2524,7 +2524,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); |