mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
bluetooth: Replace "Not In Use" status string with "On"
If Bluetooth is on but there aren't connected devices, the status in the menu reads "Not in Use". This is potentially confusing: it's a negative statement, even though Bluetooth is on. It also sits uneasily (and looks even more confusing) next to the submenu item "Turn Off". Changing the string to "On" is better. https://bugzilla.gnome.org/show_bug.cgi?id=756432
This commit is contained in:
parent
70526a8025
commit
9c6e68f3e7
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ const Indicator = new Lang.Class({
|
|||
else if (nConnectedDevices == -1)
|
||||
this._item.label.text = _("Off");
|
||||
else
|
||||
this._item.label.text = _("Not In Use");
|
||||
this._item.label.text = _("On");
|
||||
|
||||
this._toggleItem.label.text = this._proxy.BluetoothAirplaneMode ? _("Turn On") : _("Turn Off");
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue