From 841e0132e90f210b329ac5c5f023d8576b50021c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 23 Oct 2015 17:17:51 +0200 Subject: [PATCH] network: Improve labels for Bluetooth devices Bluetooth is not "Mobile Broadband", so rename the settings link accordingly. Also use a more assertive connect label. https://bugzilla.gnome.org/show_bug.cgi?id=757019 --- js/ui/status/network.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/status/network.js b/js/ui/status/network.js index 3ce228cd5..6f42aea06 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -621,7 +621,7 @@ const NMDeviceBluetooth = new Lang.Class({ _init: function(client, device, settings) { this.parent(client, device, settings); - this.item.menu.addMenuItem(createSettingsAction(_("Mobile Broadband Settings"), device)); + this.item.menu.addMenuItem(createSettingsAction(_("Bluetooth Settings"), device)); }, _getDescription: function() { @@ -629,7 +629,7 @@ const NMDeviceBluetooth = new Lang.Class({ }, getConnectLabel: function() { - return _("Use as Internet connection"); + return _("Connect to Internet"); }, getIndicatorIcon: function() {