Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Another lot of tooltip descriptions!
  • Loading branch information
Mark Clarkstone authored and perexg committed Dec 7, 2015
1 parent e298b3b commit aed2e14
Show file tree
Hide file tree
Showing 7 changed files with 281 additions and 1 deletion.
29 changes: 29 additions & 0 deletions src/epggrab.c
Expand Up @@ -266,34 +266,55 @@ const idclass_t epggrab_class = {
.type = PT_BOOL,
.id = "channel_rename",
.name = N_("Update channel name"),
.desc = N_("Automatically update channel names using "
"information provided by the enabled EPG providers. "
"Note: this may cause unwanted changes to "
"already defined channel names."),
.off = offsetof(epggrab_conf_t, channel_rename),
.group = 1,
},
{
.type = PT_BOOL,
.id = "channel_renumber",
.name = N_("Update channel number"),
.desc = N_("Automatically update channel numbers using "
"information provided by the enabled EPG providers. "
"Note: this may cause unwanted changes to "
"already defined channel numbers."),
.off = offsetof(epggrab_conf_t, channel_renumber),
.group = 1,
},
{
.type = PT_BOOL,
.id = "channel_reicon",
.name = N_("Update channel icon"),
.desc = N_("Automatically update channel icons using "
"information provided by the enabled EPG providers. "
"Note: this may cause unwanted changes to "
"already defined channel icons."),
.off = offsetof(epggrab_conf_t, channel_reicon),
.group = 1,
},
{
.type = PT_INT,
.id = "epgdb_periodicsave",
.name = N_("Periodically save EPG to disk (hours)"),
.desc = N_("Writes the current in-memory EPG database to disk "
"every x hours, so should a crash/unexpected "
"shutdown occur EPG data is saved "
"periodically to the database (re-read on next "
"startup). Set to 0 to disable."),
.off = offsetof(epggrab_conf_t, epgdb_periodicsave),
.group = 1,
},
{
.type = PT_STR,
.id = "cron",
.name = N_("Cron multi-line"),
.desc = N_("Multiple lines of the cron time specification. "
"The default cron triggers the internal grabbers "
"daily at 12:04 and 00:04. See Help on how to define "
"your own."),
.off = offsetof(epggrab_conf_t, cron),
.notify = epggrab_class_cron_notify,
.opts = PO_MULTILINE | PO_ADVANCED,
Expand All @@ -303,6 +324,7 @@ const idclass_t epggrab_class = {
.type = PT_BOOL,
.id = "ota_initial",
.name = N_("Force initial EPG scan at start-up"),
.desc = N_("Force an initial EPG scan at start-up."),
.off = offsetof(epggrab_conf_t, ota_initial),
.opts = PO_ADVANCED,
.group = 3,
Expand All @@ -311,6 +333,10 @@ const idclass_t epggrab_class = {
.type = PT_STR,
.id = "ota_cron",
.name = N_("Over-the-air Cron multi-line"),
.desc = N_("Multiple lines of the cron time specification. "
"The default cron triggers the Over-the-air "
"grabber daily at 02:04 and 14:04. See Help on how "
"to define your own."),
.off = offsetof(epggrab_conf_t, ota_cron),
.notify = epggrab_class_ota_cron_notify,
.opts = PO_MULTILINE | PO_ADVANCED,
Expand All @@ -320,6 +346,9 @@ const idclass_t epggrab_class = {
.type = PT_U32,
.id = "ota_timeout",
.name = N_("EPG scan timeout in seconds (30-7200)"),
.desc = N_("The multiplex (mux) is tuned for this amount of "
"time at most. If the EPG data is complete before "
"this limit, the mux is released sooner."),
.off = offsetof(epggrab_conf_t, ota_timeout),
.opts = PO_ADVANCED,
.group = 3,
Expand Down

0 comments on commit aed2e14

Please sign in to comment.