diff options
author | Evan Benn <evan.benn@morsemicro.com> | 2023-12-08 13:14:29 +1100 |
---|---|---|
committer | Evan Benn <evan.benn@morsemicro.com> | 2023-12-15 09:11:13 +1100 |
commit | 23931c3778337927945c7c9648ad9d5d9805ce98 (patch) | |
tree | 758bc32665b60c6605c560f377c139f043dd901e /modules/luci-base/htdocs/luci-static/resources/network.js | |
parent | 22101eb50af976f5f026b76079d37cb756c7425a (diff) |
luci-base: Replace mode: Master with Access Point
Access Point is the string used on the network wireless setup dialogue.
Use Access Point to report the mode on the network wireless and status
screens.
Signed-off-by: Evan Benn <evan.benn@morsemicro.com>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static/resources/network.js')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/network.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js index 10695cf967..887c3d57f0 100644 --- a/modules/luci-base/htdocs/luci-static/resources/network.js +++ b/modules/luci-base/htdocs/luci-static/resources/network.js @@ -3861,7 +3861,7 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */ var mode = this.getActiveMode(); switch (mode) { - case 'Master': return _('Master'); + case 'Master': return _('Access Point'); case 'Ad-Hoc': return _('Ad-Hoc'); case 'Client': return _('Client'); case 'Monitor': return _('Monitor'); |