From: Mark Clarkstone Date: Sat, 23 Jan 2016 12:42:45 +0000 (+0000) Subject: Tooltips: Added tooltips for EPG Grabber Modules tab. X-Git-Tag: v4.2.1~1119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a686f0c4d816ef703ec4fc225a1574f3eff5fa5f;p=thirdparty%2Ftvheadend.git Tooltips: Added tooltips for EPG Grabber Modules tab. --- diff --git a/src/epggrab/module.c b/src/epggrab/module.c index 360735c1b..3f607d58c 100644 --- a/src/epggrab/module.c +++ b/src/epggrab/module.c @@ -122,6 +122,7 @@ const idclass_t epggrab_mod_class = { .type = PT_STR, .id = "name", .name = N_("Name"), + .desc = N_("The EPG grabber name."), .off = offsetof(epggrab_module_t, name), .opts = PO_RDONLY, .group = 1, @@ -130,6 +131,7 @@ const idclass_t epggrab_mod_class = { .type = PT_STR, .id = "type", .name = N_("Type"), + .desc = N_("The EPG grabber type."), .get = epggrab_mod_class_type_get, .set = epggrab_mod_class_type_set, .opts = PO_RDONLY | PO_LOCALE, @@ -139,6 +141,7 @@ const idclass_t epggrab_mod_class = { .type = PT_BOOL, .id = "enabled", .name = N_("Enabled"), + .desc = N_("Enable/disable the grabber."), .off = offsetof(epggrab_module_t, enabled), .group = 1, }, @@ -146,6 +149,10 @@ const idclass_t epggrab_mod_class = { .type = PT_INT, .id = "priority", .name = N_("Priority"), + .desc = N_("Grabber priority. This option lets you pick which " + "EPG grabber`s data gets used first if more than one " + "grabber is enabled. Priority is given to the grabber " + "with the highest value set here."), .off = offsetof(epggrab_module_t, priority), .opts = PO_ADVANCED, .group = 1 @@ -163,6 +170,7 @@ const idclass_t epggrab_class_mod_int = { .type = PT_STR, .id = "path", .name = N_("Path"), + .desc = N_("Path to the grabber executable."), .off = offsetof(epggrab_module_int_t, path), .opts = PO_RDONLY | PO_NOSAVE, .group = 1 @@ -171,6 +179,7 @@ const idclass_t epggrab_class_mod_int = { .type = PT_STR, .id = "args", .name = N_("Extra arguments"), + .desc = N_("Additional arguments to pass to the grabber."), .off = offsetof(epggrab_module_int_t, args), .opts = PO_ADVANCED, .group = 1 @@ -188,6 +197,7 @@ const idclass_t epggrab_class_mod_ext = { .type = PT_STR, .id = "path", .name = N_("Path"), + .desc = N_("Path to the socket Tvheadend will read data from."), .off = offsetof(epggrab_module_ext_t, path), .opts = PO_RDONLY | PO_NOSAVE, .group = 1