From: Paul Donald Date: Sun, 11 Feb 2024 23:15:46 +0000 (+0100) Subject: luci-app-keepalived: drive-by fixes X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=3f6f25f2b0071ad22cfd498da31c4603f47423eb;p=project%2Fluci.git luci-app-keepalived: drive-by fixes Signed-off-by: Paul Donald --- diff --git a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/globals.js b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/globals.js index 5329d3304c..67781b59af 100644 --- a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/globals.js +++ b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/globals.js @@ -13,7 +13,7 @@ return view.extend({ s.addremove = false; 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.placeholder = 'OpenWrt'; diff --git a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/ipaddress.js b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/ipaddress.js index 0cdce65bef..d633724e8d 100644 --- a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/ipaddress.js +++ b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/ipaddress.js @@ -64,7 +64,7 @@ return view.extend({ s = m.section(form.GridSection, 'static_ipaddress', _('Static IP Addresses'), _('Static Addresses are not moved by vrrpd, they stay on the machine.') + '
' + - _('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.addremove = true; s.nodescriptions = true; diff --git a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/route.js b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/route.js index cf2454c7d4..d83c5543a6 100644 --- a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/route.js +++ b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/route.js @@ -16,7 +16,7 @@ return view.extend({ var s, o; 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.addremove = true; s.nodescriptions = true;