Ticket #2591: ivr.patch
| File ivr.patch, 2.4 kB (added by ded, 4 years ago) |
|---|
-
page.ivr.php
old new 126 126 <table> 127 127 <tr><td colspan=2><hr /></td></tr> 128 128 <tr> 129 <td><a href="#" class="info"> Change Name<span>This changes the short name, visible on the right, of this IVR</span></a></td>129 <td><a href="#" class="info"><?php echo _("Change Name"); ?><span><?php echo _("This changes the short name, visible on the right, of this IVR");?></span></a></td> 130 130 <td><input type="text" name="displayname" value="<?php echo $ivr_details['displayname'] ?>"></td> 131 131 </tr> 132 132 <tr> 133 <td><a href="#" class="info"> Timeout<span>The amount of time (in seconds) before the 't' option, if specified, is used</span></a></td>133 <td><a href="#" class="info"><?php echo _("Timeout");?><span><?php echo _("The amount of time (in seconds) before the 't' option, if specified, is used");?></span></a></td> 134 134 <td><input type="text" name="timeout" value="<?php echo $ivr_details['timeout'] ?>"></td> 135 135 </tr> 136 136 <?php if ( function_exists('voicemail_getVoicemail') ) { ?> 137 137 <tr> 138 <td><a href="#" class="info"> Enable Directory<span>Let callers into the IVR dial '#' to access the directory</span></a></td>138 <td><a href="#" class="info"><?php echo _("Enable Directory");?><span><?php echo _("Let callers into the IVR dial '#' to access the directory");?></span></a></td> 139 139 <td><input type="checkbox" name="ena_directory" <?php echo $ivr_details['enable_directory'] ?>></td> 140 140 </tr> 141 141 <tr> 142 <td><a href="#" class="info"> Directory Context<span>When # is selected, this is the voicemail directory context that is used</span></a></td>142 <td><a href="#" class="info"><?php echo _("Directory Context");?><span><?php echo _("When # is selected, this is the voicemail directory context that is used");?></span></a></td> 143 143 <td> 144 144 <select name="dircontext"/> 145 145 <?php … … 155 155 </tr> 156 156 <?php } ?> 157 157 <tr> 158 <td><a href="#" class="info"> Enable Direct Dial<span>Let callers into the IVR dial an extension directly</span></a></td>158 <td><a href="#" class="info"><?php echo _("Enable Direct Dial");?><span><?php echo _("Let callers into the IVR dial an extension directly");?></span></a></td> 159 159 <td><input type="checkbox" name="ena_directdial" <?php echo $ivr_details['enable_directdial'] ?>></td> 160 160 </tr> 161 161 <?php
