aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2015-10-28 20:23:53 -0400
committerPeter Eisentraut <peter_e@gmx.net>2015-10-28 20:23:53 -0400
commit0bc3071796b33288cd912db196b90c76fa394c21 (patch)
tree259a31ba4ca03c0cde90340dae9457138785c165 /src/bin/psql/command.c
parentd17d5125f68da155e3a8e555c0699b7679b06e3b (diff)
downloadpostgresql-0bc3071796b33288cd912db196b90c76fa394c21.tar.gz
postgresql-0bc3071796b33288cd912db196b90c76fa394c21.zip
Message style improvements
Message style, plurals, quoting, spelling, consistency with similar messages
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index c60a76c519e..22bfddcd08a 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -2692,7 +2692,9 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
/* show minimum lines for pager use */
else if (strcmp(param, "pager_min_lines") == 0)
{
- printf(_("Pager won't be used for less than %d lines\n"),
+ printf(ngettext("Pager won't be used for less than %d line.\n",
+ "Pager won't be used for less than %d lines.\n",
+ popt->topt.pager_min_lines),
popt->topt.pager_min_lines);
}