Changeset 1300 in subversion


Ignore:
Timestamp:
Apr 14, 2008 5:54:57 AM (5 years ago)
Author:
alec
Message:
  • Added sections (fieldset+label) in Settings interface
Location:
trunk/roundcubemail
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r1292 r1300  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42008/04/14 (alec) 
     5---------- 
     6- Added sections (fieldset+label) in Settings interface 
    37 
    482008/04/12 (alec) 
  • trunk/roundcubemail/program/localization/en_GB/labels.inc

    r1283 r1300  
    198198$labels['logoutclear'] = 'Clear Trash on logout'; 
    199199$labels['logoutcompact'] = 'Compact Inbox on logout'; 
     200$labels['uisettings'] = 'User Interface'; 
     201$labels['serversettings'] = 'Server Settings'; 
    200202$labels['autosavedraft'] = 'Automatically save draft'; 
    201203$labels['everynminutes'] = 'every $n minutes'; 
  • trunk/roundcubemail/program/localization/en_US/labels.inc

    r1282 r1300  
    253253$labels['logoutclear'] = 'Clear Trash on logout'; 
    254254$labels['logoutcompact'] = 'Compact Inbox on logout'; 
     255$labels['uisettings'] = 'User Interface'; 
     256$labels['serversettings'] = 'Server Settings'; 
    255257 
    256258$labels['autosavedraft']  = 'Automatically save draft'; 
  • trunk/roundcubemail/program/localization/pl/labels.inc

    r1283 r1300  
    222222$labels['logoutcompact'] = 'Przy wylogowaniu porzÄ 
    223223dkuj folder Odebrane'; 
     224$labels['uisettings'] = 'Interfejs uÅŒytkownika'; 
     225$labels['serversettings'] = 'Ustawienia serwera'; 
    224226$labels['autosavedraft'] = 'Automatyczny zapis tworzonej wiadomości'; 
    225227$labels['everynminutes'] = 'co $n minut'; 
  • trunk/roundcubemail/program/steps/settings/func.inc

    r1291 r1300  
    4141  $attrib_str = create_attrib_string($attrib, array('style', 'class', 'id', 'cellpadding', 'cellspacing', 'border', 'summary')); 
    4242 
    43   // return the complete edit form as table 
    44   $out = "$form_start<table" . $attrib_str . ">\n\n"; 
     43  // return the complete edit form as tables 
     44  $out = "$form_start<fieldset><legend>" . Q(rcube_label('uisettings')) . "</legend>\n<table" . $attrib_str . ">\n\n"; 
    4545 
    4646  // show language selection 
     
    181181                    $input_preview->show($CONFIG['preview_pane']?1:0)); 
    182182    } 
     183 
     184  $out .= "</table></fieldset>\n<fieldset><legend>" . Q(rcube_label('serversettings')) . "</legend>\n<table" . $attrib_str . ">\n\n"; 
    183185                   
    184186  if (!empty($CONFIG['drafts_mbox']) && !isset($no_override['draft_autosave'])) 
     
    218220    } 
    219221 
    220   $out .= "\n</table>$form_end"; 
     222  $out .= "\n</table></fieldset>$form_end"; 
    221223 
    222224  return $out;   
  • trunk/roundcubemail/skins/default/settings.css

    r1235 r1300  
    198198  width: 90px; 
    199199} 
     200 
     201fieldset  
     202{ 
     203  margin-bottom: 0.5em; 
     204  border: 1px solid #999999; 
     205} 
     206 
     207legend 
     208{ 
     209  color: #999999; 
     210} 
     211   
  • trunk/roundcubemail/skins/default/templates/settings.html

    r77 r1300  
    1818<roundcube:object name="userprefs"> 
    1919 
    20 <p><br /><roundcube:button command="save" type="input" class="button" label="save" /></p> 
     20<p><roundcube:button command="save" type="input" class="button" label="save" /></p> 
    2121</div> 
    2222</div> 
Note: See TracChangeset for help on using the changeset viewer.