Changeset 6301
- Timestamp:
- 08/09/08 13:21:23 (5 years ago)
- Files:
-
- modules/branches/2.5/ivr/page.ivr.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/ivr/page.ivr.php
r6222 r6301 70 70 <h3><?php 71 71 echo _("Instructions")."</h3>"; 72 echo _("You use the Digital Receptionist to make IVR's, Interactive Voice Respon ce systems.")."<br />\n";72 echo _("You use the Digital Receptionist to make IVR's, Interactive Voice Response systems.")."<br />\n"; 73 73 echo _("When creating a menu option, apart from the standard options of 0-9,* and #, you can also use 'i' and 't' destinations.")."\n"; 74 74 echo _("'i' is used when the caller pushes an invalid button, and 't' is used when there is no response.")."\n"; … … 122 122 if (count($usage_list)) { 123 123 ?> 124 <a href="#" class="info"><?php echo _("Queue Breakout Menu Usage List");?><span><?php echo _("This IVR is being used by the following Queues, providing an ability for callers to hear this Queue's annou cement periodically and giving callers an option to break out of the queue into this IVR's menu options. This queue can not be deleted when being used in this mode");?></span></a>124 <a href="#" class="info"><?php echo _("Queue Breakout Menu Usage List");?><span><?php echo _("This IVR is being used by the following Queues, providing an ability for callers to hear this Queue's announcement periodically and giving callers an option to break out of the queue into this IVR's menu options. This queue can not be deleted when being used in this mode");?></span></a> 125 125 <?php 126 126 $count = 0; … … 216 216 </tr> 217 217 <tr> 218 <td><a href="#" class="info"><?php echo _("Loop Before t-dest");?><span><?php echo _("If checked, and there is a 't' (timeout) destination defined below, the IVR will loop back to the begin ing if no input is provided for the designated loop counts prior to going to the timeout (t) destination.");?></span></a></td>218 <td><a href="#" class="info"><?php echo _("Loop Before t-dest");?><span><?php echo _("If checked, and there is a 't' (timeout) destination defined below, the IVR will loop back to the beginning if no input is provided for the designated loop counts prior to going to the timeout (t) destination.");?></span></a></td> 219 219 <td><input type="checkbox" name="alt_timeout" <?php echo $ivr_details['alt_timeout'] ?> tabindex="<?php echo ++$tabindex;?>"></td> 220 220 </tr> … … 223 223 if(function_exists('recordings_list')) { //only include if recordings is enabled ?> 224 224 <tr> 225 <td><a href="#" class="info"><?php echo _("Timeout Message")?><span><?php echo _("If a timeout occurs and a message is selected, it will be played in place of the annou cement message when looping back to the top of the IVR. It will not be played if the t destination is the next target.")?></span></a></td>225 <td><a href="#" class="info"><?php echo _("Timeout Message")?><span><?php echo _("If a timeout occurs and a message is selected, it will be played in place of the announcement message when looping back to the top of the IVR. It will not be played if the t destination is the next target.")?></span></a></td> 226 226 <td> 227 227 <select name="timeout_id" tabindex="<?php echo ++$tabindex;?>"> … … 242 242 ?> 243 243 <tr> 244 <td><a href="#" class="info"><?php echo _("Loop Before i-dest");?><span><?php echo _("If checked, and there is an 'i' (invalid extension) destination defined below, the IVR will play invalid option and then loop back to the begin ing for the designated loop counts prior to going to the invalid (i) destination.");?></span></a></td>244 <td><a href="#" class="info"><?php echo _("Loop Before i-dest");?><span><?php echo _("If checked, and there is an 'i' (invalid extension) destination defined below, the IVR will play invalid option and then loop back to the beginning for the designated loop counts prior to going to the invalid (i) destination.");?></span></a></td> 245 245 <td><input type="checkbox" name="alt_invalid" <?php echo $ivr_details['alt_invalid'] ?> tabindex="<?php echo ++$tabindex;?>"></td> 246 246 </tr> … … 249 249 if(function_exists('recordings_list')) { //only include if recordings is enabled ?> 250 250 <tr> 251 <td><a href="#" class="info"><?php echo _("Invalid Message")?><span><?php echo _("If an invalid extension is pressed and a message is selected, it will be played in place of the annou cement message when looping back to the top of the IVR. It will not be played if the t destination is the next target. If nothing is selcted, the system will play a default invalid extension message before going back to the main announcement")?></span></a></td>251 <td><a href="#" class="info"><?php echo _("Invalid Message")?><span><?php echo _("If an invalid extension is pressed and a message is selected, it will be played in place of the announcement message when looping back to the top of the IVR. It will not be played if the t destination is the next target. If nothing is selcted, the system will play a default invalid extension message before going back to the main announcement")?></span></a></td> 252 252 <td> 253 253 <select name="invalid_id" tabindex="<?php echo ++$tabindex;?>">
