This makes two equivalent translation messages the exact same so they
only need to be translated once.
It also adds a missing translation marker (for the same string).
This same string is used in recvcmd.c so does not generate a new
translation string.
{
if (!h->env->from)
{
- mutt_error _("Warning: message has no From: header");
+ mutt_error _("Warning: message contains no From: header");
mutt_sleep (2);
}
}
{
if (Context->hdrs[rc]->tagged && !Context->hdrs[rc]->env->from)
{
- mutt_error ("Warning: message has no From: header");
+ mutt_error _("Warning: message contains no From: header");
mutt_sleep (2);
break;
}