diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-12-21 11:25:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 11:25:58 +0100 |
commit | 5a021f841903710e725b0b8e7e40ff778833355d (patch) | |
tree | e685911cce68c098b460bf319f7bf6b73b5c2c6f /modules/luci-mod-network/htdocs/luci-static/resources | |
parent | a209c9f70c592023766214485a0af064807a4d75 (diff) | |
parent | 9060c129155e018567716d3f9cfe75b0accf6dc5 (diff) |
Merge pull request #4649 from nicklowe/master
luci-mod-network Add description: Hidden SSID, WMM
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 14647f8342..b46cf0d079 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1068,11 +1068,11 @@ return view.extend({ return mode; }; - o = ss.taboption('general', form.Flag, 'hidden', _('Hide <abbr title="Extended Service Set Identifier">ESSID</abbr>')); + o = ss.taboption('general', form.Flag, 'hidden', _('Hide <abbr title="Extended Service Set Identifier">ESSID</abbr>'), _('Where the ESSID is hidden, clients may fail to roam and airtime efficiency may be significantly reduced.')); o.depends('mode', 'ap'); o.depends('mode', 'ap-wds'); - o = ss.taboption('general', form.Flag, 'wmm', _('WMM Mode')); + o = ss.taboption('general', form.Flag, 'wmm', _('WMM Mode'), _('Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to 802.11a/802.11g rates.')); o.depends('mode', 'ap'); o.depends('mode', 'ap-wds'); o.default = o.enabled; |