aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-23 00:53:54 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-23 00:53:54 +0000
commit2da258f15c76a836b97861c3e5518455a24a6176 (patch)
treece0132a1b26ce361705c17be6bda9066483ed785 /lib/python
parentd27d90f79580afe6699bc3bd416c4ea2549ecbd1 (diff)
downloadenigma2-2da258f15c76a836b97861c3e5518455a24a6176.tar.gz
enigma2-2da258f15c76a836b97861c3e5518455a24a6176.zip
finally fix help regarding left/right for channel zapping
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 8d436013..5065fb15 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -276,8 +276,8 @@ class InfoBarChannelSelection:
{
"switchChannelUp": self.switchChannelUp,
"switchChannelDown": self.switchChannelDown,
- "zapUp": (self.zapUp, _("next channel")),
- "zapDown": (self.zapDown, _("previous channel")),
+ "zapUp": (self.zapUp, _("previous channel")),
+ "zapDown": (self.zapDown, _("next channel")),
"historyBack": (self.historyBack, _("previous channel in history")),
"historyNext": (self.historyNext, _("next channel in history"))
})