aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-01-10 18:53:28 +0100
committerMarcel Holtmann <marcel@holtmann.org>2008-01-10 18:53:28 +0100
commita863a1d94569c6d503d0ae365a8cfc914be22c2b (patch)
treea410ca9571e3243db6b5cc429114ef9d78548a94
parentb955493d1c65a6cb482e3dd9800f3261c78ce18c (diff)
downloadconnman-gnome-a863a1d94569c6d503d0ae365a8cfc914be22c2b.tar.gz
Show the correct information when the Ethernet connection is active
-rw-r--r--properties/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/properties/main.c b/properties/main.c
index d1be1ec..606d715 100644
--- a/properties/main.c
+++ b/properties/main.c
@@ -48,7 +48,10 @@ static void update_status(struct config_data *data, guint type, guint state,
str = N_("Cable Connected");
break;
case CLIENT_STATE_READY:
- str = N_("Not Connected");
+ str = N_("Connected");
+ info = g_strdup_printf(_("%s is currently active "
+ "and has the IP address %s."),
+ N_("Ethernet"), address);
break;
default:
str = N_("Cable Unplugged");