Ticket #8936: mythweb_lang.diff

File mythweb_lang.diff, 6.5 KB (added by Nicolas Riendeau, 14 years ago)
  • mythplugins/mythweb/modules/music/mp3act_functions.php

     
    13361336    {
    13371337      if (!internalPlaylistAddPlaylistCheck($pl['playlist_id'], $itemid))
    13381338      {
    1339         // Some sort of nasty circular dependancy.
     1339        // Some sort of nasty circular dependency.
    13401340        $output[0] = 2;
    1341         $output[1] = t('Sorry, but you cannot add this playlist as it would create a circular dependancy.');
     1341        $output[1] = t('Sorry, but you cannot add this playlist as it would create a circular dependency.');
    13421342        return $output;
    13431343      }
    13441344    }
     
    13461346    if (empty($pl_add['playlist_id']))
    13471347    {
    13481348    $output[0] = 2;
    1349     $output[1] = t('An error occured while adding your playlist.');
     1349    $output[1] = t('An error occurred while adding your playlist.');
    13501350    return $output;
    13511351    }
    13521352    $new_songcount += $pl_add['songcount'];
  • mythplugins/mythweb/modules/tv/canned_searches.conf.php

     
    4040        => 'category_type="movie" AND program.stars < 0.5625'
    4141          .' AND program.stars > 0.0',
    4242
    43     t('Childrens Movies')
     43    t('Children\'s Movies')
    4444            => 'category="children" AND category_type="movie"',
    4545
    4646    t('Non-Series HDTV')
  • mythplugins/mythweb/modules/tv/tmpl/default/set_session.php

     
    4242</tr><tr class="x-sep">
    4343    <td colspan="2"><?php echo t('Guide Settings') ?>:</th>
    4444</tr><tr>
    45     <th><?php echo t('Only display favourite channels') ?>:</th>
    46     <td ><input class="radio" type="checkbox" title="In the program listing, only show channels marked as favourite channels" name="guide_favonly"<?php if ($_SESSION['guide_favonly']) echo ' CHECKED' ?>></td>
     45    <th><?php echo t('Only display favorite channels') ?>:</th>
     46    <td ><input class="radio" type="checkbox" title="In the program listing, only show channels marked as favorite channels" name="guide_favonly"<?php if ($_SESSION['guide_favonly']) echo ' CHECKED' ?>></td>
    4747</tr><tr>
    4848    <th><?php echo t('Max star rating for movies') ?>:</th>
    4949    <td><input type="text" size="5" name="max_stars" value="<?php echo intVal($_SESSION['max_stars']) ?>"></td>
  • mythplugins/mythweb/modules/tv/tmpl/default/set_channels.php

     
    2828    <td width="5%"><?php  echo t('videofilters')  ?></td>
    2929    <td width="7%"><?php  echo t('brightness')    ?></td>
    3030    <td width="7%"><?php  echo t('contrast')      ?></td>
    31     <td width="7%"><?php  echo t('colour')        ?></td>
     31    <td width="7%"><?php  echo t('color')         ?></td>
    3232    <td width="7%"><?php  echo t('hue')           ?></td>
    3333    <td width="5%"><?php  echo t('recpriority')   ?></td>
    3434    <td width="5%"><?php  echo t('commfree')      ?></td>
  • mythplugins/mythweb/modules/tv/tmpl/lite/set_session.php

     
    2828</tr><tr>
    2929    <td colspan="2"><?php echo t('Guide Settings') ?>:</td>
    3030</tr><tr>
    31     <td align="right"><?php echo t('Only display favourite channels') ?>:</td>
    32     <td ><input class="radio" type="checkbox" title="In the program listing, only show channels marked as favourite channels" name="guide_favonly"<?php if ($_SESSION['guide_favonly']) echo ' CHECKED' ?>></td>
     31    <td align="right"><?php echo t('Only display favorite channels') ?>:</td>
     32    <td ><input class="radio" type="checkbox" title="In the program listing, only show channels marked as favorite channels" name="guide_favonly"<?php if ($_SESSION['guide_favonly']) echo ' CHECKED' ?>></td>
    3333</tr><tr>
    3434    <td align="right"><?php echo t('Max star rating for movies') ?>:</td>
    3535    <td><input type="text" size="5" name="max_stars" value="<?php echo intVal($_SESSION['max_stars']) ?>"></td>
  • mythplugins/mythweb/modules/tv/tmpl/lite/set_channels.php

     
    2828    <td width="5%"><?php  echo t('videofilters')  ?></td>
    2929    <td width="7%"><?php  echo t('brightness')    ?></td>
    3030    <td width="7%"><?php  echo t('contrast')      ?></td>
    31     <td width="7%"><?php  echo t('colour')        ?></td>
     31    <td width="7%"><?php  echo t('color')         ?></td>
    3232    <td width="7%"><?php  echo t('hue')           ?></td>
    3333    <td width="5%"><?php  echo t('recpriority')   ?></td>
    3434    <td width="5%"><?php  echo t('commfree')      ?></td>
  • mythplugins/mythweb/modules/video/tmpl/default/video.php

     
    3535
    3636    function imdb_lookup(id, title) {
    3737        if (pending_ajax_requests > 0) {
    38             alert('<?php echo addslashes(t('Please wait for the pending ajax request')); ?>');
     38            alert('<?php echo addslashes(t('Please wait for the pending AJAX request')); ?>');
    3939            return;
    4040        }
    4141        ajax_add_request();
     
    119119
    120120    function imdb_prompt(id) {
    121121        var title  = $(id+'-title').childNodes[1].innerHTML;
    122         var number = prompt('<?php echo addslashes(t('Please enter an imdb number or a title to do another search')); ?>', title);
     122        var number = prompt('<?php echo addslashes(t('Please enter an IMDB number or a title to do another search')); ?>', title);
    123123        if (typeof(number) != 'string' || number.length == 0)
    124124            return;
    125125        $('window').hide();