From 54fefa078e54718acbd2489b0f92328f272f9a3c Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 18 Jan 2015 21:17:09 +0100 Subject: textual: fix spellos and inconsistencies in several program messages Signed-off-by: Benno Schulenberg --- disk-utils/fdisk-menu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'disk-utils/fdisk-menu.c') diff --git a/disk-utils/fdisk-menu.c b/disk-utils/fdisk-menu.c index a8af7b837..64e7ba144 100644 --- a/disk-utils/fdisk-menu.c +++ b/disk-utils/fdisk-menu.c @@ -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; } -- cgit v1.2.3-55-g7522