diff options
author | M. Voerman <rekordc@gmail.com> | 2013-03-29 12:22:16 +0100 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2013-03-29 12:22:16 +0100 |
commit | 8d519978db5fcd14d1e36108ba1bd1292bd05d33 (patch) | |
tree | 0c681c19bfe155346bbc35125aba704b0f9f3862 /index.html | |
parent | 219f2b97f4840ca907387a7c8a538798325b5289 (diff) | |
download | vdr-vipclient-8d519978db5fcd14d1e36108ba1bd1292bd05d33.tar.gz vdr-vipclient-8d519978db5fcd14d1e36108ba1bd1292bd05d33.tar.bz2 |
Epg filter update
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1261,6 +1261,9 @@ function StreamInfo(si) { SI=channels[si].split("-"); is = toi.informationService; + //default setting : English + is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); + if(SI[0]=="C") { // Default on Cable - Dutch // Ziggo. is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); @@ -1297,6 +1300,20 @@ function StreamInfo(si) { is.setObject("cfg.locale.ui","dut",is.STORAGE_VOLATILE); } + if(SI[1]=="54") { + //ZON / 30W + is.setObject("cfg.locale.ui","eng",is.STORAGE_VOLATILE); + } + + if(SI[1]=="83") { + //MEO / 30W + is.setObject("cfg.locale.ui","por",is.STORAGE_VOLATILE); + } + + if(SI[1]=="49") { + //Digital 30W + is.setObject("cfg.locale.ui","spa",is.STORAGE_VOLATILE); + } if(SI[1]=="3" && ( SI[2]=="3202" || SI[2]=="3208" || SI[2]=="3211" || SI[2]=="3222" || SI[2]=="3225") ) { //Canal Digitaal/ TV Vlaanderen (NID:3 is used for more than only CDS/TVV on 23East) |