[gnome-shell] bluetooth: Replace "Not In Use" status string with "On"



commit 9c6e68f3e7de267da10c555bb6dc627a1d52acc6
Author: Bastien Nocera <hadess hadess net>
Date:   Wed Oct 12 07:33:21 2016 +0200

    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

 js/ui/status/bluetooth.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js
index 268e873..49955f7 100644
--- a/js/ui/status/bluetooth.js
+++ b/js/ui/status/bluetooth.js
@@ -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");
     },


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]