From: Kevin McCarthy Date: Fri, 18 Nov 2016 22:20:54 +0000 (-0800) Subject: Improve two compress translation messages. X-Git-Tag: neomutt-20170225~32^2~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c533fa9420c5482a7d8be557fc5de5fc287a80c;p=neomutt Improve two compress translation messages. Change the "Error executing" to "Error running", which is used in multiple places elsewhere in mutt. This also removes the unnecessary newline. Remove the leading space in the "Error compressing" message, and change it to match the error message in editmsg.c. --- diff --git a/compress.c b/compress.c index 0df85aedb..68a54b7a9 100644 --- a/compress.c +++ b/compress.c @@ -441,7 +441,7 @@ execute_command (CONTEXT *ctx, const char *command, const char *progress) { rc = 0; mutt_any_key_to_continue (NULL); - mutt_error (_("Error executing: %s\n"), sys_cmd); + mutt_error (_("Error running \"%s\"!"), sys_cmd); } mutt_unblock_signals(); @@ -657,7 +657,7 @@ close_mailbox (CONTEXT *ctx) if (rc == 0) { mutt_any_key_to_continue (NULL); - mutt_error (_(" %s: Error compressing mailbox! Uncompressed one kept!\n"), ctx->path); + mutt_error (_("Error. Preserving temporary file: %s"), ctx->path); } else remove (ctx->path);