summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libfdisk/src/dos.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libfdisk/src/dos.c b/libfdisk/src/dos.c
index 24b824c2e..8557408b6 100644
--- a/libfdisk/src/dos.c
+++ b/libfdisk/src/dos.c
@@ -1593,11 +1593,9 @@ static int dos_add_partition(struct fdisk_context *cxt,
}
rc = add_logical(cxt, pa, &res);
} else {
- fdisk_info(cxt,
- _( "Impossible to create another primary partition. "
- "If you want to create more partitions, you must "
- "replace a primary partition with an extended "
- "partition first."));
+ /* TRANSLATORS: Try to keep this within 80 characters. */
+ fdisk_info(cxt, _("To create more partitions, first replace "
+ "a primary with an extended partition."));
return -EINVAL;
}
} else if (cxt->label->nparts_max >= MAXIMUM_PARTS) {