diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index cdc10eaa2..0382186e6 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -1632,6 +1632,7 @@ menu.hint_tmdb_enabled Schaltet die TMDb-Unterstützung (themoviedb.org) ein bzw menu.hint_tools Werkzeuge ausführen menu.hint_tvmode Schaltet zum TV-Modus menu.hint_tvradio_switch Schaltet zwischen TV- und Radio-Modus um +menu.hint_uni_setup Konfiguration Unikabel Frequenz, Userband und Pin menu.hint_upnp Universal Plug and Play Browser menu.hint_vfd Frontdisplay und Power-LEDs menu.hint_vfd_brightness Definiert die Helligkeit im TV-Betrieb diff --git a/data/locale/english.locale b/data/locale/english.locale index 5e84f66cb..209878f97 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -1632,6 +1632,7 @@ menu.hint_tmdb_enabled Enable or disable TMDb support (themoviedb.org) menu.hint_tools Run tools menu.hint_tvmode Switch box to TV mode menu.hint_tvradio_switch Switches between TV and Radio mode +menu.hint_uni_setup Configuration of unicable frequency, user band and pin menu.hint_upnp Universal Plug and Play Browser menu.hint_vfd Frontpanel LEDs, VFD options menu.hint_vfd_brightness Working brightness diff --git a/src/gui/scan_setup.cpp b/src/gui/scan_setup.cpp index 7153fc6b5..d03f890b6 100644 --- a/src/gui/scan_setup.cpp +++ b/src/gui/scan_setup.cpp @@ -1078,6 +1078,7 @@ int CScanSetup::showFrontendSetup(int number) setupMenu->addItem(fsatSetup); uniSetup = new CMenuForwarder(LOCALE_SATSETUP_UNI_SETTINGS, (dmode == DISEQC_UNICABLE ? true : dmode == DISEQC_UNICABLE2), NULL, this, "unisetup", CRCInput::convertDigitToKey(shortcut++)); + uniSetup->setHint("",LOCALE_MENU_HINT_UNI_SETUP); setupMenu->addItem(uniSetup); CMenuWidget * rotorMenu = new CMenuWidget(LOCALE_SATSETUP_EXTENDED_MOTOR, NEUTRINO_ICON_SETTINGS, width); diff --git a/src/system/locals.h b/src/system/locals.h index 62fc66b95..a74b9d920 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -1659,6 +1659,7 @@ typedef enum LOCALE_MENU_HINT_TOOLS, LOCALE_MENU_HINT_TVMODE, LOCALE_MENU_HINT_TVRADIO_SWITCH, + LOCALE_MENU_HINT_UNI_SETUP, LOCALE_MENU_HINT_UPNP, LOCALE_MENU_HINT_VFD, LOCALE_MENU_HINT_VFD_BRIGHTNESS, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index 272a4008b..dd2a21135 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -1659,6 +1659,7 @@ const char * locale_real_names[] = "menu.hint_tools", "menu.hint_tvmode", "menu.hint_tvradio_switch", + "menu.hint_uni_setup", "menu.hint_upnp", "menu.hint_vfd", "menu.hint_vfd_brightness",