Ticket #2591: ivr.patch

File ivr.patch, 2.4 kB (added by ded, 4 years ago)
  • page.ivr.php

    old new  
    126126  <table> 
    127127    <tr><td colspan=2><hr /></td></tr> 
    128128    <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> 
    130130      <td><input type="text" name="displayname" value="<?php echo $ivr_details['displayname'] ?>"></td> 
    131131    </tr> 
    132132    <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> 
    134134      <td><input type="text" name="timeout" value="<?php echo $ivr_details['timeout'] ?>"></td> 
    135135    </tr> 
    136136    <?php if ( function_exists('voicemail_getVoicemail') ) { ?> 
    137137    <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> 
    139139      <td><input type="checkbox" name="ena_directory" <?php echo $ivr_details['enable_directory'] ?>></td> 
    140140    </tr> 
    141141    <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> 
    143143      <td> 
    144144        <select name="dircontext"/> 
    145145          <?php 
     
    155155    </tr> 
    156156    <?php } ?> 
    157157    <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> 
    159159      <td><input type="checkbox" name="ena_directdial" <?php echo $ivr_details['enable_directdial'] ?>></td> 
    160160    </tr> 
    161161<?php