Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix various mistakes.
  • Loading branch information
Mark Clarkstone authored and perexg committed Feb 10, 2016
1 parent 47bd9f2 commit fdbf7e2
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/access.c
Expand Up @@ -1442,7 +1442,7 @@ const idclass_t access_entry_class = {
.type = PT_STR,
.id = "prefix",
.name = N_("Allowed networks"),
.desc = N_("List of allowed IPv4 or IPv6 hosts or networks (comma separated)."),
.desc = N_("List of allowed IPv4 or IPv6 hosts or networks (comma-separated)."),
.set = access_entry_class_prefix_set,
.get = access_entry_class_prefix_get,
.opts = PO_ADVANCED
Expand Down Expand Up @@ -2026,7 +2026,7 @@ const idclass_t ipblock_entry_class = {
.id = "prefix",
.name = N_("Network prefix"),
.desc = N_("The network prefix(es) to block, "
"e.g.192.168.2.0/24 (comma separated list)."),
"e.g.192.168.2.0/24 (comma-separated list)."),
.set = ipblock_entry_class_prefix_set,
.get = ipblock_entry_class_prefix_get,
},
Expand Down
2 changes: 1 addition & 1 deletion src/config.c
Expand Up @@ -2209,7 +2209,7 @@ const idclass_t config_class = {
.type = PT_INT,
.id = "chiconscheme",
.name = N_("Channel icon name scheme"),
.desc = N_("Select scheme to generathe the channel icon names "
.desc = N_("Scheme to generate the the channel icon names "
"(all lower-case, service name picons etc.)."),
.list = config_class_chiconscheme_list,
.off = offsetof(config_t, chicon_scheme),
Expand Down
2 changes: 1 addition & 1 deletion src/idnode.h
Expand Up @@ -61,7 +61,7 @@ struct idclass {
const struct idclass *ic_super; ///< Parent class
const char *ic_class; ///< Class name
const char *ic_caption; ///< Class description
const char *ic_order; ///< Property order (comma separated)
const char *ic_order; ///< Property order (comma-separated)
const property_group_t *ic_groups; ///< Groups for visual representation
const property_t *ic_properties; ///< Property list
const char *ic_event; ///< Events to fire on add/delete/title
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -281,7 +281,7 @@ const idclass_t linuxdvb_frontend_dvbs_class =
"case, the position, the polarization and low-high "
"band settings must be equal. If you set another "
"tuner as master, then this tuner will act as "
"a slave and tvheadend will assure that this tuner "
"a slave and Tvheadend will assure that this tuner "
"will not use incompatible parameters (position, "
"polarization, lo-hi)."),
.list = linuxdvb_frontend_dvbs_class_master_enum,
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Expand Up @@ -686,7 +686,7 @@ main(int argc, char **argv)
OPT_BOOL, &opt_dbus_session },
#endif
#if ENABLE_LINUXDVB
{ 'a', "adapters", N_("Only use specified DVB adapters (comma separated, -1 = none)"),
{ 'a', "adapters", N_("Only use specified DVB adapters (comma-separated, -1 = none)"),
OPT_STR, &opt_dvb_adapters },
#endif
#if ENABLE_SATIP_SERVER
Expand Down
2 changes: 1 addition & 1 deletion src/service.c
Expand Up @@ -199,7 +199,7 @@ const idclass_t service_class = {
.type = PT_BOOL,
.id = "encrypted",
.name = N_("Encrypted"),
.desc = N_("The service encryption status."),
.desc = N_("The service`s encryption status."),
.get = service_class_encrypted_get,
.opts = PO_NOSAVE | PO_RDONLY
},
Expand Down
4 changes: 2 additions & 2 deletions src/tvhlog.c
Expand Up @@ -668,7 +668,7 @@ 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 "
.desc = N_("Enter comma-separated list of subsystems you want "
"debugging output for (e.g "
"+linuxdvb,+subscriptions,+mpegts)."),
.get = tvhlog_class_debugsubs_get,
Expand All @@ -691,7 +691,7 @@ 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 "
.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,
Expand Down
2 changes: 1 addition & 1 deletion src/wizard.c
Expand Up @@ -425,7 +425,7 @@ wizard_page_t *wizard_login(const char *lang)
.id = "network",
.name = N_("Allowed network"),
.desc = N_("Enter allowed network prefix(es). You can enter a "
"comma seperated list of prefixes here."),
"comma-seperated list of prefixes here."),
.get = wizard_get_value_network,
.set = wizard_set_value_network,
.group = 1
Expand Down

0 comments on commit fdbf7e2

Please sign in to comment.