Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mdhelp: fix some little niggles
  • Loading branch information
Mark Clarkstone authored and perexg committed Apr 26, 2016
1 parent 1dd5046 commit 6ba032c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/class/dvrautorec.md
Expand Up @@ -48,7 +48,7 @@ automatically start being recorded.**

###Editing an Entry

Highlight (select) the desired entry within the grid then click the *[Edit]*
Highlight (select) the desired entry within the grid, then click the *[Edit]*
button from the menu bar.

**Tip**: You can quickly make changes to an entry by double-clicking on
Expand Down
2 changes: 1 addition & 1 deletion docs/class/dvrtimerec.md
Expand Up @@ -31,7 +31,7 @@ Note that when you create a rule/entry it will also generate a [DVR Entry](class

###Editing an Entry

Highlight (select) the desired entry within the grid then click the *[Edit]*
Highlight (select) the desired entry within the grid, then click the *[Edit]*
button from the menu bar.

**Tip**: You can quickly make changes to an entry by double-clicking on
Expand Down
2 changes: 0 additions & 2 deletions docs/class/ipblocking.md
@@ -1,4 +1,2 @@
##Configuration - IP Blocking Records

This tab allows to configure blocked IP ranges. Users within these ranges
are not allowed to login (use any Tvheadend service).
6 changes: 3 additions & 3 deletions src/access.c
Expand Up @@ -1367,7 +1367,7 @@ CLASS_DOC(access_entry)

const idclass_t access_entry_class = {
.ic_class = "access",
.ic_caption = N_("Access Entries"),
.ic_caption = N_("Access Configuration - Access Entries"),
.ic_event = "access",
.ic_perm_def = ACCESS_ADMIN,
.ic_doc = tvh_doc_access_entry_class,
Expand Down Expand Up @@ -1799,7 +1799,7 @@ CLASS_DOC(passwd)

const idclass_t passwd_entry_class = {
.ic_class = "passwd",
.ic_caption = N_("Configuration - Passwords"),
.ic_caption = N_("Access Configuration - Passwords"),
.ic_event = "passwd",
.ic_perm_def = ACCESS_ADMIN,
.ic_doc = tvh_doc_passwd_class,
Expand Down Expand Up @@ -1951,7 +1951,7 @@ CLASS_DOC(ipblocking)

const idclass_t ipblock_entry_class = {
.ic_class = "ipblocking",
.ic_caption = N_("IP blocking"),
.ic_caption = N_("Access Configuration - IP Blocking"),
.ic_event = "ipblocking",
.ic_perm_def = ACCESS_ADMIN,
.ic_doc = tvh_doc_ipblocking_class,
Expand Down
2 changes: 1 addition & 1 deletion src/imagecache.c
Expand Up @@ -76,7 +76,7 @@ CLASS_DOC(imagecache)
const idclass_t imagecache_class = {
.ic_snode = (idnode_t *)&imagecache_conf,
.ic_class = "imagecache",
.ic_caption = N_("Configuration - Image cache"),
.ic_caption = N_("Configuration - Image Cache"),
.ic_event = "imagecache",
.ic_perm_def = ACCESS_ADMIN,
.ic_doc = tvh_doc_imagecache_class,
Expand Down
2 changes: 1 addition & 1 deletion src/satip/server.c
Expand Up @@ -571,7 +571,7 @@ CLASS_DOC(satip_server)
const idclass_t satip_server_class = {
.ic_snode = (idnode_t *)&satip_server_conf,
.ic_class = "satip_server",
.ic_caption = N_("Configuration - SAT>IP server"),
.ic_caption = N_("Configuration - SAT>IP Server"),
.ic_event = "satip_server",
.ic_perm_def = ACCESS_ADMIN,
.ic_doc = tvh_doc_satip_server_class,
Expand Down
2 changes: 1 addition & 1 deletion src/webui/static/app/config.js
Expand Up @@ -105,7 +105,7 @@ tvheadend.imgcacheconf = function(panel, index) {

tvheadend.idnode_simple(panel, {
url: 'api/imagecache/config',
title: _('Image cache'),
title: _('Image Cache'),
iconCls: 'imgcacheconf',
tabIndex: index,
comet: 'imagecache',
Expand Down

0 comments on commit 6ba032c

Please sign in to comment.