From 0df61beaedaaa4a962fd344cbd5975878e7da918 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 5 Oct 2013 11:37:48 +0200 Subject: [PATCH] partx: pluralize one message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reported-by: Petr Písař Signed-off-by: Benno Schulenberg --- disk-utils/partx.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); } -- 2.47.3