From: Jaroslav Kysela Date: Fri, 4 Dec 2015 18:26:25 +0000 (+0100) Subject: add some more tooltips X-Git-Tag: v4.2.1~1369 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a1b050372280fcaf524e6e7726e1ac2a811471c;p=thirdparty%2Ftvheadend.git add some more tooltips --- diff --git a/src/input/mpegts/mpegts_input.c b/src/input/mpegts/mpegts_input.c index 4af44976c..1914df1a5 100644 --- a/src/input/mpegts/mpegts_input.c +++ b/src/input/mpegts/mpegts_input.c @@ -280,7 +280,13 @@ const idclass_t mpegts_input_class = { .type = PT_U32, .id = "free_weight", - .name = N_("Free weight"), + .name = N_("Free subscription weight"), + .desc = N_("If the subscription weight for this input is bellow " + "the specified threshold, the tuner is handled as free " + "(according the priority settings). Otherwise, a next " + "tuner (without any subscriptions) is used. Set this value " + "to 10, if you are willing to override scan and epggrab " + "subscriptions."), .off = offsetof(mpegts_input_t, mi_free_weight), .def.i = 1, .opts = PO_ADVANCED, diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index 34ea11004..998de4954 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -178,7 +178,8 @@ const idclass_t satip_frontend_class = { .type = PT_BOOL, .id = "pass_weight", - .name = N_("Pass weight"), + .name = N_("Pass subscription weight"), + .desc = N_("Pass subscription weight to the SAT>IP server (Tvheadend specific extension)"), .opts = PO_ADVANCED, .off = offsetof(satip_frontend_t, sf_pass_weight), }, diff --git a/src/satip/server.c b/src/satip/server.c index 51f51b07f..ec8d480b7 100644 --- a/src/satip/server.c +++ b/src/satip/server.c @@ -609,7 +609,8 @@ const idclass_t satip_server_class = { { .type = PT_BOOL, .id = "satip_remote_weight", - .name = N_("Allow remote subscription weight"), + .name = N_("Accept remote subscription weight"), + .desc = N_("Accept the remote subscription weight (from the SAT>IP client)."), .off = offsetof(struct satip_server_conf, satip_allow_remote_weight), .opts = PO_EXPERT, .group = 1,