aboutsummaryrefslogtreecommitdiff
path: root/src/gtk-dialog/gconf-helper.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-03-03 12:05:28 -0600
committerTed Gould <ted@gould.cx>2010-03-03 12:05:28 -0600
commitfe25b2a8139d0c92a30440ba20862199a04f0f9c (patch)
tree25e496524feb992593e0da16d62570d038347970 /src/gtk-dialog/gconf-helper.c
parente07cdb88407dc186d7cdb236e410b6ae9c4fc3f8 (diff)
downloadayatana-indicator-session-fe25b2a8139d0c92a30440ba20862199a04f0f9c.tar.gz
ayatana-indicator-session-fe25b2a8139d0c92a30440ba20862199a04f0f9c.tar.bz2
ayatana-indicator-session-fe25b2a8139d0c92a30440ba20862199a04f0f9c.zip
Changing shutdowns to switch offs
Diffstat (limited to 'src/gtk-dialog/gconf-helper.c')
-rw-r--r--src/gtk-dialog/gconf-helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtk-dialog/gconf-helper.c b/src/gtk-dialog/gconf-helper.c
index 213592e..9262b19 100644
--- a/src/gtk-dialog/gconf-helper.c
+++ b/src/gtk-dialog/gconf-helper.c
@@ -51,11 +51,11 @@ static void update_menu_entries_callback (GConfClient *client, guint cnxn_id, GC
if (gconf_value_get_bool (value)) {
dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->logout_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Log Out"));
dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->restart_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Restart"));
- dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Shutdown"));
+ dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Switch Off"));
} else {
dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->logout_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Log Out..."));
dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->restart_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Restart..."));
- dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Shutdown..."));
+ dbusmenu_menuitem_property_set(restart_shutdown_logout_mi->shutdown_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Switch Off..."));
}
}
}