summaryrefslogtreecommitdiffstats
path: root/fdisk/fdisk.c
diff options
context:
space:
mode:
authorKarel Zak2009-12-10 13:04:41 +0100
committerKarel Zak2009-12-10 13:04:41 +0100
commit04c944419df0f549129f5af62d38823164f2e037 (patch)
treebf42420e5e2dca6c7c4565d0ce0b9622e6f9363d /fdisk/fdisk.c
parentlib: bug (typo) in function MD5Final() (diff)
downloadkernel-qcow2-util-linux-04c944419df0f549129f5af62d38823164f2e037.tar.gz
kernel-qcow2-util-linux-04c944419df0f549129f5af62d38823164f2e037.tar.xz
kernel-qcow2-util-linux-04c944419df0f549129f5af62d38823164f2e037.zip
po: fix msgid bugs
Reported-by: Petr Pisar <petr.pisar@atlas.cz> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'fdisk/fdisk.c')
-rw-r--r--fdisk/fdisk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c
index 19bbab5b9..af525badd 100644
--- a/fdisk/fdisk.c
+++ b/fdisk/fdisk.c
@@ -388,7 +388,7 @@ static void
menu(void) {
if (sun_label) {
puts(_("Command action"));
- puts(_(" a toggle a read only flag")); /* sun */
+ puts(_(" a toggle a read only flag")); /* sun */
puts(_(" b edit bsd disklabel"));
puts(_(" c toggle the mountable flag")); /* sun */
puts(_(" d delete a partition"));
@@ -1048,8 +1048,8 @@ update_sector_offset(void)
*/
if (sectors && alignment_offset && !lba_is_aligned(sectors))
fprintf(stderr, _(
- "\nWARNING: the device provides alignment_offset, but "
- "the offset does not \nmatch with device geometry.\n\n"));
+ "\nWARNING: the device provides alignment_offset, but the offset does not\n"
+ "match with device geometry.\n\n"));
} else {
/*
* Align the begin of the first partition to the physical block
@@ -2206,7 +2206,7 @@ verify(void) {
printf(_("Total allocated sectors %llu greater than the maximum"
" %llu\n"), total, n_sectors);
else if (total < n_sectors)
- printf(_("%lld unallocated %d-byte sectors\n"),
+ printf(_("Remaining %lld unallocated %d-byte sectors\n"),
n_sectors - total, sector_size);
}