[network-manager-applet] applet: fix tooltip name for bond and bridge devices
- From: Jiřà Klimeš <jklimes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [network-manager-applet] applet: fix tooltip name for bond and bridge devices
- Date: Fri, 31 May 2013 19:23:53 +0000 (UTC)
commit fe39244adac0ab352a1a77e03a6062f9ab9abdc3
Author: Jiřà Klimeš <jklimes redhat com>
Date: Fri May 31 20:00:33 2013 +0200
applet: fix tooltip name for bond and bridge devices
src/applet-device-bond.c | 8 ++++----
src/applet-device-bridge.c | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/src/applet-device-bond.c b/src/applet-device-bond.c
index ac844b8..1e0aba8 100644
--- a/src/applet-device-bond.c
+++ b/src/applet-device-bond.c
@@ -111,20 +111,20 @@ bond_get_icon (NMDevice *device,
switch (state) {
case NM_DEVICE_STATE_PREPARE:
- *tip = g_strdup_printf (_("Preparing VLAN connection '%s'..."), id);
+ *tip = g_strdup_printf (_("Preparing bond connection '%s'..."), id);
break;
case NM_DEVICE_STATE_CONFIG:
- *tip = g_strdup_printf (_("Configuring VLAN connection '%s'..."), id);
+ *tip = g_strdup_printf (_("Configuring bond connection '%s'..."), id);
break;
case NM_DEVICE_STATE_NEED_AUTH:
- *tip = g_strdup_printf (_("User authentication required for VLAN connection '%s'..."), id);
+ *tip = g_strdup_printf (_("User authentication required for bond connection '%s'..."), id);
break;
case NM_DEVICE_STATE_IP_CONFIG:
*tip = g_strdup_printf (_("Requesting address for '%s'..."), id);
break;
case NM_DEVICE_STATE_ACTIVATED:
pixbuf = nma_icon_check_and_load ("nm-device-wired", &applet->ethernet_icon, applet);
- *tip = g_strdup_printf (_("VLAN connection '%s' active"), id);
+ *tip = g_strdup_printf (_("Bond connection '%s' active"), id);
break;
default:
break;
diff --git a/src/applet-device-bridge.c b/src/applet-device-bridge.c
index 008a794..a621b76 100644
--- a/src/applet-device-bridge.c
+++ b/src/applet-device-bridge.c
@@ -111,20 +111,20 @@ bridge_get_icon (NMDevice *device,
switch (state) {
case NM_DEVICE_STATE_PREPARE:
- *tip = g_strdup_printf (_("Preparing VLAN connection '%s'..."), id);
+ *tip = g_strdup_printf (_("Preparing bridge connection '%s'..."), id);
break;
case NM_DEVICE_STATE_CONFIG:
- *tip = g_strdup_printf (_("Configuring VLAN connection '%s'..."), id);
+ *tip = g_strdup_printf (_("Configuring bridge connection '%s'..."), id);
break;
case NM_DEVICE_STATE_NEED_AUTH:
- *tip = g_strdup_printf (_("User authentication required for VLAN connection '%s'..."), id);
+ *tip = g_strdup_printf (_("User authentication required for bridge connection '%s'..."), id);
break;
case NM_DEVICE_STATE_IP_CONFIG:
*tip = g_strdup_printf (_("Requesting address for '%s'..."), id);
break;
case NM_DEVICE_STATE_ACTIVATED:
pixbuf = nma_icon_check_and_load ("nm-device-wired", &applet->ethernet_icon, applet);
- *tip = g_strdup_printf (_("VLAN connection '%s' active"), id);
+ *tip = g_strdup_printf (_("Bridge connection '%s' active"), id);
break;
default:
break;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]