diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-12-22 16:02:30 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-12-22 16:02:30 +0000 |
| commit | 20dff87d087a63ac3be50290d5f7308313ae042d (patch) | |
| tree | bacab897c6181faf892a6d8f8c45a48c9d8ac49d /lib/python/Screens | |
| parent | a48f7d385c15cd43a99a74b3712ee7f929ca5b8d (diff) | |
| download | enigma2-20dff87d087a63ac3be50290d5f7308313ae042d.tar.gz enigma2-20dff87d087a63ac3be50290d5f7308313ae042d.zip | |
remove unneeded double dot
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/ServiceInfo.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py index 3899968a..54036909 100644 --- a/lib/python/Screens/ServiceInfo.py +++ b/lib/python/Screens/ServiceInfo.py @@ -109,23 +109,23 @@ class ServiceInfo(Screen): self.fillList(Labels) else: if self.transponder_info: - conv = { "type" : _("Transponder Type:"), - "frequency" : _("Frequency:"), - "symbolrate" : _("Symbolrate:"), - "orbital position" : _("Orbital Position:"), - "inversion" : _("Inversion:"), - "fec inner" : _("FEC:"), - "modulation" : _("Modulation:"), - "polarization" : _("Polarization:"), - "roll off" : _("Rolloff:"), - "system" : _("System:"), - "bandwidth" : _("Bandwidth:"), - "code rate lp" : _("Coderate LP:"), - "code rate hp" : _("Coderate HP:"), - "constellation" : _("Constellation:"), - "transmission mode": _("Transmission Mode:"), - "guard interval" : _("Guard Interval:"), - "hierarchy" : _("Hierarchy Information:") } + conv = { "type" : _("Transponder Type"), + "frequency" : _("Frequency"), + "symbolrate" : _("Symbolrate"), + "orbital position" : _("Orbital Position"), + "inversion" : _("Inversion"), + "fec inner" : _("FEC"), + "modulation" : _("Modulation"), + "polarization" : _("Polarization"), + "roll off" : _("Rolloff"), + "system" : _("System"), + "bandwidth" : _("Bandwidth"), + "code rate lp" : _("Coderate LP"), + "code rate hp" : _("Coderate HP"), + "constellation" : _("Constellation"), + "transmission mode": _("Transmission Mode"), + "guard interval" : _("Guard Interval"), + "hierarchy" : _("Hierarchy Information") } Labels = [ ] for i in self.transponder_info.keys(): Labels.append( (conv[i], self.transponder_info[i], TYPE_TEXT) ) |
