From 11bbe0fefccf1dbb0815040326db7e6232d0c73f Mon Sep 17 00:00:00 2001 From: jbleyel Date: Mon, 10 Jul 2023 23:18:50 +0200 Subject: [PATCH] small text corrections --- data/display240/skin_display.xml | 2 +- data/display240/skin_display_picon.xml | 2 +- data/menu.xml | 2 +- lib/python/Plugins/Extensions/MediaPlayer/plugin.py | 2 +- lib/python/Screens/InfoBarGenerics.py | 4 ++-- lib/python/Screens/MovieSelection.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/data/display240/skin_display.xml b/data/display240/skin_display.xml index 5e96e7df491..c8c6b1d1710 100644 --- a/data/display240/skin_display.xml +++ b/data/display240/skin_display.xml @@ -230,7 +230,7 @@ - + diff --git a/data/display240/skin_display_picon.xml b/data/display240/skin_display_picon.xml index 95173766364..2689fe1b324 100644 --- a/data/display240/skin_display_picon.xml +++ b/data/display240/skin_display_picon.xml @@ -193,7 +193,7 @@ - + diff --git a/data/menu.xml b/data/menu.xml index c0848c582b6..fb31456c47e 100644 --- a/data/menu.xml +++ b/data/menu.xml @@ -151,7 +151,7 @@ self.session.openWithCallback(msgClosed, EpgDeleteMsg) - + diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py index 7ddad45141f..59f76ded9c4 100644 --- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py @@ -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"], diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index e9a17f89cb9..8ece578447e 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -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")) diff --git a/lib/python/Screens/MovieSelection.py b/lib/python/Screens/MovieSelection.py index dd4ff547503..f3028b74b27 100644 --- a/lib/python/Screens/MovieSelection.py +++ b/lib/python/Screens/MovieSelection.py @@ -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))