const int menu_index = mutt_map_get_value(buf->data, Menus);
if (menu_index == -1)
{
+ // L10N: '%s' is the (misspelled) name of the menu, e.g. 'index' or 'pager'
mutt_buffer_printf(err, _("%s: no such menu"), buf->data);
mutt_buffer_free(&filebuf);
return MUTT_CMD_ERROR;
fp_out = mutt_file_fopen(tempfile, "w");
if (!fp_out)
{
+ // L10N: '%s' is the file name of the temporary file
mutt_buffer_printf(err, _("Could not create temporary file %s"), tempfile);
mutt_buffer_free(&filebuf);
return MUTT_CMD_ERROR;
struct Pager info = { 0 };
if (mutt_pager((bind) ? "bind" : "macro", tempfile, MUTT_PAGER_NO_FLAGS, &info) == -1)
{
+ // L10N: '%s' is the file name of the temporary file
mutt_buffer_printf(err, _("Could not create temporary file %s"), tempfile);
return MUTT_CMD_ERROR;
}
FILE *fp_out = mutt_file_fopen(tempfile, "w");
if (!fp_out)
{
+ // L10N: '%s' is the file name of the temporary file
mutt_buffer_printf(err, _("Could not create temporary file %s"), tempfile);
return MUTT_CMD_ERROR;
}
struct Pager info = { 0 };
if (mutt_pager("set", tempfile, MUTT_PAGER_NO_FLAGS, &info) == -1)
{
+ // L10N: '%s' is the file name of the temporary file
mutt_buffer_printf(err, _("Could not create temporary file %s"), tempfile);
return MUTT_CMD_ERROR;
}
FILE *fp_out = mutt_file_fopen(tempfile, "w");
if (!fp_out)
{
+ // L10N: '%s' is the file name of the temporary file
mutt_buffer_printf(err, _("Could not create temporary file %s"), tempfile);
return MUTT_CMD_ERROR;
}
struct Pager info = { 0 };
if (mutt_pager("version", tempfile, MUTT_PAGER_NO_FLAGS, &info) == -1)
{
+ // L10N: '%s' is the file name of the temporary file
mutt_buffer_printf(err, _("Could not create temporary file %s"), tempfile);
return MUTT_CMD_ERROR;
}