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>
This commit is contained in:
Evan Benn 2023-12-08 13:14:29 +11:00
parent 22101eb50a
commit 23931c3778

View file

@ -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');