summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-28 08:43:31 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-28 08:43:31 +0200
commitad052b81d854e2755d12f5693733ca5be012789c (patch)
tree03450f054d72dd58f269e73c599941092fd7d303
parenta7e0897fde2cfa8a50e780740c19ba943a6c64d8 (diff)
Fix so filename label is "Name" not "Display name"
-rw-r--r--program/localization/en_US/labels.inc1
-rw-r--r--program/steps/mail/get.inc2
-rw-r--r--skins/larry/mail.css4
3 files changed, 4 insertions, 3 deletions
diff --git a/program/localization/en_US/labels.inc b/program/localization/en_US/labels.inc
index cd0b945d5..1865bcb3d 100644
--- a/program/localization/en_US/labels.inc
+++ b/program/localization/en_US/labels.inc
@@ -206,6 +206,7 @@ $labels['searchmod'] = 'Search modifiers';
$labels['msgtext'] = 'Entire message';
$labels['body'] = 'Body';
$labels['type'] = 'Type';
+$labels['namex'] = 'Name';
$labels['openinextwin'] = 'Open in new window';
$labels['emlsave'] = 'Download (.eml)';
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index 57942f67d..a27e788a3 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -444,7 +444,7 @@ function rcmail_message_part_controls($attrib)
$part = $MESSAGE->mime_parts[$part];
$table = new html_table(array('cols' => 2));
- $table->add('title', Q(rcube_label('name')).':');
+ $table->add('title', Q(rcube_label('namex')).':');
$table->add('header', Q(rcmail_attachment_name($part)));
$table->add('title', Q(rcube_label('type')).':');
diff --git a/skins/larry/mail.css b/skins/larry/mail.css
index 4f59495ae..138fad772 100644
--- a/skins/larry/mail.css
+++ b/skins/larry/mail.css
@@ -1217,8 +1217,8 @@ div.message-partheaders .headers-table td.header {
}
#messagepartheader table td.title {
- width: 70px;
- padding-right: 0:
+ width: 60px;
+ padding-right: 0;
}