diff options
author | Ted Gould <ted@canonical.com> | 2009-09-14 20:13:17 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-14 20:13:17 -0500 |
commit | da34a798d7a04d063206af2c38fa7d2ac63e217d (patch) | |
tree | 2b7f7e8f7fe2be32ed24f61a262436a6ea6a5505 | |
parent | 82395ac94e6daaf020d0310602756007a6b89451 (diff) | |
download | ayatana-indicator-session-da34a798d7a04d063206af2c38fa7d2ac63e217d.tar.gz ayatana-indicator-session-da34a798d7a04d063206af2c38fa7d2ac63e217d.tar.bz2 ayatana-indicator-session-da34a798d7a04d063206af2c38fa7d2ac63e217d.zip |
Fixing shutdown text
-rw-r--r-- | src/session-service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/session-service.c b/src/session-service.c index 59a3a97..58eb4cf 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -258,9 +258,9 @@ create_items (DbusmenuMenuitem * root) { shutdown_mi = dbusmenu_menuitem_new(); if (supress_confirmations()) { - dbusmenu_menuitem_property_set(shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Shutdown")); + dbusmenu_menuitem_property_set(shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Shut Down")); } else { - dbusmenu_menuitem_property_set(shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Shutdown...")); + dbusmenu_menuitem_property_set(shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Shut Down...")); } dbusmenu_menuitem_child_append(root, shutdown_mi); g_signal_connect(G_OBJECT(shutdown_mi), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(show_dialog), "shutdown"); |