Skip to content

Commit

Permalink
Fix wording of "Mark previewed messages as read" to "Mark messages as…
Browse files Browse the repository at this point in the history
… read" (#5952)

Since we use the option not only for the preview frame the "previewed" word was confusing.
  • Loading branch information
alecpl committed Sep 17, 2017
1 parent 72fe97d commit 0ffd546
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------
Expand Down
2 changes: 1 addition & 1 deletion program/localization/en_US/labels.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion program/steps/settings/func.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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']),
);
}
Expand Down

0 comments on commit 0ffd546

Please sign in to comment.