From: Benno Schulenberg Date: Sat, 25 Jul 2015 15:18:15 +0000 (+0200) Subject: cfdisk: spell "label" in lower case X-Git-Tag: v2.27-rc1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d48fc38307125fe94f2df4ece048571d9c4713ac;p=thirdparty%2Futil-linux.git cfdisk: spell "label" in lower case To be less shouty. It is not an abbreviation like "UUID". Signed-off-by: Benno Schulenberg --- diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index ac07bb5f97..5e46136950 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -1338,7 +1338,7 @@ static void extra_prepare_data(struct cfdisk *cf) if (!blkid_probe_lookup_value(pr, "TYPE", &bdata, NULL)) extra_insert_pair(l, _("Filesystem:"), bdata); if (!blkid_probe_lookup_value(pr, "LABEL", &bdata, NULL)) { - extra_insert_pair(l, _("Filesystem LABEL:"), bdata); + extra_insert_pair(l, _("Filesystem label:"), bdata); devlabel = xstrdup(bdata); } if (!blkid_probe_lookup_value(pr, "UUID", &bdata, NULL)) {