Changeset 13398 for modules

Show
Ignore:
Timestamp:
02/06/12 11:05:45 (1 year ago)
Author:
mbrevda
Message:

quick polish to full template, help message for templates onbackup page

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.10/backup/install.php

    r13138 r13398  
    320320  $temp['full']       = $temp['basic']; 
    321321  $temp['full']['name']   = 'Full Backup'; 
    322   $temp['full']['desc']   = _('A full backup of core settings and web files'); 
     322  $temp['full']['desc']   = _('A full backup of core settings and web files, dosen\'t include system sounds or recordings.'); 
    323323 
    324324  $temp['full']['type'][]   = 'mysql'; 
     
    344344  $temp['full']['type'][]   = 'dir'; 
    345345  $temp['full']['path'][]   = '__AMPBIN__'; 
    346   $temp['full']['exclude'][]  = ''; 
     346  $temp['full']['exclude'][]  = '__ASTVARLIBDIR__/moh'; 
     347  $temp['full']['exclude'][]  = '__ASTVARLIBDIR__/sounds'; 
    347348   
    348349  $temp['full']['type'][]   = 'dir'; 
     
    409410  $temp['safe_backup'] = array( 
    410411          'id'    => '', 
    411           'name'    => 'Safe Remote Restore', 
    412           'desc'    =>  _('Doesn\'t backup Backup\'s settings so that they dont get restored'), 
     412          'name'    => 'Exclude Backup Settings', 
     413          'desc'    =>  _('Exclude Backup\'s settings so that they dont get restored, usefull for a remote restore'), 
    413414          'immortal'  => 'true', 
    414415          'type'    => array( 
  • modules/branches/2.10/backup/views/backup/backup.php

    r12445 r13398  
    4848$table->set_heading( 
    4949      fpbx_label(_('Backup Items'),  
    50         _('drag templates and drop them in the items table to add the templates items to the table')) 
    51       , _('Templates')); 
     50        _('Drag templates and drop them in the items table to add the templates items to the table')) 
     51      ,  
     52      fpbx_label(_('Templates'), _('Drag templates and drop them in the Backup Items table. ' 
     53                    . 'Add as many templates as you need'))); 
    5254$table->add_row($current, array('data' => $template_list, 'style' => 'padding-left: 100px;padding-right: 100px')); 
    5355$html .= $table->generate();