Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
access: replace 'Network prefix' with 'Allowed networks' and use desc…
…ription in grid headers
  • Loading branch information
perexg committed Dec 26, 2015
1 parent 76dd978 commit c62bcc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/access.c
Expand Up @@ -1430,7 +1430,8 @@ const idclass_t access_entry_class = {
{
.type = PT_STR,
.id = "prefix",
.name = N_("Network prefix"),
.name = N_("Allowed networks"),
.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
2 changes: 1 addition & 1 deletion src/webui/static/app/idnode.js
Expand Up @@ -1583,7 +1583,7 @@ tvheadend.idnode_grid = function(panel, conf)
fields.push(f.id);
ifields.push(f);
if (!f.noui) {
c['tooltip'] = f.text;
c['tooltip'] = f.description || f.text;
columns.push(c);
if (c.filter)
filters.push(c.filter);
Expand Down

0 comments on commit c62bcc6

Please sign in to comment.