Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add many more tooltips..
  • Loading branch information
Mark Clarkstone authored and perexg committed Dec 26, 2015
1 parent 4507ae2 commit d9fb6bf
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/esfilter.c
Expand Up @@ -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),
},
{}
Expand Down
31 changes: 27 additions & 4 deletions src/input/mpegts/mpegts_mux_dvb.c
Expand Up @@ -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,
Expand All @@ -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,
},
Expand Down
3 changes: 3 additions & 0 deletions src/wizard.c
Expand Up @@ -466,13 +466,15 @@ 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,
},
{
.type = PT_STR,
.id = "services",
.name = N_("Found services"),
.desc = N_("Total number of services found."),
.get = hello_get_network,
.set = hello_set_network,
},
Expand Down Expand Up @@ -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,
},
Expand Down

0 comments on commit d9fb6bf

Please sign in to comment.