summaryrefslogtreecommitdiffstats
path: root/disk-utils/cfdisk.c
diff options
context:
space:
mode:
authorBenno Schulenberg2015-07-25 17:18:15 +0200
committerKarel Zak2015-07-27 11:57:11 +0200
commitd48fc38307125fe94f2df4ece048571d9c4713ac (patch)
tree34629c5bea8990adfd47cabe66af19e8e7dd86bd /disk-utils/cfdisk.c
parentcfdisk: allow an uppercase X to toggle the extra info (diff)
downloadkernel-qcow2-util-linux-d48fc38307125fe94f2df4ece048571d9c4713ac.tar.gz
kernel-qcow2-util-linux-d48fc38307125fe94f2df4ece048571d9c4713ac.tar.xz
kernel-qcow2-util-linux-d48fc38307125fe94f2df4ece048571d9c4713ac.zip
cfdisk: spell "label" in lower case
To be less shouty. It is not an abbreviation like "UUID". Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils/cfdisk.c')
-rw-r--r--disk-utils/cfdisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c
index ac07bb5f9..5e4613695 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)) {