← Back to team overview

ayatana-commits team mailing list archive

[Branch ~indicator-applet-developers/indicator-me/trunk] Rev 131: Syntax error fix

 

------------------------------------------------------------
revno: 131
committer: Ken VanDine <ken.vandine@xxxxxxxxxxxxx>
branch nick: indicator-me
timestamp: Wed 2011-03-02 14:22:20 -0500
message:
  Syntax error fix
modified:
  src/indicator-me.c


--
lp:indicator-me
https://code.launchpad.net/~indicator-applet-developers/indicator-me/trunk

Your team ayatana-commits is subscribed to branch lp:indicator-me.
To unsubscribe from this branch go to https://code.launchpad.net/~indicator-applet-developers/indicator-me/trunk/+edit-subscription
=== modified file 'src/indicator-me.c'
--- src/indicator-me.c	2011-02-17 00:25:04 +0000
+++ src/indicator-me.c	2011-03-02 19:22:20 +0000
@@ -289,17 +289,17 @@
 	}
 
 	if (g_strcmp0(icon, "user-away") == 0) {
-		status_desc = _("Away"));
+		status_desc = _("Away");
 	} else if (g_strcmp0(icon, "user-invisible") == 0) {
-		status_desc = _("Invisible"));
+		status_desc = _("Invisible");
 	} else if (g_strcmp0(icon, "user-busy") == 0) {
-		status_desc = _("Busy"));
+		status_desc = _("Busy");
 	} else if (g_strcmp0(icon, "user-available") == 0) {
-		status_desc = _("Available"));
+		status_desc = _("Available");
 	} else if (g_strcmp0(icon, "user-indeterminate") == 0) {
-		status_desc = _("Unknown"));
+		status_desc = _("Unknown");
 	} else if (g_strcmp0(icon, "user-offline") == 0) {
-		status_desc = _("Offline"));
+		status_desc = _("Offline");
 	}
 
 	gchar *panel_icon = g_strconcat (icon, "-panel", NULL);