Skip to content

Commit

Permalink
Merge pull request #3748 from Dima73/locale
Browse files Browse the repository at this point in the history
  • Loading branch information
littlesat committed Aug 11, 2023
2 parents cfddee3 + 7f21392 commit 4b26708
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/python/Screens/ChannelSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ def getServiceName(self, ref):
return _("Satellites")
if ') ORDER BY name' in pathstr:
return _("All")
return str
return str if config.usage.multibouquet.value else _("Favorites")

def buildTitleString(self):
self.servicetitle = ""
Expand Down Expand Up @@ -2343,6 +2343,10 @@ def cancel(self):
lastservice = ref
if lastservice.valid() and self.getCurrentSelection() != lastservice:
self.setCurrentSelection(lastservice)
elif self.revertMode == MODE_TV and self.mode == MODE_RADIO:
self.setModeTv()
elif self.revertMode == MODE_RADIO and self.mode == MODE_TV:
self.setModeRadio()
self.asciiOff()
self.zapBack()
self.correctChannelNumber()
Expand Down

0 comments on commit 4b26708

Please sign in to comment.