diff options
author | alecpl <alec@alec.pl> | 2012-01-01 13:36:22 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-01-01 13:36:22 +0000 |
commit | e81c00b7b9d9b8e141dd9642fdcfafe975d7c656 (patch) | |
tree | e8e5c5236655f6f18906e32c8941de5bb0e35eb9 /program/steps | |
parent | 79c6ac9b92bcf711c60b99a3316b2133967ee376 (diff) |
- Fix wrong (long) label usage (#1488283)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/addressbook/edit.inc | 2 | ||||
-rw-r--r-- | program/steps/addressbook/search.inc | 2 | ||||
-rw-r--r-- | program/steps/addressbook/show.inc | 2 |
3 files changed, 3 insertions, 3 deletions
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), |