Fix wording of "Mark previewed messages as read" to "Mark messages as read" (#5952)

Since we use the option not only for the preview frame the "previewed" word was confusing.
pull/5960/head
Aleksander Machniak 7 years ago
parent 72fe97ddfc
commit 0ffd5463d8

@ -46,6 +46,7 @@ CHANGELOG Roundcube Webmail
- Fix so files size/count limit is verified (client-side) also on drag-n-drop uploads (#5940)
- Fix invalid template loading on a message error in preview frame (#5941)
- Fix bug where HTML messages could have been rendered empty on some systems (#5957)
- Fix wording of "Mark previewed messages as read" to "Mark messages as read" (#5952)
RELEASE 1.3.1
-------------

@ -547,7 +547,7 @@ $labels['replyandforwardonly'] = 'replies and forwards only';
$labels['insertsignature'] = 'Insert signature';
$labels['sigbelow'] = 'Place signature below the quoted message';
$labels['sigseparator'] = 'Force standard separator in signatures';
$labels['previewpanemarkread'] = 'Mark previewed messages as read';
$labels['automarkread'] = 'Mark messages as read';
$labels['afternseconds'] = 'after $n seconds';
$labels['reqmdn'] = 'Always request a return receipt';
$labels['reqdsn'] = 'Always request a delivery status notification';

@ -449,7 +449,7 @@ function rcmail_user_prefs($current = null)
}
$blocks['main']['options']['mail_read_time'] = array(
'title' => html::label($field_id, rcube::Q($RCMAIL->gettext('previewpanemarkread'))),
'title' => html::label($field_id, rcube::Q($RCMAIL->gettext('automarkread'))),
'content' => $select->show($config['mail_read_time']),
);
}

Loading…
Cancel
Save