diff options
| author | M. Voerman <rekordc@gmail.com> | 2012-12-21 01:54:41 +0100 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2012-12-21 01:54:41 +0100 |
| commit | 6f38da6c7a6b4f27f91f464c028b1109f29b6c2a (patch) | |
| tree | 69861c43ec4611821a4a38932b0bc9f27eb35829 /index.html | |
| parent | fd58ae6ec5e640b040b1c9907174c74c2bd29341 (diff) | |
| download | vdr-vipclient-6f38da6c7a6b4f27f91f464c028b1109f29b6c2a.tar.gz vdr-vipclient-6f38da6c7a6b4f27f91f464c028b1109f29b6c2a.tar.bz2 | |
EPG language selection expanded
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 24 |
1 files changed, 20 insertions, 4 deletions
@@ -25,8 +25,12 @@ // set/save changes to cfg.custom.xxx // change IP server // +// +// videoplane.subtitles = true; // Enable subtitles +// videoplane.subtitles = false; // Disable subtitles +// -var Version = "0.04 2012/12/20" +var Version = "0.05 2012/12/xx" var nrChannels = channels.length; var nrMedia = recording.length - 1; @@ -785,12 +789,19 @@ function GetEPG(epgchan) SI=channels[epgchan].split("-"); is = toi.informationService; is.setObject("cfg.locale.ui","ger",is.STORAGE_VOLATILE); + + if(SI[1]=="133") { + //sky deutchland + is.setObject("cfg.locale.ui","DEU",is.STORAGE_VOLATILE); + } + if(SI[0]=="S28.2E") { is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); } - if((SI[0]=="S23.5E" && SI[1]=="3") || SI[2]=="1026" || SI[2]=="1097" || SI[2]=="1105" || SI[2]=="1119") { - is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); - cds = 1; + if(SI[1]=="3" || SI[1]=="53") { + //Canal Digitaal/ TV Vlaanderen (NID:3 is used for more than only CDS/TVV on 23East) + is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); + cds = 1; } if((SI[0]=="S13.0E" && SI[3]=="14003") || (SI[0]=="S13.0E" && SI[3]=="14009") || (SI[0]=="S13.0E" && SI[3]=="14051") || (SI[0]=="S13.0E" && SI[3]=="951")) { @@ -813,6 +824,11 @@ function GetEPG(epgchan) cds = 1; } + if((SI[0]=="T") ) { + // I mustly get Dutch channels on DVB-T + is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); + cds = 1; + } eitService = toi.statics.ToiDvbEitCacheServiceItem.create(SI[1],SI[2],SI[3]); |
