summaryrefslogtreecommitdiff
path: root/src/dd.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-05-15 04:37:50 +0000
committerJim Meyering <jim@meyering.net>1996-05-15 04:37:50 +0000
commitf177941b93929aa9c7565c38f52a8f80799d5dd5 (patch)
tree117d6c24889a92eae6e6c5a6a4648e89b31a4a2c /src/dd.c
parenta2c69051331ba2e3c8b3c4159683a3c359ee0c06 (diff)
downloadcoreutils-f177941b93929aa9c7565c38f52a8f80799d5dd5.tar.xz
(print_stats): Restructure pluralization of error message so it's easier
to translate.
Diffstat (limited to 'src/dd.c')
-rw-r--r--src/dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dd.c b/src/dd.c
index 262fdd8c1..06440a7ff 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -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