[gnome-shell/eos3.8: 5/255] bluetooth: Use more descriptive on/off label



commit 9dd15a7e25612926b52fec779befd87b17a154ea
Author: Roddy Shuler <roddy endlessm com>
Date:   Fri Apr 27 01:22:09 2018 -0700

    bluetooth: Use more descriptive on/off label
    
    Many users don't know the bluetooth symbol, so it is helpful
    if the menu label includes the word "Bluetooth".
    
    https://phabricator.endlessm.com/T17492

 js/ui/status/bluetooth.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js
index 97a72bea89..77d095755b 100644
--- a/js/ui/status/bluetooth.js
+++ b/js/ui/status/bluetooth.js
@@ -131,9 +131,9 @@ class Indicator extends PanelMenu.SystemIndicator {
             /* Translators: this is the number of connected bluetooth devices */
             this._item.label.text = ngettext("%d Connected", "%d Connected", 
nConnectedDevices).format(nConnectedDevices);
         else if (isBluetoothOff)
-            this._item.label.text = _("Off");
+            this._item.label.text = _("Bluetooth Off");
         else
-            this._item.label.text = _("On");
+            this._item.label.text = _("Bluetooth On");
 
         this._toggleItem.label.text = isBluetoothOff ? _("Turn On") : _("Turn Off");
     }


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