Merge branch 'dev-elastic' of github.com:roundcube/roundcubemail into dev-elastic

pull/6040/head
Aleksander Machniak 7 years ago
commit d7be2f1946

@ -165,6 +165,7 @@ $labels['more'] = 'More';
$labels['back'] = 'Back'; $labels['back'] = 'Back';
$labels['options'] = 'Options'; $labels['options'] = 'Options';
$labels['composeoptions'] = 'Compose options'; $labels['composeoptions'] = 'Compose options';
$labels['optionsandattachments'] = 'Options and attachments';
$labels['actions'] = 'Actions'; $labels['actions'] = 'Actions';
$labels['first'] = 'First'; $labels['first'] = 'First';
@ -684,6 +685,7 @@ $labels['arialabelcomposeoptions'] = 'Composition options';
$labels['arialabelresponsesmenu'] = 'Canned responses menu'; $labels['arialabelresponsesmenu'] = 'Canned responses menu';
$labels['arialabelattachmentuploadform'] = 'Attachment upload form'; $labels['arialabelattachmentuploadform'] = 'Attachment upload form';
$labels['arialabelattachmentmenu'] = 'Attachment options'; $labels['arialabelattachmentmenu'] = 'Attachment options';
$labels['arialabelmailtomenu'] = 'Email address options';
$labels['arialabelattachmentpreview'] = 'Attachment preview'; $labels['arialabelattachmentpreview'] = 'Attachment preview';
$labels['ariasummarycomposecontacts'] = 'List of contacts and groups to select as recipients'; $labels['ariasummarycomposecontacts'] = 'List of contacts and groups to select as recipients';
$labels['arialabelcontactexportoptions'] = 'Contact export options'; $labels['arialabelcontactexportoptions'] = 'Contact export options';

@ -276,7 +276,9 @@ function rcmail_message_buttons()
$dbox = $RCMAIL->config->get('drafts_mbox'); $dbox = $RCMAIL->config->get('drafts_mbox');
// the message is not a draft // the message is not a draft
if ($MESSAGE->folder != $dbox && strpos($MESSAGE->folder, $dbox.$delim) !== 0) { if ($MESSAGE->context
|| ($MESSAGE->folder != $dbox && strpos($MESSAGE->folder, $dbox.$delim) !== 0)
) {
return ''; return '';
} }
@ -522,7 +524,7 @@ function rcmail_message_summary($attrib)
return; return;
} }
$header = rcmail_message_list_smart_column_name(); $header = $MESSAGE->context ? 'from' : rcmail_message_list_smart_column_name();
$label = 'shortheader' . $header; $label = 'shortheader' . $header;
$date = $RCMAIL->format_date($MESSAGE->headers->date, $RCMAIL->config->get('date_long', 'x')); $date = $RCMAIL->format_date($MESSAGE->headers->date, $RCMAIL->config->get('date_long', 'x'));
$user = $MESSAGE->headers->$header; $user = $MESSAGE->headers->$header;

Loading…
Cancel
Save