- Fix wrong (long) label usage (#1488283)

release-0.7
alecpl 13 years ago
parent 79c6ac9b92
commit e81c00b7b9

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix wrong (long) label usage (#1488283)
- Fix handling of INBOX's subfolders in special folders config (#1488279)
- Add ifModule statement for setting Options -Indexes in .htaccess file (#1488274)
- Fix searching on IMAP servers without CHARSET specifier support (#1488271)

@ -353,7 +353,7 @@ $labels['addfollowupto'] = 'Dodaj Followup-To';
$labels['dsn'] = 'Status dostarczenia (DSN)';
$labels['reqdsn'] = 'Zawsze żądaj statusu dostarczenia (DSN)';
$labels['replysamefolder'] = 'Umieszczaj odpowiedzi w folderze wiadomości, na którą odpowiadam';
$labels['contactproperties'] = 'Właściwości';
$labels['contactproperties'] = 'Właściwości kontaktu';
$labels['properties'] = 'Właściwości';
$labels['folderproperties'] = 'Właściwości folderu';
$labels['parentfolder'] = 'Folder nadrzędny';

@ -130,7 +130,7 @@ function rcmail_contact_editform($attrib)
$form = array(
'contact' => array(
'name' => rcube_label('contactproperties'),
'name' => rcube_label('properties'),
'content' => array(
'email' => array('size' => $i_size, 'visible' => true),
'phone' => array('size' => $i_size, 'visible' => true),

@ -252,7 +252,7 @@ function rcmail_contact_search_form($attrib)
$form = array(
'main' => array(
'name' => rcube_label('contactproperties'),
'name' => rcube_label('properties'),
'content' => array(
),
),

@ -102,7 +102,7 @@ function rcmail_contact_details($attrib)
$form = array(
'contact' => array(
'name' => rcube_label('contactproperties'),
'name' => rcube_label('properties'),
'content' => array(
'email' => array('size' => $i_size, 'render_func' => 'rcmail_render_email_value'),
'phone' => array('size' => $i_size),

Loading…
Cancel
Save