diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-02-23 00:53:54 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-02-23 00:53:54 +0000 |
| commit | 2da258f15c76a836b97861c3e5518455a24a6176 (patch) | |
| tree | ce0132a1b26ce361705c17be6bda9066483ed785 /lib/python | |
| parent | d27d90f79580afe6699bc3bd416c4ea2549ecbd1 (diff) | |
| download | enigma2-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.py | 4 |
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")) }) |
