diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index 130cebd25..76dcc9768 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -352,6 +352,7 @@ ci.mode CI Kanäle während einer Aufnahme ci.mode_0 alle Kanäle ci.mode_1 gleicher Transponder ci.mode_2 keine CI Kanäle +ci.op Operator-Profile ci.rec_zapto Umschalten bei Aufnahmen mit CAM ci.removed CAM entfernt -> Slot ci.reset Reset diff --git a/data/locale/english.locale b/data/locale/english.locale index b2ce87ccc..9fdf50e18 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -352,6 +352,7 @@ ci.mode Usable CI channel while recording ci.mode_0 all channels ci.mode_1 same transponder ci.mode_2 no other CI channel +ci.op Operator profiles ci.rec_zapto Zap when recording needs CAM ci.removed CAM removed from slot ci.reset Reset diff --git a/src/gui/cam_menu.cpp b/src/gui/cam_menu.cpp index dce9c8e51..496b6bba0 100644 --- a/src/gui/cam_menu.cpp +++ b/src/gui/cam_menu.cpp @@ -218,7 +218,7 @@ int CCAMMenuHandler::doMainMenu() #if BOXMODEL_VUPLUS_ALL cammenu->addItem(new CMenuOptionChooser(LOCALE_CI_RPR, &g_settings.ci_rpr[i], OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, this)); #endif - cammenu->addItem(new CMenuOptionChooser("Operator-Profile"/*LOCALE_CI_OP*/, &g_settings.ci_op[i], OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, this)); + cammenu->addItem(new CMenuOptionChooser(LOCALE_CI_OP, &g_settings.ci_op[i], OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, this)); cammenu->addItem(new CMenuOptionChooser(LOCALE_CI_IGNORE_MSG, &g_settings.ci_ignore_messages[i], OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true)); cammenu->addItem(new CMenuOptionChooser(LOCALE_CI_SAVE_PINCODE, &g_settings.ci_save_pincode[i], OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, this)); } else { diff --git a/src/system/locals.h b/src/system/locals.h index 7debe6cc6..55e828527 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -379,6 +379,7 @@ typedef enum LOCALE_CI_MODE_0, LOCALE_CI_MODE_1, LOCALE_CI_MODE_2, + LOCALE_CI_OP, LOCALE_CI_REC_ZAPTO, LOCALE_CI_REMOVED, LOCALE_CI_RESET, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index e86170d88..330bc2fad 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -379,6 +379,7 @@ const char * locale_real_names[] = "ci.mode_0", "ci.mode_1", "ci.mode_2", + "ci.op", "ci.rec_zapto", "ci.removed", "ci.reset",