Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update dvr_config.c
  • Loading branch information
mpmc authored and perexg committed Nov 10, 2015
1 parent 62ef85b commit a085b08
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/dvr/dvr_config.c
Expand Up @@ -810,15 +810,15 @@ const idclass_t dvr_config_class = {
{
.type = PT_U32,
.id = "retention-days",
.name = N_("DVR Log retention period (days)"),
.name = N_("DVR log retention period (days)"),
.off = offsetof(dvr_config_t, dvr_retention_days),
.def.u32 = 31,
.group = 1,
},
{
.type = PT_U32,
.id = "removal-days",
.name = N_("DVR File removal period (days)"),
.name = N_("DVR file removal period (days)"),
.off = offsetof(dvr_config_t, dvr_removal_days),
.group = 1,
},
Expand All @@ -840,15 +840,15 @@ const idclass_t dvr_config_class = {
{
.type = PT_U32,
.id = "pre-extra-time",
.name = N_("Extra time before recordings (minutes)"),
.name = N_("Extra padding before recordings (minutes)"),
.off = offsetof(dvr_config_t, dvr_extra_time_pre),
.list = dvr_config_class_extra_list,
.group = 1,
},
{
.type = PT_U32,
.id = "post-extra-time",
.name = N_("Extra time after recordings (minutes)"),
.name = N_("Extra padding after recordings (minutes)"),
.off = offsetof(dvr_config_t, dvr_extra_time_post),
.list = dvr_config_class_extra_list,
.group = 1,
Expand Down Expand Up @@ -895,7 +895,7 @@ const idclass_t dvr_config_class = {
{
.type = PT_STR,
.id = "charset",
.name = N_("File name character set"),
.name = N_("Filename character set"),
.off = offsetof(dvr_config_t, dvr_charset),
.set = dvr_config_class_charset_set,
.list = dvr_config_class_charset_list,
Expand Down Expand Up @@ -958,63 +958,63 @@ const idclass_t dvr_config_class = {
{
.type = PT_BOOL,
.id = "channel-in-title",
.name = N_("Include channel name In file name"),
.name = N_("Include channelname In filename"),
.off = offsetof(dvr_config_t, dvr_channel_in_title),
.group = 5,
},
{
.type = PT_BOOL,
.id = "date-in-title",
.name = N_("Include date In file name"),
.name = N_("Include date In filename"),
.off = offsetof(dvr_config_t, dvr_date_in_title),
.group = 5,
},
{
.type = PT_BOOL,
.id = "time-in-title",
.name = N_("Include time In file name"),
.name = N_("Include time In filename"),
.off = offsetof(dvr_config_t, dvr_time_in_title),
.group = 5,
},
{
.type = PT_BOOL,
.id = "episode-in-title",
.name = N_("Include episode in file name"),
.name = N_("Include episode in filename"),
.off = offsetof(dvr_config_t, dvr_episode_in_title),
.group = 5,
},
{
.type = PT_BOOL,
.id = "subtitle-in-title",
.name = N_("Include subtitle in file name"),
.name = N_("Include subtitle in filename"),
.off = offsetof(dvr_config_t, dvr_subtitle_in_title),
.group = 6,
},
{
.type = PT_BOOL,
.id = "omit-title",
.name = N_("Don't include title in file name"),
.name = N_("Don't include title in filename"),
.off = offsetof(dvr_config_t, dvr_omit_title),
.group = 6,
},
{
.type = PT_BOOL,
.id = "clean-title",
.name = N_("Remove all unsafe characters from file name"),
.name = N_("Remove all unsafe characters from filename"),
.off = offsetof(dvr_config_t, dvr_clean_title),
.group = 6,
},
{
.type = PT_BOOL,
.id = "whitespace-in-title",
.name = N_("Replace spaces in title with '-'"),
.name = N_("Replace whitespace in title with '-'"),
.off = offsetof(dvr_config_t, dvr_whitespace_in_title),
.group = 6,
},
{
.type = PT_BOOL,
.id = "windows-compatible-filenames",
.name = N_("Use Windows compatible file names"),
.name = N_("Use Windows-compatible filenames"),
.off = offsetof(dvr_config_t, dvr_windows_compatible_filenames),
.group = 6,
},
Expand Down

0 comments on commit a085b08

Please sign in to comment.