]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
sfdisk: use pluralized translation.
authorLauri Nurmi <lanurmi@iki.fi>
Fri, 11 Jul 2014 18:51:03 +0000 (21:51 +0300)
committerKarel Zak <kzak@redhat.com>
Mon, 28 Jul 2014 09:45:30 +0000 (11:45 +0200)
disk-utils/sfdisk.c

index b462705e7684849339e88ba590a226d020fb84b3..8d76d91f9b9df175e0344b9eb6500f3a5bdc99ee 100644 (file)
@@ -1146,7 +1146,8 @@ partitions_ok(int fd, struct disk_desc *z) {
        if (!partno)
            errx(EXIT_FAILURE, _("no partition table present."));
        else
-           errx(EXIT_FAILURE, _("strange, only %d partitions defined."), partno);
+           errx(EXIT_FAILURE, P_("strange, only %d partition defined.",
+               "strange, only %d partitions defined.", partno), partno);
        return 0;
     }