summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2012-01-01 13:36:22 +0000
committeralecpl <alec@alec.pl>2012-01-01 13:36:22 +0000
commite81c00b7b9d9b8e141dd9642fdcfafe975d7c656 (patch)
treee8e5c5236655f6f18906e32c8941de5bb0e35eb9
parent79c6ac9b92bcf711c60b99a3316b2133967ee376 (diff)
- Fix wrong (long) label usage (#1488283)
-rw-r--r--CHANGELOG1
-rw-r--r--program/localization/pl_PL/labels.inc2
-rw-r--r--program/steps/addressbook/edit.inc2
-rw-r--r--program/steps/addressbook/search.inc2
-rw-r--r--program/steps/addressbook/show.inc2
5 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index ec12915d7..02a45ffdb 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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)
diff --git a/program/localization/pl_PL/labels.inc b/program/localization/pl_PL/labels.inc
index 85a671816..3d9629744 100644
--- a/program/localization/pl_PL/labels.inc
+++ b/program/localization/pl_PL/labels.inc
@@ -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';
diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc
index 49915f5ab..b562cdb2e 100644
--- a/program/steps/addressbook/edit.inc
+++ b/program/steps/addressbook/edit.inc
@@ -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),
diff --git a/program/steps/addressbook/search.inc b/program/steps/addressbook/search.inc
index 643cc60a8..172286171 100644
--- a/program/steps/addressbook/search.inc
+++ b/program/steps/addressbook/search.inc
@@ -252,7 +252,7 @@ function rcmail_contact_search_form($attrib)
$form = array(
'main' => array(
- 'name' => rcube_label('contactproperties'),
+ 'name' => rcube_label('properties'),
'content' => array(
),
),
diff --git a/program/steps/addressbook/show.inc b/program/steps/addressbook/show.inc
index 9ef83e9b7..04aae678c 100644
--- a/program/steps/addressbook/show.inc
+++ b/program/steps/addressbook/show.inc
@@ -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),