Changeset 4759

Show
Ignore:
Timestamp:
08/07/07 22:19:50 (6 years ago)
Author:
gregmac
Message:

Add localizations

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx_reload.php

    r4758 r4759  
    7272             
    7373              responsetext += '</div>' + 
    74                               '<div class="buttons"><a id="reload_response_close_btn" href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" alt="Close" />&nbsp;Close</a>'+ 
    75                               '&nbsp;&nbsp;&nbsp;<a id="reload_retry_btn" href="#" onclick="run_reload();"><img src="images/arrow_rotate_clockwise.png" height="16" width="16" border="0" alt="Retry" />&nbsp;Retry</a> </div>'; 
     74                              '<div class="buttons"><a id="reload_response_close_btn" href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" alt="<?php echo _('Close'); ?>" />&nbsp;<?php echo _('Close'); ?></a>'+ 
     75                              '&nbsp;&nbsp;&nbsp;<a id="reload_retry_btn" href="#" onclick="run_reload();"><img src="images/arrow_rotate_clockwise.png" height="16" width="16" border="0" alt="<?php echo _('Retry'); ?>" />&nbsp;<?php echo _('Retry'); ?></a> </div>'; 
    7676 
    7777              $('#reload_response').html(responsetext); 
     
    8686            $('#reload_response').html( 
    8787              '<p><?php echo _('Error: Did not receive valid response from server'); ?></p>' +  
    88               '<div><a id="reload_response_close_btn" href="#" onclick="freepbx_stop_reload();">Close</a></div>' 
     88              '<div class="buttons"><a id="reload_response_close_btn" href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" alt="<?php echo _('Close'); ?>" />&nbsp;<?php echo _('Close'); ?></a></div>' 
    8989            ); 
    9090            $("#reload_reloading").slideUp(150, function() { 
     
    104104<div id="reloadBox" style="display:none;"> 
    105105  <div id="reload_confirm"> 
    106     <h3>Apply Configuration Changes</h3> 
    107     Reloading will apply all configuration changes made in FreePBX to your PBX engine and make them active. 
     106    <h3><?php echo _('Apply Configuration Changes'); ?></h3> 
     107    <?php echo _('Reloading will apply all configuration changes made in FreePBX to your PBX engine and make them active.'); ?> 
    108108    <ul> 
    109     <li><a id="reload_confirm_continue_btn" href="#" onclick="run_reload();"><img src="images/accept.png" height="16" width="16" border="0" alt="Accept" /> Continue with reload</a></li> 
    110       <li><a href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" alt="Cancel" /> Cancel reload and go back to editing</a></li> 
     109    <li><a id="reload_confirm_continue_btn" href="#" onclick="run_reload();"><img src="images/accept.png" height="16" width="16" border="0" alt="<?php echo _('Accept'); ?>" /> <?php echo _('Continue with reload'); ?></a></li> 
     110      <li><a href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" alt="<?php echo _('Cancel'); ?>" /> <?php echo _('Cancel reload and go back to editing'); ?></a></li> 
    111111    </ul> 
    112112  </div> 
    113113   
    114114  <div id="reload_reloading" style="display:none;"> 
    115     <h3>Please wait, reloading..</h3> 
    116     <img src="images/loading.gif" alt="Loading..." /> 
     115    <h3><?php echo _('Please wait, reloading..'); ?></h3> 
     116    <img src="images/loading.gif" alt="<?php echo _('Loading...'); ?>" /> 
    117117  </div> 
    118118