diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index f6eb340fd..59493f971 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -298,6 +298,7 @@ channellist.make_hdlist Erzeuge Bouquets mit HD- und UHD-Kanälen channellist.make_newlist Erzeuge Bouquet mit neuen Kanälen channellist.make_removedlist Erzeuge Bouquet mit gelöschten Kanälen channellist.make_webtvlist Erzeuge Bouquet mit WebTV-Kanälen +channellist.movieplayer_zap Umschalten während der Film-Wiedergabe nicht möglich channellist.new_zap_mode Quickzap in Liste channellist.new_zap_mode_active aktiv channellist.new_zap_mode_allow erlauben diff --git a/data/locale/english.locale b/data/locale/english.locale index 9aba90585..c2cfdfd20 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -298,6 +298,7 @@ channellist.make_hdlist Create lists of HD and UHD channels channellist.make_newlist Create list of new channels channellist.make_removedlist Create list of removed channels channellist.make_webtvlist Create list of WebTV channels +channellist.movieplayer_zap Zap not possible while movie playback channellist.new_zap_mode Quickzap in list channellist.new_zap_mode_active active channellist.new_zap_mode_allow allow diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 2e97c5f4f..ddec7c999 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -778,6 +778,8 @@ int CChannelList::show() actzap = true; oldselected = selected; paintBody(); // refresh zapped vs selected + } else if (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_ts) { + ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_CHANNELLIST_MOVIEPLAYER_ZAP); } else if(SameTP()) { zapOnExit = true; loop=false; diff --git a/src/system/locals.h b/src/system/locals.h index b7a0d2585..bfd80a50a 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -325,6 +325,7 @@ typedef enum LOCALE_CHANNELLIST_MAKE_NEWLIST, LOCALE_CHANNELLIST_MAKE_REMOVEDLIST, LOCALE_CHANNELLIST_MAKE_WEBTVLIST, + LOCALE_CHANNELLIST_MOVIEPLAYER_ZAP, LOCALE_CHANNELLIST_NEW_ZAP_MODE, LOCALE_CHANNELLIST_NEW_ZAP_MODE_ACTIVE, LOCALE_CHANNELLIST_NEW_ZAP_MODE_ALLOW, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index ddd6dc1e6..2687d4843 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -325,6 +325,7 @@ const char * locale_real_names[] = "channellist.make_newlist", "channellist.make_removedlist", "channellist.make_webtvlist", + "channellist.movieplayer_zap", "channellist.new_zap_mode", "channellist.new_zap_mode_active", "channellist.new_zap_mode_allow",