From 9c6e68f3e7de267da10c555bb6dc627a1d52acc6 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Wed, 12 Oct 2016 07:33:21 +0200 Subject: [PATCH] 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js index 268e87303..49955f7d1 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"); },