luci-app-uhttpd: close braces in info strings 6473/head
authorThomas Weißschuh <thomas@t-8ch.de>
Wed, 19 Jul 2023 16:46:03 +0000 (18:46 +0200)
committerThomas Weißschuh <thomas@t-8ch.de>
Wed, 19 Jul 2023 16:46:39 +0000 (18:46 +0200)
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js

index 3619e0835f734756e4148054ebf9255f53382b09..6e475514de4ae98bd5aca48de42c11e704d311c9 100644 (file)
@@ -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');