From a8d585c0915939a42acdb529d8e0eb832935d45f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 28 Oct 2015 20:23:53 -0400 Subject: Message style improvements Message style, plurals, quoting, spelling, consistency with similar messages --- src/bin/psql/command.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/bin/psql/command.c') 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); } -- cgit v1.2.3