diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index d26f3e576..b2ec72b5f 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -299,7 +299,6 @@ 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 @@ -2089,6 +2088,7 @@ movieplayer.titles Titel movieplayer.toomanybookmarks Sie haben bereits zu viele Lesezeichen angelegt.\nEs muß erst ein anderes gelöscht werden. movieplayer.tsplayback TS Abspielen movieplayer.ytplayback YouTube-Feed Wiedergabe +movieplayer.zap Umschalten während der Film-Wiedergabe nicht möglich mpkey.audio Tonspuren mpkey.bookmark Markierungen mpkey.forward Vorlauf diff --git a/data/locale/english.locale b/data/locale/english.locale index f044912d3..0a6f5b680 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -299,7 +299,6 @@ 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 @@ -2089,6 +2088,7 @@ movieplayer.titles Titles movieplayer.toomanybookmarks There are too many bookmarks.\nYou need to delete one of them first. movieplayer.tsplayback Play TS movieplayer.ytplayback YouTube videoplayer +movieplayer.zap Zap not possible while movie playback mpkey.audio Audiotracks mpkey.bookmark Bookmarks mpkey.forward Forward diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index a9f51634b..e7293ba79 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -779,7 +779,7 @@ int CChannelList::show() oldselected = selected; paintBody(); // refresh zapped vs selected } else if (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_ts) { - ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_CHANNELLIST_MOVIEPLAYER_ZAP); + ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_MOVIEPLAYER_ZAP); } else if(SameTP()) { zapOnExit = true; loop=false; diff --git a/src/gui/epgplus.cpp b/src/gui/epgplus.cpp index f68d8b4c4..89da4b458 100644 --- a/src/gui/epgplus.cpp +++ b/src/gui/epgplus.cpp @@ -1080,7 +1080,12 @@ int EpgPlus::exec(CChannelList * pchannelList, int selectedChannelIndex, CBouque else if (msg == CRCInput::RC_ok) { if (selectedChannelEntry) - CNeutrinoApp::getInstance()->channelList->zapTo_ChannelID(selectedChannelEntry->channel->getChannelID()); + { + if (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_ts) + ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_MOVIEPLAYER_ZAP); + else + CNeutrinoApp::getInstance()->channelList->zapTo_ChannelID(selectedChannelEntry->channel->getChannelID()); + } current_bouquet = bouquetList->getActiveBouquetNumber(); } else if (CRCInput::isNumeric(msg)) diff --git a/src/system/locals.h b/src/system/locals.h index cbb055d95..8364afacd 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -326,7 +326,6 @@ 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, @@ -2116,6 +2115,7 @@ typedef enum LOCALE_MOVIEPLAYER_TOOMANYBOOKMARKS, LOCALE_MOVIEPLAYER_TSPLAYBACK, LOCALE_MOVIEPLAYER_YTPLAYBACK, + LOCALE_MOVIEPLAYER_ZAP, LOCALE_MPKEY_AUDIO, LOCALE_MPKEY_BOOKMARK, LOCALE_MPKEY_FORWARD, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index 6be29a5d9..3cfef39c4 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -326,7 +326,6 @@ 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", @@ -2116,6 +2115,7 @@ const char * locale_real_names[] = "movieplayer.toomanybookmarks", "movieplayer.tsplayback", "movieplayer.ytplayback", + "movieplayer.zap", "mpkey.audio", "mpkey.bookmark", "mpkey.forward",