diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-06-04 15:45:17 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-06-04 15:45:17 +0200 |
commit | f25be2b863ec997dbe49d655db3a5a80a1f17bb7 (patch) | |
tree | 3cde2c97c133382ffb38cbe27940e799272c0a3b /program | |
parent | 72afe3153cfaf0f8aaa0a4db115fea62959ff6d1 (diff) |
Render localized texts for icon-style messagelist headers
Diffstat (limited to 'program')
-rw-r--r-- | program/steps/mail/func.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 436475f64..d8211f532 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -541,12 +541,14 @@ function rcmail_message_list_head($attrib, $a_show_cols) // get column name switch ($col) { case 'flag': - $col_name = html::span('flagged', ' '); + $col_name = html::span('flagged', $RCMAIL->gettext('flagged')); break; case 'attachment': case 'priority': + $col_name = html::span($col, $RCMAIL->gettext($col)); + break; case 'status': - $col_name = html::span($col, ' '); + $col_name = html::span($col, $RCMAIL->gettext('readstatus')); break; case 'threads': $col_name = $list_menu; |