textual: fix three typos in message strings and improve consistency

Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
This commit is contained in:
Benno Schulenberg 2011-01-31 11:44:42 +01:00 committed by Karel Zak
parent 0a09eb4efc
commit e22d8b9519
4 changed files with 4 additions and 4 deletions

View 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") },

View 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);

View 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

View 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':