From 1d23119072a3a117e7bb83694bd30b9d50961374 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 6 Aug 2014 22:35:06 +0200 Subject: textual: remove some inconsistent periods from error messages While doing so, also improve translatability and some wordings. Signed-off-by: Benno Schulenberg --- include/optutils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/optutils.h') diff --git a/include/optutils.h b/include/optutils.h index 9177860bb..fd5dde39b 100644 --- a/include/optutils.h +++ b/include/optutils.h @@ -78,7 +78,8 @@ static inline void err_exclusive_options( else if (status[e] != c) { size_t ct = 0; - fprintf(stderr, _("%s: options "), + fprintf(stderr, _("%s: these options are" + "mutually exclusive:"), program_invocation_short_name); for (op = excl[e]; @@ -86,11 +87,10 @@ static inline void err_exclusive_options( op++, ct++) { const char *n = option_to_longopt(*op, opts); if (n) - fprintf(stderr, "--%s ", n); + fprintf(stderr, " --%s", n); else - fprintf(stderr, "-%c ", *op); + fprintf(stderr, " -%c", *op); } - fprintf(stderr, _("are mutually exclusive.")); fputc('\n', stderr); exit(OPTUTILS_EXIT_CODE); } -- cgit v1.2.3-55-g7522