]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Tooltips: Added tooltips for EPG Grabber Modules tab.
authorMark Clarkstone <hello@markclarkstone.co.uk>
Sat, 23 Jan 2016 12:42:45 +0000 (12:42 +0000)
committerJaroslav Kysela <perex@perex.cz>
Mon, 25 Jan 2016 17:47:23 +0000 (18:47 +0100)
src/epggrab/module.c

index 360735c1b84cb68ad0078923a5a07992f8edb0c1..3f607d58c5498421e154d018d967232a6eb8b486 100644 (file)
@@ -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