Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2015-10-29 00:23:53 +0000
committerPeter Eisentraut2015-10-29 00:38:36 +0000
commita8d585c0915939a42acdb529d8e0eb832935d45f (patch)
tree4181e9e00ec2cdd0ddd4f56a2c12e48e2f58b2f2 /src/bin/psql
parentd45565162494c75eae91481eda17dc0c8ecab5db (diff)
Message style improvements
Message style, plurals, quoting, spelling, consistency with similar messages
Diffstat (limited to 'src/bin/psql')
-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 5163c765bae..50d3ff51745 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -2805,7 +2805,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);
}