From: Mark Clarkstone Date: Sat, 9 Jan 2016 20:53:20 +0000 (+0000) Subject: Tooltips: Added tooltips for tvhlog.c. X-Git-Tag: v4.2.1~1148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de4d4d7cb3a3aa0aa8ccdf2cc43586250472e7f5;p=thirdparty%2Ftvheadend.git Tooltips: Added tooltips for tvhlog.c. --- diff --git a/src/tvhlog.c b/src/tvhlog.c index e8a4308fc..fedee81e7 100644 --- a/src/tvhlog.c +++ b/src/tvhlog.c @@ -639,6 +639,9 @@ const idclass_t tvhlog_conf_class = { .type = PT_STR, .id = "path", .name = N_("Debug log path"), + /* Should this really be called Debug log path? Don't you need to + * enter a filename here not just a path? */ + .desc = N_("Enter a filename for debug output."), .get = tvhlog_class_path_get, .set = tvhlog_class_path_set, .group = 1, @@ -647,6 +650,7 @@ const idclass_t tvhlog_conf_class = { .type = PT_BOOL, .id = "enable_syslog", .name = N_("Enable syslog"), + .desc = N_("Enable/disable logging to syslog."), .get = tvhlog_class_enable_syslog_get, .set = tvhlog_class_enable_syslog_set, .group = 1, @@ -655,6 +659,7 @@ const idclass_t tvhlog_conf_class = { .type = PT_BOOL, .id = "syslog", .name = N_("Debug to syslog"), + .desc = N_("Enable/disable debugging output to syslog."), .get = tvhlog_class_debug_syslog_get, .set = tvhlog_class_debug_syslog_set, .group = 1, @@ -663,6 +668,9 @@ const idclass_t tvhlog_conf_class = { .type = PT_STR, .id = "debugsubs", .name = N_("Debug subsystems"), + .desc = N_("Enter comma separated list of subsystems you want " + "debugging output for (e.g " + "+linuxdvb,+subscriptions,+mpegts)."), .get = tvhlog_class_debugsubs_get, .set = tvhlog_class_debugsubs_set, .group = 1, @@ -671,6 +679,7 @@ const idclass_t tvhlog_conf_class = { .type = PT_BOOL, .id = "trace", .name = N_("Debug trace (low-level)"), + .desc = N_("Enable/disable including of low level debug traces."), .get = tvhlog_class_trace_get, .set = tvhlog_class_trace_set, #if !ENABLE_TRACE @@ -682,6 +691,8 @@ const idclass_t tvhlog_conf_class = { .type = PT_STR, .id = "tracesubs", .name = N_("Trace subsystems"), + .desc = N_("Enter comma separated list of subsystems you want " + "to get traces for (e.g +linuxdvb,+subscriptions,+mpegts)."), .get = tvhlog_class_tracesubs_get, .set = tvhlog_class_tracesubs_set, #if !ENABLE_TRACE @@ -693,6 +704,7 @@ const idclass_t tvhlog_conf_class = { .type = PT_BOOL, .id = "libav", .name = N_("Debug libav log"), + .desc = N_("Enable/disable libav log output."), .get = tvhlog_class_libav_get, .set = tvhlog_class_libav_set, .group = 1,