diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index e118b026f..102c1fb74 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -1777,6 +1777,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 3e316a8bc..487740ead 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -1777,6 +1777,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 c48abd2bb..ff54287a8 100644 --- a/src/gui/scan_setup.cpp +++ b/src/gui/scan_setup.cpp @@ -1091,6 +1091,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 ea18c283c..65e7150eb 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -1804,6 +1804,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 9f3b76a84..6d8d944f4 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -1804,6 +1804,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",