Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tooltips: Added tooltips for tvhlog.c.
  • Loading branch information
Mark Clarkstone authored and perexg committed Jan 20, 2016
1 parent 1a16b72 commit de4d4d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/tvhlog.c
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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,
Expand Down

0 comments on commit de4d4d7

Please sign in to comment.