From: Benno Schulenberg Date: Mon, 31 Jan 2011 10:44:42 +0000 (+0100) Subject: textual: fix three typos in message strings and improve consistency X-Git-Tag: v2.20-rc1~566 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e22d8b9519cb8d71fe13cc11105ccb7c29b92a24;p=thirdparty%2Futil-linux.git textual: fix three typos in message strings and improve consistency Signed-off-by: Benno Schulenberg --- diff --git a/misc-utils/lsblk.c b/misc-utils/lsblk.c index 2eb6900ac7..1616f19727 100644 --- a/misc-utils/lsblk.c +++ b/misc-utils/lsblk.c @@ -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") }, diff --git a/partx/partx.c b/partx/partx.c index 1a60cb4559..84cb1a17f3 100644 --- a/partx/partx.c +++ b/partx/partx.c @@ -774,7 +774,7 @@ int main(int argc, char **argv) usage(stderr); if (device && (upper || lower)) - errx(EXIT_FAILURE, _("--nr and are mutually exclusive}")); + errx(EXIT_FAILURE, _("--nr and are mutually exclusive")); assert(wholedisk); diff --git a/sys-utils/fstrim.8 b/sys-utils/fstrim.8 index 952f88f7c1..1bca53b5f2 100644 --- a/sys-utils/fstrim.8 +++ b/sys-utils/fstrim.8 @@ -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 diff --git a/sys-utils/fstrim.c b/sys-utils/fstrim.c index a3a8475223..c7043a7c42 100644 --- a/sys-utils/fstrim.c +++ b/sys-utils/fstrim.c @@ -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':