summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-06-04 15:45:17 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-06-04 15:45:17 +0200
commitf25be2b863ec997dbe49d655db3a5a80a1f17bb7 (patch)
tree3cde2c97c133382ffb38cbe27940e799272c0a3b
parent72afe3153cfaf0f8aaa0a4db115fea62959ff6d1 (diff)
Render localized texts for icon-style messagelist headers
-rw-r--r--program/steps/mail/func.inc6
-rw-r--r--skins/classic/mail.css2
-rw-r--r--skins/larry/mail.css2
3 files changed, 8 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', '&nbsp;');
+ $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, '&nbsp;');
+ $col_name = html::span($col, $RCMAIL->gettext('readstatus'));
break;
case 'threads':
$col_name = $list_menu;
diff --git a/skins/classic/mail.css b/skins/classic/mail.css
index 45661f7f8..2521fed14 100644
--- a/skins/classic/mail.css
+++ b/skins/classic/mail.css
@@ -814,6 +814,8 @@ table.messagelist.fixedcopy
{
display: block;
width: 15px;
+ text-indent: -5000px;
+ overflow: hidden;
}
.messagelist tr td div.collapsed,
diff --git a/skins/larry/mail.css b/skins/larry/mail.css
index a0b66d9be..98836bba2 100644
--- a/skins/larry/mail.css
+++ b/skins/larry/mail.css
@@ -596,6 +596,8 @@ table.messagelist.fixedcopy {
.messagelist tr > .priority span {
display: block;
width: 20px;
+ text-indent: -5000px;
+ overflow: hidden;
}
.messagelist tr td div.collapsed,