summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEvan Benn <evan.benn@morsemicro.com>2023-12-08 13:14:29 +1100
committerEvan Benn <evan.benn@morsemicro.com>2023-12-15 09:11:13 +1100
commit23931c3778337927945c7c9648ad9d5d9805ce98 (patch)
tree758bc32665b60c6605c560f377c139f043dd901e
parent22101eb50af976f5f026b76079d37cb756c7425a (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>
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/network.js2
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');