diff options
author | Jim Meyering <jim@meyering.net> | 1996-05-15 04:37:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-05-15 04:37:50 +0000 |
commit | f177941b93929aa9c7565c38f52a8f80799d5dd5 (patch) | |
tree | 117d6c24889a92eae6e6c5a6a4648e89b31a4a2c | |
parent | a2c69051331ba2e3c8b3c4159683a3c359ee0c06 (diff) | |
download | coreutils-f177941b93929aa9c7565c38f52a8f80799d5dd5.tar.xz |
(print_stats): Restructure pluralization of error message so it's easier
to translate.
-rw-r--r-- | src/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1039,8 +1039,8 @@ print_stats (void) fprintf (stderr, _("%u+%u records in\n"), r_full, r_partial); fprintf (stderr, _("%u+%u records out\n"), w_full, w_partial); if (r_truncate > 0) - fprintf (stderr, _("%u truncated record%s\n"), r_truncate, - r_truncate == 1 ? "" : "s"); + fprintf (stderr, _("%u %s\n"), r_truncate, + r_truncate == 1 ? _("truncated record") : _("truncated records")); } static void |