]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Add many more tooltips..
authorMark Clarkstone <hello@markclarkstone.co.uk>
Thu, 17 Dec 2015 03:40:48 +0000 (03:40 +0000)
committerJaroslav Kysela <perex@perex.cz>
Sat, 26 Dec 2015 16:02:50 +0000 (17:02 +0100)
src/esfilter.c
src/input/mpegts/mpegts_mux_dvb.c
src/wizard.c

index fc70446c734876039f02abb6c8225a9d01229fa8..9c6ce96b8e28909b8adfb409973ab9b2ea9d1134 100644 (file)
@@ -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),
     },
     {}
index c4234d11f49c2efd6463388053f67c9dedd47a40..da4af629a2bdfad00122cbf5aa91779ad2e541cc 100644 (file)
@@ -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,
     },
index 25a15194d01d71dcf290f5d6473beb9fcf216d10..f57f83c9980fc53c09830a5934ccc6ed748add37 100644 (file)
@@ -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,
     },