Changeset 5158 in subversion


Ignore:
Timestamp:
Sep 4, 2011 3:50:20 AM (22 months ago)
Author:
alec
Message:
  • Add vCard's Profile URL support (#1488062)
Location:
trunk/roundcubemail
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r5154 r5158  
    22=========================== 
    33 
     4- Add vCard's Profile URL support (#1488062) 
    45- jQuery 1.6.3 
    56- Fix imap_cache setting to values other than 'db' (#1488060) 
  • trunk/roundcubemail/program/localization/en_US/labels.inc

    r5139 r5158  
    292292$labels['typeassistant']  = 'Assistant'; 
    293293$labels['typehomepage']  = 'Home Page'; 
     294$labels['typeblog'] = 'Blog'; 
     295$labels['typeprofile'] = 'Profile'; 
    294296 
    295297$labels['addfield'] = 'Add field...'; 
  • trunk/roundcubemail/program/localization/pl_PL/labels.inc

    r5139 r5158  
    449449$labels['typeassistant'] = 'Asystent'; 
    450450$labels['typehomepage'] = 'Strona domowa'; 
     451$labels['typeblog'] = 'Blog'; 
     452$labels['typeprofile'] = 'Profil'; 
    451453$labels['addfield'] = 'Dodaj pole...'; 
    452454$labels['personalinfo'] = 'Informacje osobiste'; 
  • trunk/roundcubemail/program/steps/addressbook/func.inc

    r5072 r5158  
    4747  'birthday'     => array('type' => 'date', 'size' => 12, 'maxlength' => 16, 'label' => rcube_label('birthday'), 'limit' => 1, 'render_func' => 'rcmail_format_date_col', 'category' => 'personal'), 
    4848  'anniversary'  => array('type' => 'date', 'size' => 12, 'maxlength' => 16, 'label' => rcube_label('anniversary'), 'limit' => 1, 'render_func' => 'rcmail_format_date_col', 'category' => 'personal'), 
    49   'website'      => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('website'), 'subtypes' => array('homepage','work','blog','other'), 'category' => 'main'), 
     49  'website'      => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('website'), 'subtypes' => array('homepage','work','blog','profile','other'), 'category' => 'main'), 
    5050  'im'           => array('type' => 'text', 'size' => 40, 'maxlength' => 50, 'label' => rcube_label('instantmessenger'), 'subtypes' => array('aim','icq','msn','yahoo','jabber','skype','other'), 'category' => 'main'), 
    5151  'notes'        => array('type' => 'textarea', 'size' => 40, 'rows' => 15, 'maxlength' => 500, 'label' => rcube_label('notes'), 'limit' => 1), 
Note: See TracChangeset for help on using the changeset viewer.