From: Mark Clarkstone Date: Sat, 9 Jan 2016 20:33:16 +0000 (+0000) Subject: Tooltips: Added tooltips to service.c. X-Git-Tag: v4.2.1~1149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a16b72415658b1b62d758e5899825549424e8c0;p=thirdparty%2Ftvheadend.git Tooltips: Added tooltips to service.c. --- diff --git a/src/service.c b/src/service.c index b6382e240..5ecf44da6 100644 --- a/src/service.c +++ b/src/service.c @@ -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, },