=== modified file 'src/applet-device-wifi.c' --- old/src/applet-device-wifi.c 2008-10-15 16:09:37 +0000 +++ new/src/applet-device-wifi.c 2009-03-05 17:58:01 +0000 @@ -1178,7 +1178,6 @@ { NMAGConfConnection *gconf_connection; NMAccessPoint *new = NULL; - char *msg; char *esc_ssid = NULL; new = update_active_ap (device, new_state, applet); @@ -1201,11 +1200,10 @@ nma_gconf_connection_save (gconf_connection); } - msg = g_strdup_printf (_("You are now connected to the wireless network '%s'."), - esc_ssid ? esc_ssid : _("(none)")); - applet_do_notify (applet, NOTIFY_URGENCY_LOW, _("Connection Established"), - msg, "nm-device-wireless", NULL, NULL, NULL, NULL); - g_free (msg); + applet_do_notify (applet, NOTIFY_URGENCY_LOW, + esc_ssid ? esc_ssid : _("(none)"), + _("Connection established"), + "nm-device-wireless", NULL, NULL, NULL, NULL); g_free (esc_ssid); }