]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
textual: fix three typos in message strings and improve consistency
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 31 Jan 2011 10:44:42 +0000 (11:44 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 16 Feb 2011 14:30:13 +0000 (15:30 +0100)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
misc-utils/lsblk.c
partx/partx.c
sys-utils/fstrim.8
sys-utils/fstrim.c

index 2eb6900ac704f4987347a04503e6c44fbc950959..1616f19727de215051a0c4dfb125d937621564e6 100644 (file)
@@ -90,7 +90,7 @@ struct colinfo {
 /* columns descriptions */
 static struct colinfo infos[__NCOLUMNS] = {
        [COL_NAME]   = { "NAME",    0.25, TT_FL_TREE, N_("device name") },
-       [COL_KNAME]  = { "KNAME",   0.3, 0, N_("internel kernel device name") },
+       [COL_KNAME]  = { "KNAME",   0.3, 0, N_("internal kernel device name") },
        [COL_MAJMIN] = { "MAJ:MIN", 6, 0, N_("major:minor device number") },
        [COL_FSTYPE] = { "FSTYPE",  0.1, TT_FL_TRUNC, N_("filesystem type") },
        [COL_TARGET] = { "MOUNTPOINT", 0.10, TT_FL_TRUNC, N_("where the device is mounted") },
index 1a60cb4559930fb2f3d4e57fc393c84459eb61b5..84cb1a17f3c20f24d43f3528316df0e429449e72 100644 (file)
@@ -774,7 +774,7 @@ int main(int argc, char **argv)
                usage(stderr);
 
        if (device && (upper || lower))
-               errx(EXIT_FAILURE, _("--nr and <partition> are mutually exclusive}"));
+               errx(EXIT_FAILURE, _("--nr and <partition> are mutually exclusive"));
 
        assert(wholedisk);
 
index 952f88f7c11d3699a17de76e0c158d7b9cf89961..1bca53b5f2e8d07ff11c77257c1123e169ff0dc4 100644 (file)
@@ -9,7 +9,7 @@ fstrim \- discard unused blocks on a mounted filesystem
 .RB [ \-l
 .IR length ]
 .RB [ \-m
-.IR minimum-extent ]
+.IR minimum-free-extent ]
 .RB [ \-v ]
 .I mountpoint
 
index a3a84752230c7a1f3ff5a181697b3cf3a47e5591..c7043a7c4293c1e7c147ba47e556fe3d9372e28e 100644 (file)
@@ -110,7 +110,7 @@ int main(int argc, char **argv)
                case 'm':
                        if (strtosize(optarg, &range.minlen))
                                errx(EXIT_FAILURE,
-                                    _("failed to parse minimal extend length: %s"),
+                                    _("failed to parse minimum extent length: %s"),
                                     optarg);
                        break;
                case 'v':