[mythtv-commits] Ticket #5272: MythWeb Advanced Scheduling Options

MythTV mythtv at cvs.mythtv.org
Tue Apr 29 20:18:04 UTC 2008


#5272: MythWeb Advanced Scheduling Options
---------------------------------+------------------------------------------
 Reporter:  lucien at wellernet.ch  |       Owner:  xris   
     Type:  defect               |      Status:  new    
 Priority:  minor                |   Milestone:  unknown
Component:  mythweb              |     Version:  0.21   
 Severity:  medium               |     Mlocked:  0      
---------------------------------+------------------------------------------
 There are some problems with Advanced Scheduling Options in MythWeb, not
 really serious but annoying:
 I made following changes to file modules/tv/tmpl/default/_advanced


 {{{
 (<?php
                 echo '<a href="#" onclick="toggle_advanced(false)"
 id="hide_advanced"';
                 if (!$_SESSION['tv']['show_advanced_schedule'])
                     echo ' style="display: none"';
                 echo '>', t('Hide'), '</a>',
                      '<a href="#" onclick="toggle_advanced(true)"
 id="show_advanced"';
                 if ($_SESSION['tv']['show_advanced_schedule'])
                     echo ' style="display: none"';
                 echo '>', t('Display'), '</a>';
             ?>)
 }}}

 1) I added href="#" so that correct mouse cursor appears
 2) I Changed Label from Show to Display to avoid translation issues (by
 example in German Show is translated by Sendung, what is not correct in
 this context)

 Finally I added a Capital Letter fo german traslantion of Display, to be
 consistent to other similar labels like Hide.

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/5272>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list