aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-09-16 10:07:29 -0500
committerTed Gould <ted@canonical.com>2009-09-16 10:07:29 -0500
commit45b7b2650216d6d19fc150a0fe2a242255755abb (patch)
tree46914294492ff8941e90dc1216f196296af94ca2
parent1773a7e4b565a2a34de54dd4a5fd3b4f86ed335f (diff)
parent35cc4970e77115c83c54bd6a4035a3af761cc0b1 (diff)
downloadayatana-indicator-session-45b7b2650216d6d19fc150a0fe2a242255755abb.tar.gz
ayatana-indicator-session-45b7b2650216d6d19fc150a0fe2a242255755abb.tar.bz2
ayatana-indicator-session-45b7b2650216d6d19fc150a0fe2a242255755abb.zip
Fixing more labels
-rw-r--r--debian/changelog6
-rw-r--r--src/status-service.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 65ec7c0..4213c70 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+indicator-session (0.1.3-0ubuntu2~ppa1~design2) UNRELEASED; urgency=low
+
+ * Fixing more labels
+
+ -- Ted Gould <ted@ubuntu.com> Wed, 16 Sep 2009 10:07:06 -0500
+
indicator-session (0.1.3-0ubuntu2~ppa1~design1) karmic; urgency=low
* Fixes for the design team.
diff --git a/src/status-service.c b/src/status-service.c
index 8ce7962..c7ef20b 100644
--- a/src/status-service.c
+++ b/src/status-service.c
@@ -95,8 +95,6 @@ status_update (void) {
if (global_status != oldglobal) {
g_debug("Global status changed to: %s", _(status_strings[global_status]));
- /* Set the status name on the menu item */
- dbusmenu_menuitem_property_set(status_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _(status_strings[global_status]));
/* Configure the icon on the panel */
status_service_dbus_set_status(dbus_interface, status_icons[global_status]);
@@ -191,7 +189,7 @@ build_menu (gpointer data)
build_user_item(root);
status_menuitem = dbusmenu_menuitem_new();
- dbusmenu_menuitem_property_set(status_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _(status_strings[global_status]));
+ dbusmenu_menuitem_property_set(status_menuitem, DBUSMENU_MENUITEM_PROP_LABEL, _("Set Status"));
dbusmenu_menuitem_child_append(root, status_menuitem);
StatusProviderStatus i;