diff options
author | Paul Donald <newtwen+github@gmail.com> | 2024-05-14 14:03:35 +0200 |
---|---|---|
committer | Paul Donald <newtwen+github@gmail.com> | 2024-05-14 14:03:35 +0200 |
commit | 6abc7c3dbb46af8af0359304b39296ead5abd668 (patch) | |
tree | ed13fa27134bb6952c8f3633051f80cf644bc558 /applications/luci-app-xinetd/htdocs | |
parent | aa942bdfcefc39a43ae5ad0b478056dd406d2ec8 (diff) |
luci-app-xinetd: string corrections
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Diffstat (limited to 'applications/luci-app-xinetd/htdocs')
-rw-r--r-- | applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js b/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js index 8f5583f7bd..d1476ae1e5 100644 --- a/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js +++ b/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js @@ -200,7 +200,7 @@ return view.extend({ o.rmempty = false; o.modalonly = true; - o = s.taboption('advanced', form.MultiValue, 'log_on_success', _('Log on success'), _('Informations that should be logged for this service in case of successful connection')); + o = s.taboption('advanced', form.MultiValue, 'log_on_success', _('Log on success'), _('What to log for successful connections')); o.value('PID', _('Server PID')); o.value('HOST', _('Remote host address ')); o.value('USERID', _('User ID of the remote user')); @@ -209,7 +209,7 @@ return view.extend({ o.value('TRAFFIC', _('Total bytes in and out for a redirected service')); o.modalonly = true; - o = s.taboption('advanced', form.MultiValue, 'log_on_failure', _('Log on failure'), _('Informations that should be logged for this service in case of a failed connection')); + o = s.taboption('advanced', form.MultiValue, 'log_on_failure', _('Log on failure'), _('What to log for failed connections')); o.value('HOST', _('Remote host address ')); o.value('USERID', _('User ID of the remote user')); o.value('ATTEMPT', _('Failed attempts')); |