From 29eaa61699c9c5b217d2170586b301c54f034bdf Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Fri, 11 Jan 2013 11:44:59 +1300 Subject: Set useful values for accessible description --- src/indicator-bluetooth-service.vala | 2 ++ src/indicator-bluetooth.vala | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/indicator-bluetooth-service.vala b/src/indicator-bluetooth-service.vala index 7481df6..14dc090 100644 --- a/src/indicator-bluetooth-service.vala +++ b/src/indicator-bluetooth-service.vala @@ -193,9 +193,11 @@ public class BluetoothIndicator var enabled = state == GnomeBluetooth.KillswitchState.UNBLOCKED; bluetooth_service._icon_name = enabled ? "bluetooth-active" : "bluetooth-disabled"; + bluetooth_service._accessible_description = enabled ? _("Bluetooth: On") : _("Bluetooth: Off"); var builder = new VariantBuilder (VariantType.ARRAY); builder.add ("{sv}", "IconName", new Variant.string (bluetooth_service._icon_name)); + builder.add ("{sv}", "AccessibleDescription", new Variant.string (bluetooth_service._accessible_description)); try { var properties = new Variant ("(sa{sv}as)", "com.canonical.indicator.bluetooth.service", builder, null); diff --git a/src/indicator-bluetooth.vala b/src/indicator-bluetooth.vala index 87a26af..98a001e 100644 --- a/src/indicator-bluetooth.vala +++ b/src/indicator-bluetooth.vala @@ -15,7 +15,7 @@ public class BluetoothIndicator : Indicator.Object private Gtk.Image image; private DbusmenuGtk.Menu menu; private BluetoothService proxy; - private string accessible_description = "Bluetooth"; + private string accessible_description = "Bluetooth: On"; construct { -- cgit v1.2.3