diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-01-19 22:30:53 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-01-19 22:30:53 +0100 |
| commit | bfcc745e958a34a457086f003013ca9b69959dea (patch) | |
| tree | 2fc065cc7dc45ad54ff5dd028095de31e2b19c03 /lib/python | |
| parent | ffa726a9889e96ec6a984e53b67eb8aabe94ff16 (diff) | |
| download | enigma2-bfcc745e958a34a457086f003013ca9b69959dea.tar.gz enigma2-bfcc745e958a34a457086f003013ca9b69959dea.zip | |
getInfoObject sTransponderData now also returns transponder data values (not strings) .. compatible to getFrontendData
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/ServiceInfo.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py index 4606f883..d233c981 100644 --- a/lib/python/Screens/ServiceInfo.py +++ b/lib/python/Screens/ServiceInfo.py @@ -134,24 +134,24 @@ class ServiceInfo(Screen): conv = { "type" : _("Transponder Type"), "system" : _("System"), "modulation" : _("Modulation"), - "orbital position" : _("Orbital Position"), + "orbital_position" : _("Orbital Position"), "frequency" : _("Frequency"), - "symbolrate" : _("Symbolrate"), + "symbol_rate" : _("Symbolrate"), "bandwidth" : _("Bandwidth"), "polarization" : _("Polarization"), "inversion" : _("Inversion"), "pilot" : _("Pilot"), - "roll off" : _("Rolloff"), - "fec inner" : _("FEC"), - "code rate lp" : _("Coderate LP"), - "code rate hp" : _("Coderate HP"), + "rolloff" : _("Rolloff"), + "fec_inner" : _("FEC"), + "code_rate_lp" : _("Coderate LP"), + "code_rate_hp" : _("Coderate HP"), "constellation" : _("Constellation"), - "transmission mode": _("Transmission Mode"), - "guard interval" : _("Guard Interval"), - "hierarchy" : _("Hierarchy Information") } + "transmission_mode": _("Transmission Mode"), + "guard_interval" : _("Guard Interval"), + "hierarchy_information": _("Hierarchy Information") } Labels = [ ] for i in self.transponder_info.keys(): - Labels.append( (conv[i], self.transponder_info[i], TYPE_TEXT) ) + Labels.append( (conv[i], self.transponder_info[i], TYPE_VALUE_DEC) ) self.fillList(Labels) def pids(self): |
