Changeset 4268 in subversion


Ignore:
Timestamp:
Nov 25, 2010 1:47:13 PM (2 years ago)
Author:
thomasb
Message:

Fix group creation; add texts for new address fields

Location:
branches/devel-addressbook
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/devel-addressbook/program/include/rcube_addressbook.php

    r4265 r4268  
    143143    /** 
    144144     * Create new contact records for every item in the record set 
     145     * 
     146     * @param object rcube_result_set Recordset to insert 
     147     * @param boolean True to check for duplicates first 
     148     * @return array List of created record IDs 
    145149     */ 
    146150    function insertMultiple($recset, $check=false) 
  • branches/devel-addressbook/program/localization/en_US/labels.inc

    r4230 r4268  
    252252 
    253253// address boook 
    254 $labels['name']      = 'Display name'; 
    255 $labels['firstname'] = 'First name'; 
    256 $labels['surname']   = 'Last name'; 
    257 $labels['email']     = 'E-Mail'; 
    258  
     254$labels['name']         = 'Display name'; 
     255$labels['firstname']    = 'First name'; 
     256$labels['surname']      = 'Last name'; 
     257$labels['middlename']   = 'Middle name'; 
     258$labels['nameprefix']   = 'Prefix'; 
     259$labels['namesuffix']   = 'Suffix'; 
     260$labels['nickname']     = 'Nickname'; 
     261$labels['jobtitle']     = 'Job title'; 
     262$labels['organization'] = 'Company'; 
     263$labels['department']   = 'Department'; 
     264$labels['gender']       = 'Gender'; 
     265$labels['maidenname']   = 'Maiden name'; 
     266$labels['email']        = 'E-Mail'; 
     267$labels['phone']        = 'Phone'; 
     268$labels['address']      = 'Address'; 
     269$labels['street']       = 'Street'; 
     270$labels['locality']     = 'City'; 
     271$labels['zipcode']      = 'Zip code'; 
     272$labels['region']       = 'Region'; 
     273$labels['country']      = 'Country'; 
     274$labels['birthday']     = 'Birthday'; 
     275$labels['website']      = 'Website'; 
     276$labels['instantmessenger'] = 'IM'; 
     277$labels['notes'] = 'Notes'; 
     278 
     279$labels['addfield'] = 'Add field...'; 
    259280$labels['addcontact'] = 'Add new contact'; 
    260281$labels['editcontact'] = 'Edit contact'; 
     
    276297$labels['newcontactgroup'] = 'Create new contact group'; 
    277298$labels['groupactions']   = 'Actions for contact groups...'; 
    278  
    279 $labels['addfield'] = 'Add field...'; 
    280 $labels['notes'] = 'Notes'; 
    281299 
    282300$labels['previouspage']   = 'Show previous set'; 
  • branches/devel-addressbook/program/steps/addressbook/groups.inc

    r4172 r4268  
    8080  if ($created && $OUTPUT->ajax_call) { 
    8181    $OUTPUT->show_message('groupcreated', 'confirmation'); 
    82     $OUTPUT->command('insert_contact_group', array('source' => $created)); 
     82    $OUTPUT->command('insert_contact_group', array('source' => $source) + $created); 
    8383  } 
    8484  else if (!$created) { 
  • branches/devel-addressbook/skins/default/addressbook.css

    r4242 r4268  
    278278.contactfieldgroup 
    279279{ 
    280         margin: 0.8em 0; 
     280        margin: 1em 0; 
    281281} 
    282282 
    283283form .contactfieldgroup 
    284284{ 
    285         margin: 1.4em 0; 
     285        margin: 1.3em 0; 
    286286} 
    287287 
     
    312312        color: #666; 
    313313        font-weight: bold; 
     314        padding-left: 0; 
    314315} 
    315316 
     
    337338        margin-left: 0.5em; 
    338339} 
     340 
  • branches/devel-addressbook/skins/default/templates/login.html

    r4060 r4268  
    1717 
    1818<form name="form" action="./" method="post"> 
    19 <roundcube:object name="loginform" form="form" autocomplete="off" /> 
     19<roundcube:object name="loginform" form="form" autocomplete="on" /> 
    2020 
    2121<p style="text-align:center;"><input type="submit" class="button mainaction" value="<roundcube:label name='login' />" /></p> 
Note: See TracChangeset for help on using the changeset viewer.