diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-07-12 11:03:08 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-07-12 11:03:08 +0000 |
| commit | 633c730e5feed206333c5174d53c6384c08047b2 (patch) | |
| tree | 3275ccc864acc538eaf37d64d6b097acaa68c9df /lib/python | |
| parent | b54375f8fc2def1ce7bb6201e2c347a570ae3413 (diff) | |
| download | enigma2-633c730e5feed206333c5174d53c6384c08047b2.tar.gz enigma2-633c730e5feed206333c5174d53c6384c08047b2.zip | |
fix translations
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 0241b6dc..99819fae 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -254,13 +254,13 @@ class InfoBarChannelSelection: self["ChannelSelectActions"] = HelpableActionMap(self, "InfobarChannelSelection", { - "switchChannelUp": self.switchChannelUp, - "switchChannelDown": self.switchChannelDown, + "switchChannelUp": (self.switchChannelUp, _("open servicelist(up)")), + "switchChannelDown": (self.switchChannelDown, _("open servicelist(down)")), "zapUp": (self.zapUp, _("previous channel")), "zapDown": (self.zapDown, _("next channel")), "historyBack": (self.historyBack, _("previous channel in history")), "historyNext": (self.historyNext, _("next channel in history")), - "openServiceList": (self.openServiceList, _("open service list")), + "openServiceList": (self.openServiceList, _("open servicelist")), }) def showTvChannelList(self, zap=False): |
