]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Tooltips: Added tooltips to service.c.
authorMark Clarkstone <hello@markclarkstone.co.uk>
Sat, 9 Jan 2016 20:33:16 +0000 (20:33 +0000)
committerJaroslav Kysela <perex@perex.cz>
Wed, 20 Jan 2016 12:53:03 +0000 (13:53 +0100)
src/service.c

index b6382e24012f4c229d93af1ba17d9eae8eaf64b8..5ecf44da65bb18effcf513534ec53adb60a349fb 100644 (file)
@@ -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,
@@ -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,
@@ -185,6 +189,9 @@ 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
     },
@@ -192,6 +199,7 @@ const idclass_t service_class = {
       .type     = PT_BOOL,
       .id       = "encrypted",
       .name     = N_("Encrypted"),
+      .desc     = N_("The service encryption status."),
       .get      = service_class_encrypted_get,
       .opts     = PO_NOSAVE | PO_RDONLY
     },
@@ -199,6 +207,7 @@ const idclass_t service_class = {
       .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,
     },