Ticket #7314: keyboard_flv.diff

File keyboard_flv.diff, 2.8 KB (added by knight@…, 15 years ago)

Makes additionnal labels translatable in MythWeb

  • mythplugins/mythweb/modules/mythweb/tmpl/default/set_flvplayer.php

     
    2424<tr>
    2525    <th><?php echo t('Enable Video Playback') ?>:</th>
    2626    <td><input class="radio" type="checkbox" name="flvplayer"
    27          title="Enable Flash Video player for recordings."
     27         title="<?php echo t('Enable Flash Video player for recordings.') ?>"
    2828        <?php
    2929            $ffmpeg = '';
    3030            foreach (split (':', getenv ('PATH').':/usr/local/bin:/usr/bin') as $path) {
     
    4545                echo ' CHECKED';
    4646            echo '>';
    4747            if (!$has_mp3_support)
    48                 echo ' ffmpeg with MP3 support not detected';
     48                echo ' '.t('ffmpeg with MP3 support not detected');
    4949            ?></td>
    5050</tr><tr>
    5151    <th valign="top"><?php echo t('Width') ?>:</th>
    5252    <td><input type="text" name="width"
    53          size="5" title="FLV Width"
     53         size="5" title="<?php echo t('FLV Width') ?>"
    5454         value="<?php echo intVal(_or(setting('WebFLV_w'), 320)) ?>" />
    5555         <br>
    56          (height is calculated automatically from the recording aspect ratio)
     56         <?php echo t('(height is calculated automatically from the recording aspect ratio)') ?>
    5757         </td>
    5858</tr><tr>
    5959    <th><?php echo t('Video Bitrate') ?>:</th>
    6060    <td><input type="text" name="vbitrate"
    61          size="5" title="Video Bitrate"
     61         size="5" title="<?php echo t('Video Bitrate') ?>"
    6262         value="<?php echo html_entities(_or(setting('WebFLV_vb'), 256)) ?>" />
    6363         kbps</td>
    6464</tr><tr>
    6565    <th><?php echo t('Audio Bitrate') ?>:</th>
    6666    <td><input type="text" name="abitrate"
    67          size="5" title="Audio Bitrate"
     67         size="5" title="<?php echo t('Audio Bitrate') ?>"
    6868         value="<?php echo html_entities(_or(setting('WebFLV_ab'), 64)) ?>" />
    6969         kbps</td>
    7070</tr><tr>
  • mythplugins/mythweb/modules/remote/tmpl/default/keys.php

     
    185185        <a onclick="send_key('f12')" class="noshift">F12</a></td>
    186186    <td></td>
    187187    <td></td>
    188     <td colspan="3"><a id="keypress" onclick="toggle_keypress()">Toggle Interactive Mode</a></td>
     188    <td colspan="3"><a id="keypress" onclick="toggle_keypress()"><?php echo t('Toggle Interactive Mode') ?></a></td>
    189189</tr><tr>
    190190    <td><a onclick="send_key('~')" class="reqshift">~</a>
    191191        <a onclick="send_key('`')" class="noshift">`</a></td>