1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 10:39:01 +02:00

(md5_t_stats): Restructure pluralization of error message so it's easier

to translate.
This commit is contained in:
Jim Meyering
1996-05-15 04:45:12 +00:00
parent f177941b93
commit 9622bd6207
+3 -2
View File
@@ -362,9 +362,10 @@ md5_check (const char *checkfile_name, int binary)
if (n_open_or_read_failures > 0)
{
error (0, 0,
_("WARNING: %d of %d listed file%s could not be read\n"),
_("WARNING: %d of %d listed %s could not be read\n"),
n_open_or_read_failures, n_properly_formated_lines,
(n_properly_formated_lines == 1 ? "" : "s"));
(n_properly_formated_lines == 1
? _("file") : _("files")));
}
if (n_mismatched_checksums > 0)