Changeset 4759
- Timestamp:
- 08/07/07 22:19:50 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx_reload.php
r4758 r4759 72 72 73 73 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" /> Close</a>'+75 ' <a id="reload_retry_btn" href="#" onclick="run_reload();"><img src="images/arrow_rotate_clockwise.png" height="16" width="16" border="0" alt=" Retry" /> 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'); ?>" /> <?php echo _('Close'); ?></a>'+ 75 ' <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'); ?>" /> <?php echo _('Retry'); ?></a> </div>'; 76 76 77 77 $('#reload_response').html(responsetext); … … 86 86 $('#reload_response').html( 87 87 '<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'); ?>" /> <?php echo _('Close'); ?></a></div>' 89 89 ); 90 90 $("#reload_reloading").slideUp(150, function() { … … 104 104 <div id="reloadBox" style="display:none;"> 105 105 <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.'); ?> 108 108 <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> 111 111 </ul> 112 112 </div> 113 113 114 114 <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...'); ?>" /> 117 117 </div> 118 118
