]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
textual: fix spellos and inconsistencies in several program messages
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 18 Jan 2015 20:17:09 +0000 (21:17 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 26 Jan 2015 10:17:55 +0000 (11:17 +0100)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
disk-utils/cfdisk.c
disk-utils/fdisk-list.c
disk-utils/fdisk-menu.c
disk-utils/sfdisk.c
libfdisk/src/gpt.c
misc-utils/logger.c
sys-utils/swapon.c
sys-utils/unshare.c
term-utils/agetty.c

index 1d4e2d579ee3c3c240a474901f20b549160975ea..509fbbd635b3da4229449fbc1914063e8eabc6d9 100644 (file)
@@ -1660,7 +1660,7 @@ static int ui_script_read(struct cfdisk *cf)
        errno = 0;
        sc = fdisk_new_script_from_file(cf->cxt, buf);
        if (!sc && errno)
-               ui_warn(_("Cannot open: %s"), buf);
+               ui_warn(_("Cannot open %s"), buf);
        else if (!sc)
                ui_warnx(_("Failed to parse script file %s"), buf);
        else if (fdisk_apply_script(cf->cxt, sc) != 0)
@@ -1701,7 +1701,7 @@ static int ui_script_write(struct cfdisk *cf)
        DBG(UI, ul_debug("writing dump into: '%s'", buf));
        f = fopen(buf, "w");
        if (!f) {
-               ui_warn(_("Cannot open: %s"), buf);
+               ui_warn(_("Cannot open %s"), buf);
                rc = -errno;
                goto done;
        }
index 824eb48b89e6fa006771fd3c24d78aa8b77967d3..c65b8b475a28f9d5cd6acd0a3f3cc76284498d6c 100644 (file)
@@ -104,13 +104,13 @@ void list_disklabel(struct fdisk_context *cxt)
 
        itr = fdisk_new_iter(FDISK_ITER_FORWARD);
        if (!itr) {
-               fdisk_warn(cxt, _("faild to allocate iterator"));
+               fdisk_warn(cxt, _("failed to allocate iterator"));
                goto done;
        }
 
        out = scols_new_table();
        if (!out) {
-               fdisk_warn(cxt, _("faild to allocate output table"));
+               fdisk_warn(cxt, _("failed to allocate output table"));
                goto done;
        }
 
@@ -151,7 +151,7 @@ void list_disklabel(struct fdisk_context *cxt)
                struct libscols_line *ln = scols_table_new_line(out, NULL);
 
                if (!ln) {
-                       fdisk_warn(cxt, _("faild to allocate output line"));
+                       fdisk_warn(cxt, _("failed to allocate output line"));
                        goto done;
                }
 
index a8af7b837f8c9b6985faf4b7ac9946ece097177b..64e7ba1446593e37c97870e49cb8ff530b847459 100644 (file)
@@ -459,7 +459,7 @@ static int script_read(struct fdisk_context *cxt)
        errno = 0;
        sc = fdisk_new_script_from_file(cxt, filename);
        if (!sc && errno)
-               fdisk_warn(cxt, _("Cannot open: %s"), filename);
+               fdisk_warn(cxt, _("Cannot open %s"), filename);
        else if (!sc)
                fdisk_warnx(cxt, _("Failed to parse script file %s"), filename);
        else if (fdisk_apply_script(cxt, sc) != 0)
@@ -491,13 +491,13 @@ static int script_write(struct fdisk_context *cxt)
 
        rc = fdisk_script_read_context(sc, NULL);
        if (rc) {
-               fdisk_warnx(cxt, _("Failed to read disk layout into script."));
+               fdisk_warnx(cxt, _("Failed to transform disk layout into script"));
                goto done;
        }
 
        f = fopen(filename, "w");
        if (!f) {
-               fdisk_warn(cxt, _("Cannot open: %s"), filename);
+               fdisk_warn(cxt, _("Cannot open %s"), filename);
                goto done;
        }
 
index 4142181d3e0919e9d62930d757a1f1e361b758b9..8cbb2bc18da6759c410c0c4f0ad8076620732a0e 100644 (file)
@@ -304,7 +304,7 @@ static int write_changes(struct sfdisk *sf)
        int rc = 0;
 
        if (sf->noact)
-               fdisk_info(sf->cxt, _("The partition table unchanged (--no-act)."));
+               fdisk_info(sf->cxt, _("The partition table is unchanged (--no-act)."));
        else {
                rc = fdisk_write_disklabel(sf->cxt);
                if (!rc) {
@@ -380,7 +380,7 @@ static int verify_device(struct sfdisk *sf, const char *devname)
        fdisk_enable_listonly(sf->cxt, 1);
 
        if (fdisk_assign_device(sf->cxt, devname, 1)) {
-               warn(_("cannot open: %s"), devname);
+               warn(_("cannot open %s"), devname);
                return 1;
        }
 
@@ -436,7 +436,7 @@ static int get_size(const char *dev, int silent, uintmax_t *sz)
        fd = open(dev, O_RDONLY);
        if (fd < 0) {
                if (!silent)
-                       warn(_("cannot open: %s"), dev);
+                       warn(_("cannot open %s"), dev);
                return -errno;
        }
 
@@ -490,7 +490,7 @@ static int print_geom(struct sfdisk *sf, const char *devname)
        fdisk_enable_listonly(sf->cxt, 1);
 
        if (fdisk_assign_device(sf->cxt, devname, 1)) {
-               warn(_("cannot open: %s"), devname);
+               warn(_("cannot open %s"), devname);
                return 1;
        }
 
@@ -656,10 +656,10 @@ static void assign_device_partition(struct sfdisk *sf,
 
        n = fdisk_get_npartitions(sf->cxt);
        if (partno > n)
-               errx(EXIT_FAILURE, _("%s: partition %zu: partition table contains %zu "
-                                    "partitions only."), devname, partno, n);
+               errx(EXIT_FAILURE, _("%s: partition %zu: partition table contains "
+                                    "only %zu partitions"), devname, partno, n);
        if (!fdisk_is_partition_used(sf->cxt, partno - 1))
-               errx(EXIT_FAILURE, _("%s: partition %zu: partition unnused"),
+               errx(EXIT_FAILURE, _("%s: partition %zu: partition is unused"),
                                devname, partno);
 }
 
@@ -1111,14 +1111,14 @@ static int command_fdisk(struct sfdisk *sf, int argc, char **argv)
        if (partno >= 0) {
                size_t n;
                if (!fdisk_has_label(sf->cxt))
-                       errx(EXIT_FAILURE, _("%s: cannot modify partition %d, "
-                                            "not found partition table."),
+                       errx(EXIT_FAILURE, _("%s: cannot modify partition %d: "
+                                            "no partition table was found"),
                                        devname, partno);
                n = fdisk_get_npartitions(sf->cxt);
                if ((size_t) partno > n)
-                       errx(EXIT_FAILURE, _("%s: cannot modify partition %d, "
-                                            "partition table contains %zu "
-                                            "partitions only."),
+                       errx(EXIT_FAILURE, _("%s: cannot modify partition %d: "
+                                            "partition table contains only %zu "
+                                            "partitions"),
                                        devname, partno, n);
                created = 1;
                next_partno = partno;
@@ -1234,7 +1234,7 @@ static int command_fdisk(struct sfdisk *sf, int argc, char **argv)
 
                        if (!fdisk_partition_has_start(pa) &&
                            !fdisk_partition_start_is_default(pa)) {
-                               fdisk_info(sf->cxt, _("Ignore partition %zu"), next_partno + 1);
+                               fdisk_info(sf->cxt, _("Ignoring partition %zu."), next_partno + 1);
                                continue;
                        }
                        if (!created) {         /* create a new disklabel */
@@ -1490,7 +1490,7 @@ int main(int argc, char *argv[])
                        break;
                case 'u':
                        if (*optarg != 'S')
-                               errx(EXIT_FAILURE, _("unssupported unit '%c'"), *optarg);
+                               errx(EXIT_FAILURE, _("unsupported unit '%c'"), *optarg);
                        break;
                case 'v':
                        printf(_("%s from %s\n"), program_invocation_short_name,
index f6e1741e25838b47114883ed20522715703fc362..2f1fe2eaa84a25b822f370b5a73b28d3888783b4 100644 (file)
@@ -1447,7 +1447,7 @@ static int gpt_entry_attrs_from_string(
                }
 
                if (bit < 0) {
-                       fdisk_warnx(cxt, _("unssuported GPT attribute bit '%s'"), p);
+                       fdisk_warnx(cxt, _("unsupported GPT attribute bit '%s'"), p);
                        return -EINVAL;
                }
 
index 35caf9d9d7c812aff8cfd213f7c0188b8779a88f..a9d4b7471f61f7095c6f8d3e396f6a11a880e621 100644 (file)
@@ -678,7 +678,7 @@ int main(int argc, char **argv)
                if (stdin != jfd)
                        fclose(jfd);
                if (ret)
-                       errx(EXIT_FAILURE, _("journald entry could not be wrote"));
+                       errx(EXIT_FAILURE, _("journald entry could not be written"));
                return EXIT_SUCCESS;
        }
 #endif
index c5106abcc4e3b64e5d54272bff56c61d505c4259..bcceb7c69fc98f48de173991a489c8968376697c 100644 (file)
@@ -758,9 +758,9 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
                " <file>                 name of file to be used\n"), out);
 
        fputs(_("\nAvailable discard policy types (for --discard):\n"
-               " once    : only single-time area discards are issued\n"
-               " pages   : freed pages are discarded before they are reused\n"
-               " If no policy is selected, both discard types are enabled (default).\n"), out);
+               " once    : only single-time area discards are issued\n"
+               " pages   : freed pages are discarded before they are reused\n"
+               "If no policy is selected, both discard types are enabled (default).\n"), out);
 
        fputs(_("\nAvailable columns (for --show):\n"), out);
        for (i = 0; i < ARRAY_SIZE(infos); i++)
index 83c4a005998524547c3e7e05c975c34f0a741307..58e91648a682ad8046d9e7aadcd327f4759ff5ce 100644 (file)
@@ -121,7 +121,7 @@ static void usage(int status)
        fputs(_(" -f, --fork                fork before launching <program>\n"), out);
        fputs(_("     --mount-proc[=<dir>]  mount proc filesystem first (implies --mount)\n"), out);
        fputs(_(" -r, --map-root-user       map current user to root (implies --user)\n"), out);
-       fputs(_(" -s, --setgroups <allow|deny>  control setgroups syscall in user namespaces\n"), out);
+       fputs(_(" -s, --setgroups allow|deny  control the setgroups syscall in user namespaces\n"), out);
 
        fputs(USAGE_SEPARATOR, out);
        fputs(USAGE_HELP, out);
@@ -235,7 +235,7 @@ int main(int argc, char *argv[])
        if (maproot) {
                if (setgrpcmd == SETGROUPS_ALLOW)
                        errx(EXIT_FAILURE, _("options --setgroups=allow and "
-                                       "--map-root-user are mutually exclusive."));
+                                       "--map-root-user are mutually exclusive"));
 
                /* since Linux 3.19 unprivileged writing of /proc/self/gid_map
                 * has s been disabled unless /proc/self/setgroups is written
index 1aafe72a1602b82883fb9828c6d26f8aeeda4bfa..7c97faffa3ee6008478fb700add2bdb30cb6868f 100644 (file)
@@ -1446,7 +1446,7 @@ static char *read_os_release(struct options *op, const char *varname)
        if (!op->osrelease) {
                fd = open(_PATH_OS_RELEASE, O_RDONLY);
                if (fd == -1) {
-                       log_warn(_("cannot open: %s: %m"), _PATH_OS_RELEASE);
+                       log_warn(_("cannot open %s: %m"), _PATH_OS_RELEASE);
                        return NULL;
                }
 
@@ -2496,10 +2496,10 @@ static void reload_agettys(void)
        int fd = open(AGETTY_RELOAD_FILENAME, O_CREAT|O_CLOEXEC|O_WRONLY, 0700);
 
        if (fd < 0)
-               err(EXIT_FAILURE, _("cannot open: %s"), AGETTY_RELOAD_FILENAME);
+               err(EXIT_FAILURE, _("cannot open %s"), AGETTY_RELOAD_FILENAME);
 
        if (futimens(fd, NULL) < 0 || close(fd) < 0)
-               err(EXIT_FAILURE, _("cannot touch file: %s"),
+               err(EXIT_FAILURE, _("cannot touch file %s"),
                    AGETTY_RELOAD_FILENAME);
 #else
        /* very unusual */