From 0bc3071796b33288cd912db196b90c76fa394c21 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 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); } -- cgit v1.2.3