X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mx%2Fmbox.c;h=81beb5262ec3ffcdb54dace1436d2a85fd2204af;hp=8e75038fb6af950872341f320e684b53fc46df27;hb=8e075eda08c6f099ec6988e16607fb4f6a10ba92;hpb=9ed7a487e3a922f2cbb222961c2c9710c3a65f91 diff --git a/lib-mx/mbox.c b/lib-mx/mbox.c index 8e75038..81beb52 100644 --- a/lib-mx/mbox.c +++ b/lib-mx/mbox.c @@ -605,7 +605,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) if (ctx->magic == M_MMDF) { if (fputs (MMDF_SEP, fp) == EOF) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); mutt_sleep (5); unlink (tempfile); goto bail; @@ -621,7 +621,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) if (mutt_copy_message (fp, ctx, ctx->hdrs[i], M_CM_UPDATE, CH_FROM | CH_UPDATE | CH_UPDATE_LEN) == -1) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); mutt_sleep (5); unlink (tempfile); goto bail; @@ -640,7 +640,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) switch (ctx->magic) { case M_MMDF: if (fputs (MMDF_SEP, fp) == EOF) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); mutt_sleep (5); unlink (tempfile); goto bail; @@ -648,7 +648,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) break; default: if (fputs ("\n", fp) == EOF) { - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); mutt_sleep (5); unlink (tempfile); goto bail; @@ -659,7 +659,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) if (m_fclose(&fp) != 0) { unlink (tempfile); - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); mutt_sleep (5); goto bail; } @@ -675,7 +675,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) if ((fp = fopen (tempfile, "r")) == NULL) { mutt_unblock_signals (); mx_fastclose_mailbox (ctx); - mutt_perror (tempfile); + mutt_perror (_("Can't create temporary file")); mutt_sleep (5); return (-1); }