+2003-11-24 Bruno Haible <bruno@clisp.org>
+
+ * format-lisp.c (check_params): Use ngettext for one of the messages.
+ Reported by RafaĆ Maszkowski <rzm@icm.edu.pl>.
+
2003-11-15 Bruno Haible <bruno@clisp.org>
* Makefile.am (AM_CPPFLAGS): Renamed from INCLUDES.
case PT_CHARACTER: case PT_INTEGER: case PT_ARGCOUNT:
/* too many params for directive */
*invalid_reason =
- xasprintf (_("In the directive number %u, too many parameters are given; expected at most %u parameters."), directives, orig_t_count);
+ xasprintf (ngettext ("In the directive number %u, too many parameters are given; expected at most %u parameter.",
+ "In the directive number %u, too many parameters are given; expected at most %u parameters.",
+ orig_t_count),
+ directives, orig_t_count);
return false;
case PT_V:
/* Force argument to be NIL. */