From: Mark Clarkstone Date: Thu, 17 Dec 2015 03:40:48 +0000 (+0000) Subject: Add many more tooltips.. X-Git-Tag: v4.2.1~1281 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9fb6bfb924d5c6d80148660f0187cf9210ce41d;p=thirdparty%2Ftvheadend.git Add many more tooltips.. --- diff --git a/src/esfilter.c b/src/esfilter.c index fc70446c7..9c6ce96b8 100644 --- a/src/esfilter.c +++ b/src/esfilter.c @@ -622,6 +622,7 @@ const idclass_t esfilter_class = { .type = PT_BOOL, .id = "enabled", .name = N_("Enabled"), + .desc = N_("Enable this filter."), .off = offsetof(esfilter_t, esf_enabled), }, {} diff --git a/src/input/mpegts/mpegts_mux_dvb.c b/src/input/mpegts/mpegts_mux_dvb.c index c4234d11f..da4af629a 100644 --- a/src/input/mpegts/mpegts_mux_dvb.c +++ b/src/input/mpegts/mpegts_mux_dvb.c @@ -212,6 +212,9 @@ const idclass_t dvb_mux_dvbt_class = .ic_properties = (const property_t[]){ { MUX_PROP_STR("delsys", N_("Delivery system"), dvbt, delsys, "DVBT"), + .desc = N_("Select the delivery system the mux uses. " + "If you have a DVB-T tuner you must select DVB-T " + "here."), }, { .type = PT_U32, @@ -222,30 +225,50 @@ const idclass_t dvb_mux_dvbt_class = .set = dvb_mux_dvbt_class_frequency_set, }, { - MUX_PROP_STR("bandwidth", N_("Bandwidth"), dvbt, bw, N_("AUTO")) + MUX_PROP_STR("bandwidth", N_("Bandwidth"), dvbt, bw, N_("AUTO")), + .desc = N_("Select the bandwidth the mux uses. " + "If you're not sure of the value leave as AUTO " + "but be aware that tuning may fail as some drivers " + "do not like the AUTO setting."), }, { - MUX_PROP_STR("constellation", N_("Constellation"), dvbt, qam, N_("AUTO")) + MUX_PROP_STR("constellation", N_("Constellation"), dvbt, qam, N_("AUTO")), + .desc = N_("Select the COFDM modulation used by the mux. " + "If you're not sure of the value leave as AUTO."), }, { - MUX_PROP_STR("transmission_mode", N_("Transmission mode"), dvbt, mode, N_("AUTO")) + MUX_PROP_STR("transmission_mode", N_("Transmission mode"), dvbt, mode, N_("AUTO")), + .desc = N_("Select the transmission/OFDM mode used by the mux. " + "If you're not sure of the value leave as AUTO " + "but be aware that tuning may fail as some drivers " + "do not like the AUTO setting."), }, { - MUX_PROP_STR("guard_interval", N_("Guard interval"), dvbt, guard, N_("AUTO")) + MUX_PROP_STR("guard_interval", N_("Guard interval"), dvbt, guard, N_("AUTO")), + .desc = N_("Select the guard interval used by the mux. " + "If you're not sure of the value leave as AUTO."), }, { MUX_PROP_STR("hierarchy", N_("Hierarchy"), dvbt, hier, N_("AUTO")), + .desc = N_("Select the Hierarchical modulation used by this mux. " + "Most people will not need to change this setting."), }, { MUX_PROP_STR("fec_hi", N_("FEC high"), dvbt, fechi, N_("AUTO")), + .desc = N_("Select the forward error correction high value. " + "Most people will not need to change this setting."), }, { MUX_PROP_STR("fec_lo", N_("FEC low"), dvbt, feclo, N_("AUTO")), + .desc = N_("Select the forward error correction low value. " + "Most people will not need to change this setting."), }, { .type = PT_INT, .id = "plp_id", .name = N_("PLP ID"), + .desc = N_("Select the physical layer pipe ID. " + "Most people will not need to change this setting."), .off = offsetof(dvb_mux_t, lm_tuning.dmc_fe_stream_id), .def.i = DVB_NO_STREAM_ID_FILTER, }, diff --git a/src/wizard.c b/src/wizard.c index 25a15194d..f57f83c99 100644 --- a/src/wizard.c +++ b/src/wizard.c @@ -466,6 +466,7 @@ wizard_page_t *wizard_status(void) .type = PT_STR, .id = "muxes", .name = N_("Found muxes"), + .desc = N_("Number of muxes found."), .get = hello_get_network, .set = hello_set_network, }, @@ -473,6 +474,7 @@ wizard_page_t *wizard_status(void) .type = PT_STR, .id = "services", .name = N_("Found services"), + .desc = N_("Total number of services found."), .get = hello_get_network, .set = hello_set_network, }, @@ -504,6 +506,7 @@ wizard_page_t *wizard_mapping(void) .type = PT_STR, .id = "pnetwork", .name = N_("Select network"), + .desc = N_("Select a Network."), .get = hello_get_network, .set = hello_set_network, },