diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-15 20:50:22 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-15 20:50:22 +0000 |
commit | 7b0f6f1559b98597407bf85fd2a283e8ea678bdd (patch) | |
tree | 640ee621183d827b7b93b38d4f042c663a8d305a /src | |
parent | 2ee444b5fe414a627f8600cb3989b8eed1676b9f (diff) | |
download | coreutils-7b0f6f1559b98597407bf85fd2a283e8ea678bdd.tar.xz |
* src/dd.c (print_stats): Don't substitute "1" for number, as this
causes confusion for the Hungarian translators. Problem reported
by Egmont Koblinger.
Diffstat (limited to 'src')
-rw-r--r-- | src/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -548,7 +548,7 @@ print_stats (void) if (r_truncate != 0) fprintf (stderr, - ngettext ("1 truncated record\n", + ngettext ("%"PRIuMAX" truncated record\n", "%"PRIuMAX" truncated records\n", MIN (r_truncate, ULONG_MAX)), r_truncate); @@ -560,7 +560,7 @@ print_stats (void) since that makes it easy to use SI abbreviations. */ fprintf (stderr, - ngettext ("1 byte (1 B) copied", + ngettext ("%"PRIuMAX" byte (%s) copied", "%"PRIuMAX" bytes (%s) copied", MIN (w_bytes, ULONG_MAX)), w_bytes, |