network-manager-applet r870 - trunk/src



Author: dcbw
Date: Wed Aug 27 16:57:51 2008
New Revision: 870
URL: http://svn.gnome.org/viewvc/network-manager-applet?rev=870&view=rev

Log:
Add tooltips for auth state

Modified:
   trunk/src/applet-device-cdma.c
   trunk/src/applet-device-gsm.c

Modified: trunk/src/applet-device-cdma.c
==============================================================================
--- trunk/src/applet-device-cdma.c	(original)
+++ trunk/src/applet-device-cdma.c	Wed Aug 27 16:57:51 2008
@@ -304,7 +304,10 @@
 		*tip = g_strdup_printf (_("Dialing CDMA device %s..."), iface);
 		break;
 	case NM_DEVICE_STATE_CONFIG:
-		*tip = g_strdup_printf (_("Running PPP on device %s..."), iface);
+		*tip = g_strdup_printf (_("Starting PPP on device %s..."), iface);
+		break;
+	case NM_DEVICE_STATE_NEED_AUTH:
+		*tip = g_strdup_printf (_("Waiting for user authentication on device '%s'..."), iface);
 		break;
 	case NM_DEVICE_STATE_ACTIVATED:
 		*tip = g_strdup (_("CDMA connection"));

Modified: trunk/src/applet-device-gsm.c
==============================================================================
--- trunk/src/applet-device-gsm.c	(original)
+++ trunk/src/applet-device-gsm.c	Wed Aug 27 16:57:51 2008
@@ -305,7 +305,10 @@
 		*tip = g_strdup_printf (_("Dialing GSM device %s..."), iface);
 		break;
 	case NM_DEVICE_STATE_CONFIG:
-		*tip = g_strdup_printf (_("Running PPP on device %s..."), iface);
+		*tip = g_strdup_printf (_("Starting PPP on device %s..."), iface);
+		break;
+	case NM_DEVICE_STATE_NEED_AUTH:
+		*tip = g_strdup_printf (_("Waiting for user authentication on device '%s'..."), iface);
 		break;
 	case NM_DEVICE_STATE_ACTIVATED:
 		*tip = g_strdup (_("GSM connection"));



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]