Changeset 46181 for titan


Ignore:
Timestamp:
08/15/22 17:01:50 (20 months ago)
Author:
obi
Message:

fix msg

Location:
titan/plugins/player/tithek
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/player/tithek/skin.xml

    r46155 r46181  
    4242                <node parent="listbox" name="delservice" text="Del Service" type="choicebox" valign="middle" width="100%" height="35">
    4343                <node parent="listbox" name="iptvurl" text="IpTV Url" type="inputbox" valign="middle" width="100%" height="35">
    44                 <node parent="listbox" name="servicebouquets_autoupdate" text="Service Bouquets Auto Update" type="choicebox" valign="middle" width="100%" height="35">
    45                 <node parent="listbox" name="servicebouquets_autoupdate_msg" text="Show Service Bouquets Auto Update Message" type="choicebox" valign="middle" width="100%" height="35">
    46                 <node parent="listbox" name="servicebouquets_autoupdate_allchannels" text="Update all Services with Streamurl" type="choicebox" valign="middle" width="100%" height="35">
     44                <node parent="listbox" name="vavoo_servicebouquets_autoupdate" text="VaVoo Service Bouquets Auto Update" type="choicebox" valign="middle" width="100%" height="35">
     45                <node parent="listbox" name="vavoo_servicebouquets_autoupdate_msg" text="Show VaVoo Service Bouquets Auto Update Info" type="choicebox" valign="middle" width="100%" height="35">
     46                <node parent="listbox" name="vavoo_servicebouquets_autoupdate_allchannels" text="Update all Services with VaVoo Streamurl" type="choicebox" valign="middle" width="100%" height="35">
    4747        <node name="buttonbar" posx="0" posy="0" width="100%" height="50" hspace="5" fontcol="black" fontsize="25" bordercol="titlebgcol" bordersize="1" borderradius="8" bgcol="titlebgcol" bgcol2="white" gradient="topmiddle">
    4848                <node parent="buttonbar" name="b1" picmem="skin/key_ok_70x40.png"    posx="0"   posy="center" width="70" height="40">
  • titan/plugins/player/tithek/tithek_settings.h

    r46154 r46181  
    2525        struct skin* delservice = getscreennode(tithek_settings, "delservice");
    2626        struct skin* iptvurl = getscreennode(tithek_settings, "iptvurl");
    27         struct skin* servicebouquets_autoupdate = getscreennode(tithek_settings, "servicebouquets_autoupdate");
    28         struct skin* servicebouquets_autoupdate_msg = getscreennode(tithek_settings, "servicebouquets_autoupdate_msg");
    29         struct skin* servicebouquets_autoupdate_allchannels = getscreennode(tithek_settings, "servicebouquets_autoupdate_allchannels");
     27        struct skin* vavoo_servicebouquets_autoupdate = getscreennode(tithek_settings, "vavoo_servicebouquets_autoupdate");
     28        struct skin* vavoo_servicebouquets_autoupdate_msg = getscreennode(tithek_settings, "vavoo_servicebouquets_autoupdate_msg");
     29        struct skin* vavoo_servicebouquets_autoupdate_allchannels = getscreennode(tithek_settings, "vavoo_servicebouquets_autoupdate_allchannels");
    3030
    3131        struct skin* autoupdate = getscreennode(tithek_settings, "autoupdate");
     
    120120        setchoiceboxselection(delservice, getconfig("tithek_delservice", NULL));
    121121
    122         addchoicebox(servicebouquets_autoupdate, "0", _("no"));
    123         addchoicebox(servicebouquets_autoupdate, "1", _("yes"));       
    124         setchoiceboxselection(servicebouquets_autoupdate, getconfig("tithek_servicebouquets_autoupdate", NULL));
    125 
    126         addchoicebox(servicebouquets_autoupdate_msg, "0", _("no"));
    127         addchoicebox(servicebouquets_autoupdate_msg, "1", _("yes"));   
    128         setchoiceboxselection(servicebouquets_autoupdate_msg, getconfig("tithek_servicebouquets_autoupdate_msg", NULL));
    129 
    130         addchoicebox(servicebouquets_autoupdate_allchannels, "0", _("no"));
    131         addchoicebox(servicebouquets_autoupdate_allchannels, "1", _("yes"));   
    132         setchoiceboxselection(servicebouquets_autoupdate_allchannels, getconfig("tithek_servicebouquets_autoupdate_allchannels", NULL));
     122        addchoicebox(vavoo_servicebouquets_autoupdate, "0", _("no"));
     123        addchoicebox(vavoo_servicebouquets_autoupdate, "1", _("yes")); 
     124        setchoiceboxselection(vavoo_servicebouquets_autoupdate, getconfig("tithek_vavoo_servicebouquets_autoupdate", NULL));
     125
     126        addchoicebox(vavoo_servicebouquets_autoupdate_msg, "0", _("no"));
     127        addchoicebox(vavoo_servicebouquets_autoupdate_msg, "1", _("yes"));     
     128        setchoiceboxselection(vavoo_servicebouquets_autoupdate_msg, getconfig("tithek_vavoo_servicebouquets_autoupdate_msg", NULL));
     129
     130        addchoicebox(vavoo_servicebouquets_autoupdate_allchannels, "0", _("no"));
     131        addchoicebox(vavoo_servicebouquets_autoupdate_allchannels, "1", _("yes"));     
     132        setchoiceboxselection(vavoo_servicebouquets_autoupdate_allchannels, getconfig("tithek_vavoo_servicebouquets_autoupdate_allchannels", NULL));
    133133
    134134        if(!file_exist("/mnt/swapextensions/etc/.codecpack") && !file_exist("/var/swap/etc/.codecpack") && !file_exist("/var/etc/.codecpack"))
     
    169169                        addconfigscreencheck("tithek_delservice", delservice, NULL);
    170170                        addconfigscreen("tithek_iptvurl", iptvurl);
    171                         addconfigscreencheck("tithek_servicebouquets_autoupdate", servicebouquets_autoupdate, NULL);
    172                         addconfigscreencheck("tithek_servicebouquets_autoupdate_msg", servicebouquets_autoupdate_msg, NULL);
    173                         addconfigscreencheck("tithek_servicebouquets_autoupdate_allchannels", servicebouquets_autoupdate_allchannels, NULL);
     171                        addconfigscreencheck("tithek_vavoo_servicebouquets_autoupdate", vavoo_servicebouquets_autoupdate, NULL);
     172                        addconfigscreencheck("tithek_vavoo_servicebouquets_autoupdate_msg", vavoo_servicebouquets_autoupdate_msg, NULL);
     173                        addconfigscreencheck("tithek_vavoo_servicebouquets_autoupdate_allchannels", vavoo_servicebouquets_autoupdate_allchannels, NULL);
    174174/*
    175175                        if(amazon_user->ret != NULL && ostrcmp(amazon_user->ret, "****") != 0)
Note: See TracChangeset for help on using the changeset viewer.