diff options
author | Ted Gould <ted@canonical.com> | 2009-09-14 21:19:26 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-14 21:19:26 -0500 |
commit | 7315df65d4e77d6924c56ca03db1a971055b3c94 (patch) | |
tree | fff99128d25f45dcb7b3536862ee08fe6e81bac4 /src/session-service.c | |
parent | 319529314aabad11e0c630e65c0f1c5fc953e067 (diff) | |
parent | 0bae63fccf73ab48515dcc4374e37935088d6b42 (diff) | |
download | ayatana-indicator-session-7315df65d4e77d6924c56ca03db1a971055b3c94.tar.gz ayatana-indicator-session-7315df65d4e77d6924c56ca03db1a971055b3c94.tar.bz2 ayatana-indicator-session-7315df65d4e77d6924c56ca03db1a971055b3c94.zip |
Fixes for the design team.
Diffstat (limited to 'src/session-service.c')
-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"); |