diff options
-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 |