Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
intl: more capitalization changes
  • Loading branch information
perexg committed Nov 10, 2015
1 parent a7d936b commit ad2e9b3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/dvr/dvr_autorec.c
Expand Up @@ -1063,14 +1063,14 @@ const idclass_t dvr_autorec_entry_class = {
{
.type = PT_U32,
.id = "retention",
.name = N_("DVR Log retention (days)"),
.name = N_("DVR log retention (days)"),
.off = offsetof(dvr_autorec_entry_t, dae_retention),
.opts = PO_HIDDEN,
},
{
.type = PT_U32,
.id = "removal",
.name = N_("File removal (days)"),
.name = N_("DVR file retention period (days)"),
.off = offsetof(dvr_autorec_entry_t, dae_removal),
.opts = PO_HIDDEN,
},
Expand Down
2 changes: 1 addition & 1 deletion src/dvr/dvr_config.c
Expand Up @@ -724,7 +724,7 @@ dvr_config_class_pathname_set(void *o, const void *v)

const idclass_t dvr_config_class = {
.ic_class = "dvrconfig",
.ic_caption = N_("DVR Configuration profile"),
.ic_caption = N_("DVR configuration profile"),
.ic_event = "dvrconfig",
.ic_save = dvr_config_class_save,
.ic_get_title = dvr_config_class_get_title,
Expand Down
2 changes: 1 addition & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -2720,7 +2720,7 @@ const idclass_t dvr_entry_class = {
{
.type = PT_U32,
.id = "removal",
.name = N_("File removal (days)"),
.name = N_("DVR file retention period (days)"),
.off = offsetof(dvr_entry_t, de_removal),
.set = dvr_entry_class_removal_set,
.opts = PO_HIDDEN
Expand Down
4 changes: 2 additions & 2 deletions src/dvr/dvr_timerec.c
Expand Up @@ -614,13 +614,13 @@ const idclass_t dvr_timerec_entry_class = {
{
.type = PT_U32,
.id = "removal",
.name = N_("File removal (days)"),
.name = N_("DVR file retention period (days)"),
.off = offsetof(dvr_timerec_entry_t, dte_removal),
},
{
.type = PT_STR,
.id = "config_name",
.name = N_("DVR Configuration"),
.name = N_("DVR configuration"),
.set = dvr_timerec_entry_class_config_name_set,
.get = dvr_timerec_entry_class_config_name_get,
.rend = dvr_timerec_entry_class_config_name_rend,
Expand Down
14 changes: 7 additions & 7 deletions src/profile.c
Expand Up @@ -249,11 +249,11 @@ profile_class_priority_list ( void *o, const char *lang )
{ N_("Normal"), PROFILE_SPRIO_NORMAL },
{ N_("Low"), PROFILE_SPRIO_LOW },
{ N_("Unimportant"), PROFILE_SPRIO_UNIMPORTANT },
{ N_("DVR Override: important"), PROFILE_SPRIO_DVR_IMPORTANT },
{ N_("DVR Override: high"), PROFILE_SPRIO_DVR_HIGH },
{ N_("DVR Override: normal"), PROFILE_SPRIO_DVR_NORMAL },
{ N_("DVR Override: low"), PROFILE_SPRIO_DVR_LOW },
{ N_("DVR Override: unimportant"), PROFILE_SPRIO_DVR_UNIMPORTANT },
{ N_("DVR override: important"), PROFILE_SPRIO_DVR_IMPORTANT },
{ N_("DVR override: high"), PROFILE_SPRIO_DVR_HIGH },
{ N_("DVR override: normal"), PROFILE_SPRIO_DVR_NORMAL },
{ N_("DVR override: low"), PROFILE_SPRIO_DVR_LOW },
{ N_("DVR override: unimportant"), PROFILE_SPRIO_DVR_UNIMPORTANT },
};
return strtab2htsmsg(tab, 1, lang);
}
Expand All @@ -263,8 +263,8 @@ profile_class_svfilter_list ( void *o, const char *lang )
{
static const struct strtab tab[] = {
{ N_("None"), PROFILE_SVF_NONE },
{ N_("SD: Standard definition"), PROFILE_SVF_SD },
{ N_("HD: High definition"), PROFILE_SVF_HD },
{ N_("SD: standard definition"), PROFILE_SVF_SD },
{ N_("HD: high definition"), PROFILE_SVF_HD },
};
return strtab2htsmsg(tab, 1, lang);
}
Expand Down

0 comments on commit ad2e9b3

Please sign in to comment.