Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tooltips: Added tooltips to service.c.
  • Loading branch information
Mark Clarkstone authored and perexg committed Jan 20, 2016
1 parent 33b5ba2 commit 1a16b72
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/service.c
Expand Up @@ -166,6 +166,9 @@ const idclass_t service_class = {
.type = PT_INT,
.id = "auto",
.name = N_("Automatic checking"),
.desc = N_("Check for the service presence. If the service is no "
"longer broadcast this field will change to "
"“Missing In PAT/SDT”."),
.list = service_class_auto_list,
.off = offsetof(service_t, s_auto),
.opts = PO_ADVANCED,
Expand All @@ -175,6 +178,7 @@ const idclass_t service_class = {
.islist = 1,
.id = "channel",
.name = N_("Channel"),
.desc = N_("The channel this service is mapped to."),
.get = service_class_channel_get,
.set = service_class_channel_set,
.list = channel_class_get_list,
Expand All @@ -185,20 +189,25 @@ const idclass_t service_class = {
.type = PT_INT,
.id = "priority",
.name = N_("Priority (-10..10)"),
.desc = N_("Service priority. Enter a value between -10 and 10 "
"Higher value indicates higher preference. See Help "
"for more info."),
.off = offsetof(service_t, s_prio),
.opts = PO_ADVANCED
},
{
.type = PT_BOOL,
.id = "encrypted",
.name = N_("Encrypted"),
.desc = N_("The service encryption status."),
.get = service_class_encrypted_get,
.opts = PO_NOSAVE | PO_RDONLY
},
{
.type = PT_STR,
.id = "caid",
.name = N_("CAID"),
.desc = N_("The Conditional Access ID used for the service."),
.get = service_class_caid_get,
.opts = PO_NOSAVE | PO_RDONLY | PO_HIDDEN | PO_EXPERT,
},
Expand Down

0 comments on commit 1a16b72

Please sign in to comment.