luci-app-keepalived: drive-by fixes
Signed-off-by: Paul Donald <newtwen@gmail.com>
This commit is contained in:
parent
76ed6774b3
commit
3f6f25f2b0
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ return view.extend({
|
||||||
s.addremove = false;
|
s.addremove = false;
|
||||||
|
|
||||||
o = s.option(form.Value, 'router_id', _('Router ID'),
|
o = s.option(form.Value, 'router_id', _('Router ID'),
|
||||||
_('String identifying the machine (doesn\'t have to be hostname)'));
|
_('String identifying the machine (need not be hostname)'));
|
||||||
o.optional = true;
|
o.optional = true;
|
||||||
o.placeholder = 'OpenWrt';
|
o.placeholder = 'OpenWrt';
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,7 @@ return view.extend({
|
||||||
|
|
||||||
s = m.section(form.GridSection, 'static_ipaddress', _('Static IP Addresses'),
|
s = m.section(form.GridSection, 'static_ipaddress', _('Static IP Addresses'),
|
||||||
_('Static Addresses are not moved by vrrpd, they stay on the machine.') + '<br/>' +
|
_('Static Addresses are not moved by vrrpd, they stay on the machine.') + '<br/>' +
|
||||||
_('If you already have IPs on your machines and your machines can ping each other, you don\'t need this section'));
|
_('If your systems already have IPs and they can ping each other, you do not need this section'));
|
||||||
s.anonymous = true;
|
s.anonymous = true;
|
||||||
s.addremove = true;
|
s.addremove = true;
|
||||||
s.nodescriptions = true;
|
s.nodescriptions = true;
|
||||||
|
|
|
@ -16,7 +16,7 @@ return view.extend({
|
||||||
var s, o;
|
var s, o;
|
||||||
|
|
||||||
s = m.section(form.GridSection, 'route', _('Routes'),
|
s = m.section(form.GridSection, 'route', _('Routes'),
|
||||||
_('Routes would be refereenced into Static and Virtual Routes of VRRP instances'));
|
_('Routes would be referenced into Static and Virtual Routes of VRRP instances'));
|
||||||
s.anonymous = true;
|
s.anonymous = true;
|
||||||
s.addremove = true;
|
s.addremove = true;
|
||||||
s.nodescriptions = true;
|
s.nodescriptions = true;
|
||||||
|
|
Loading…
Reference in a new issue