summaryrefslogtreecommitdiffstats
path: root/disk-utils
diff options
context:
space:
mode:
authorBenno Schulenberg2014-07-22 22:56:27 +0200
committerKarel Zak2014-07-23 08:56:00 +0200
commit09af3db48e01e5744f15fd8a2395e0fed36526ea (patch)
tree2366730c75e6c1b6ad662184107e948481344afd /disk-utils
parentswapon: don't print errors as data in smartcols table (diff)
downloadkernel-qcow2-util-linux-09af3db48e01e5744f15fd8a2395e0fed36526ea.tar.gz
kernel-qcow2-util-linux-09af3db48e01e5744f15fd8a2395e0fed36526ea.tar.xz
kernel-qcow2-util-linux-09af3db48e01e5744f15fd8a2395e0fed36526ea.zip
textual: fix some typos and inconsistencies in various messages
Fixing plain typos, miswordings, inconsistent periods, some missing angular brackets, and a proper pluralization (even when it involves a constant, because for some languages the precise value matters). Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils')
-rw-r--r--disk-utils/cfdisk.c6
-rw-r--r--disk-utils/fdisk.c2
-rw-r--r--disk-utils/fsck.cramfs.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c
index 109489a1e..5a42ab189 100644
--- a/disk-utils/cfdisk.c
+++ b/disk-utils/cfdisk.c
@@ -1806,9 +1806,9 @@ static int main_menu_action(struct cfdisk *cf, int key)
ref = 1;
if (t && fdisk_set_partition_type(cf->cxt, n, t) == 0)
- info = _("Changed type of the partition %zu.");
+ info = _("Changed type of partition %zu.");
else
- info = _("Type of the partition %zu is unchanged.");
+ info = _("The type of partition %zu is unchanged.");
break;
}
case 's': /* fix order */
@@ -1830,7 +1830,7 @@ static int main_menu_action(struct cfdisk *cf, int key)
rc = ui_get_string(cf,
_("Are you sure you want to write the partition "
"table to disk? "),
- _("Type \"yes\" or \"no\" or press ESC to left dialog."),
+ _("Type \"yes\" or \"no\", or press ESC to leave this dialog."),
buf, sizeof(buf));
ref = 1;
diff --git a/disk-utils/fdisk.c b/disk-utils/fdisk.c
index d6bb73739..8d57dbb17 100644
--- a/disk-utils/fdisk.c
+++ b/disk-utils/fdisk.c
@@ -958,7 +958,7 @@ int main(int argc, char **argv)
} else if (fdisk_is_disklabel(cxt, GPT) && fdisk_gpt_is_hybrid(cxt))
fdisk_warnx(cxt, _(
- "The hybrid GPT detected. You have to sync "
+ "A hybrid GPT was detected. You have to sync "
"the hybrid MBR manually (expert command 'M')."));
while (1)
diff --git a/disk-utils/fsck.cramfs.c b/disk-utils/fsck.cramfs.c
index 6adfa3334..0a1c6f27b 100644
--- a/disk-utils/fsck.cramfs.c
+++ b/disk-utils/fsck.cramfs.c
@@ -105,7 +105,7 @@ static void __attribute__((__noreturn__)) usage(int status)
fputs(USAGE_HEADER, stream);
fprintf(stream,
- _(" %s [options] file\n"), program_invocation_short_name);
+ _(" %s [options] <file>\n"), program_invocation_short_name);
fputs(USAGE_OPTIONS, stream);
fputs(_(" -a for compatibility only, ignored\n"), stream);
fputs(_(" -v, --verbose be more verbose\n"), stream);