Skip to content

Commit

Permalink
tiny text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleyel committed Jul 9, 2023
1 parent 5f42e75 commit 6fdd9b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/python/Components/UsageConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ def updateEraseFlags(el):
def setZapmode(el):
open(BoxInfo.getItem("ZapMode"), "w").write(el.value)
config.misc.zapmode = ConfigSelection(default="mute", choices=[
("mute", _("Black screen")),
("mute", _("Black Screen")),
("hold", _("Hold screen")),
("mutetilllock", _("Black screen till locked")),
("holdtilllock", _("Hold till locked"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def isFavourites(self):
ref = self.getCurrentSelection()
if ref:
if (ref.flags & 7) == 7 and "FROM BOUQUET" in ref.toString():
self["key_yellow"].setText(_("Add bouquet"))
self["key_yellow"].setText(_("Add Bouquet"))
return True
else:
self["key_yellow"].setText("")
Expand Down
2 changes: 1 addition & 1 deletion lib/python/Screens/ChannelSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2662,7 +2662,7 @@ def correctChannelNumber(self):
if pos != -1:
# title = title[:pos]
# title += _(" (PiP)")
self.setTitle("%s %s" % (title[:pos], _("(Pip)")))
self.setTitle("%s %s" % (title[:pos], _("(PiP)")))
print("[ChannelSelection] correctChannelNumber DEBUG: Setting title='%s'." % self.getTitle())
self.buildTitle()
if tmp_ref and pip_ref and tmp_ref.getChannelNum() != pip_ref.getChannelNum():
Expand Down

0 comments on commit 6fdd9b4

Please sign in to comment.