projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03bf596
)
psql: Add missing translation markers
author
Peter Eisentraut
<peter_e@gmx.net>
Wed, 10 May 2017 14:14:49 +0000
(10:14 -0400)
committer
Peter Eisentraut
<peter_e@gmx.net>
Wed, 10 May 2017 14:15:14 +0000
(10:15 -0400)
src/bin/psql/describe.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/describe.c
b/src/bin/psql/describe.c
index dbfc7339e574a9690d4fcadcaf03b55f18400513..13395f5ca672fac3fc98f39b4d8bfb5c5f3a13ee 100644
(file)
--- a/
src/bin/psql/describe.c
+++ b/
src/bin/psql/describe.c
@@
-2752,7
+2752,7
@@
describeOneTableDetails(const char *schemaname,
}
/* Print server name */
- printfPQExpBuffer(&buf,
"Server: %s"
,
+ printfPQExpBuffer(&buf,
_("Server: %s")
,
PQgetvalue(result, 0, 0));
printTableAddFooter(&cont, buf.data);
@@
-2760,7
+2760,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);