summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-uhttpd/htdocs/luci-static
diff options
context:
space:
mode:
authorFlorian Eckert <fe@dev.tdt.de>2023-07-20 08:16:44 +0200
committerGitHub <noreply@github.com>2023-07-20 08:16:44 +0200
commit467aca5b90462614ea6d2ff33f352b0280b95d57 (patch)
tree99bb69f6c2c1de84fc87e01f5acc359eb080833e /applications/luci-app-uhttpd/htdocs/luci-static
parent7c4d525f6737901b057d3717073cda3814b00390 (diff)
parent4d841f2744f55ba78127f1ba19c7cbba0f4c6301 (diff)
Merge pull request #6473 from t-8ch/master
luci-app-uhttpd: close braces in info strings
Diffstat (limited to 'applications/luci-app-uhttpd/htdocs/luci-static')
-rw-r--r--applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js b/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
index 3619e0835f..6e475514de 100644
--- a/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
+++ b/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
@@ -24,7 +24,7 @@ return view.extend({
ucs.tab('server', _('Full Web Server Settings'), _('For settings primarily geared to serving more than the web UI'));
ucs.tab('advanced', _('Advanced Settings'), _('Settings which are either rarely needed or which affect serving the WebUI'));
- lhttp = ucs.taboption('general', form.DynamicList, 'listen_http', _('HTTP listeners (address:port)'), _('Bind to specific interface:port (by specifying interface address'));
+ lhttp = ucs.taboption('general', form.DynamicList, 'listen_http', _('HTTP listeners (address:port)'), _('Bind to specific interface:port (by specifying interface address)'));
lhttp.datatype = 'list(ipaddrport(1))';
lhttp.validate = function (section_id, value) {
@@ -52,7 +52,7 @@ return view.extend({
return true;
};
- lhttps = ucs.taboption('general', form.DynamicList, 'listen_https', _('HTTPS listener (address:port)'), _('Bind to specific interface:port (by specifying interface address'));
+ lhttps = ucs.taboption('general', form.DynamicList, 'listen_https', _('HTTPS listener (address:port)'), _('Bind to specific interface:port (by specifying interface address)'));
lhttps.datatype = 'list(ipaddrport(1))';
var cert = uci.get('uhttpd', 'main', 'cert');