From: Benno Schulenberg Date: Sat, 5 Oct 2013 09:37:48 +0000 (+0200) Subject: partx: pluralize one message X-Git-Tag: v2.24-rc2~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0df61beaedaaa4a962fd344cbd5975878e7da918;p=thirdparty%2Futil-linux.git partx: pluralize one message Reported-by: Petr Písař Signed-off-by: Benno Schulenberg --- diff --git a/disk-utils/partx.c b/disk-utils/partx.c index c4b1d73ea0..b69a329565 100644 --- a/disk-utils/partx.c +++ b/disk-utils/partx.c @@ -523,7 +523,9 @@ static int list_parts(blkid_partlist ls, int lower, int upper) start = blkid_partition_get_start(par); size = blkid_partition_get_size(par); - printf(_("#%2d: %9ju-%9ju (%9ju sectors, %6ju MB)\n"), + printf(P_("#%2d: %9ju-%9ju (%9ju sector, %6ju MB)\n", + "#%2d: %9ju-%9ju (%9ju sectors, %6ju MB)\n", + size), n, start, start + size -1, size, (size << 9) / 1000000); }