Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add some more tooltips
  • Loading branch information
perexg committed Dec 4, 2015
1 parent c35ef56 commit 9a1b050
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion src/input/mpegts/mpegts_input.c
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion src/input/mpegts/satip/satip_frontend.c
Expand Up @@ -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),
},
Expand Down
3 changes: 2 additions & 1 deletion src/satip/server.c
Expand Up @@ -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,
Expand Down

0 comments on commit 9a1b050

Please sign in to comment.