Skip to content

Commit

Permalink
small text corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleyel committed Jul 10, 2023
1 parent d8b502d commit 11bbe0f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data/display240/skin_display.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
<panel name="SummaryClockPanel" />
</screen>
<screen name="IMDbLCDScreen" position="0,0" size="240,80">
<eLabel text="IMDB Search" position="0,0" foregroundColor="#FFFF00" size="240,60" font="FdLcD;20" halign="center" valign="center" />
<eLabel text="IMDb Search" position="0,0" foregroundColor="#FFFF00" size="240,60" font="FdLcD;20" halign="center" valign="center" />
<panel name="SummaryClockPanel" />
</screen>
<screen name="GraphicalInfoBarEPG_summary" position="0,0" size="240,80">
Expand Down
2 changes: 1 addition & 1 deletion data/display240/skin_display_picon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
<panel name="SummaryClockPanel" />
</screen>
<screen name="IMDbLCDScreen" position="0,0" size="220,176">
<eLabel text="IMDB Search" position="0,0" foregroundColor="#FFFF00" size="220,135" font="FdLcD;26" halign="center" valign="center" />
<eLabel text="IMDb Search" position="0,0" foregroundColor="#FFFF00" size="220,135" font="FdLcD;26" halign="center" valign="center" />
<panel name="SummaryClockPanel" />
</screen>
<screen name="GraphicalInfoBarEPG_summary" position="0,0" size="220,176">
Expand Down
2 changes: 1 addition & 1 deletion data/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ self.session.openWithCallback(msgClosed, EpgDeleteMsg)
<menu key="cam" level="1" text="Decryption &amp; Parental Control" weight="30">
<item key="softcam_settings" level="0" text="Softcam Settings" weight="50" requires="HAVEINITCAM"><screen module="SoftcamSetup" screen="SoftcamSetup" /></item>
<item key="oscam_info" level="0" text="OScam Information" weight="60" requires="ShowOscamInfo"><screen module="OScamInfo" screen="OscamInfoMenu" /></item>
<item key="cccam_info" level="0" text="CCCam Information" weight="70" requires="ShowCCCamInfo"><screen module="CCcamInfo" screen="CCcamInfoMain" /></item>
<item key="cccam_info" level="0" text="CCcam Information" weight="70" requires="ShowCCCamInfo"><screen module="CCcamInfo" screen="CCcamInfoMain" /></item>
<item key="ci_setup" level="1" text="CI Helper Settings" weight="90" requires="CIHelper"><screen module="Ci" screen="CIHelper" /></item>
<item key="ci_selection" level="1" text="Common Interface Settings" weight="100" requires="CommonInterface"><screen module="Ci" screen="CiSelection" /></item>
<item key="parental_setup" level="0" text="Parental Control Settings" weight="200"><screen module="ParentalControlSetup" screen="ParentalControlSetup" /></item>
Expand Down
2 changes: 1 addition & 1 deletion lib/python/Plugins/Extensions/MediaPlayer/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def action(self, contexts, action):

self["InfobarEPGActions"] = HelpableActionMap(self, "InfobarEPGActions",
{
"showEventInfo": (self.showEventInformation, _("show event details")),
"showEventInfo": (self.showEventInformation, _("Show event details")),
})

self["actions"] = MoviePlayerActionMap(self, ["DirectionActions"],
Expand Down
4 changes: 2 additions & 2 deletions lib/python/Screens/InfoBarGenerics.py
Original file line number Diff line number Diff line change
Expand Up @@ -1716,8 +1716,8 @@ class InfoBarSimpleEventView:

def __init__(self):
self["EventViewActions"] = HelpableActionMap(self, "InfobarEPGActions", {
"showEventInfo": (self.openEventView, _("show event details")),
"InfoPressed": (self.openEventView, _("show event details")),
"showEventInfo": (self.openEventView, _("Show event details")),
"InfoPressed": (self.openEventView, _("Show event details")),
"showInfobarOrEpgWhenInfobarAlreadyVisible": self.showEventInfoWhenNotVisible,
}, prio=0, description=_("InfoBar Event View Actions"))

Expand Down
2 changes: 1 addition & 1 deletion lib/python/Screens/MovieSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2007,7 +2007,7 @@ def __init__(self, session, csel, service):
menu = [(_("Settings") + "...", csel.configure),
(_("Device mounts") + "...", csel.showDeviceMounts),
(_("Network mounts") + "...", csel.showNetworkMounts),
(_("Create directory"), csel.do_createdir),
(_("Create Directory"), csel.do_createdir),
(_("Sort by") + "...", csel.selectSortby)]
if csel.exist_bookmark():
menu.append((_("Remove Bookmark"), csel.do_addbookmark))
Expand Down

0 comments on commit 11bbe0f

Please sign in to comment.