From: Benno Schulenberg Date: Tue, 22 Jan 2013 09:08:03 +0000 (+0100) Subject: textual: tiny tweaks of some error messages X-Git-Tag: v2.23-rc1~273 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e0968018b53cd4900d6e77dfdac8493fdd0a6e2;p=thirdparty%2Futil-linux.git textual: tiny tweaks of some error messages Signed-off-by: Benno Schulenberg --- diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c index ab48129424..79a7328e86 100644 --- a/disk-utils/mkswap.c +++ b/disk-utils/mkswap.c @@ -494,7 +494,7 @@ main(int argc, char **argv) { #ifdef HAVE_LIBUUID opt_uuid = optarg; #else - warnx(_("warning: ignore -U (UUIDs are unsupported by %s)"), + warnx(_("warning: ignoring -U (UUIDs are unsupported by %s)"), program_invocation_short_name); #endif break; @@ -518,7 +518,7 @@ main(int argc, char **argv) { if (version != 1) errx(EXIT_FAILURE, - _("does not support swapspace version %d."), version); + _("swapspace version %d is not supported"), version); #ifdef HAVE_LIBUUID if(opt_uuid) { @@ -574,7 +574,7 @@ main(int argc, char **argv) { if (is_mounted(device_name)) errx(EXIT_FAILURE, _("error: " - "%s is mounted; will not make swapspace."), + "%s is mounted; will not make swapspace"), device_name); if (stat(device_name, &statbuf) < 0) {