AlternativeStatusMenu: fix power off string

Make it "Power Off...", not "Power off...", so it's picked from
gnome-shell translations.
This commit is contained in:
Giovanni Campagna
2011-03-23 16:46:50 +01:00
parent a4d7a4eba4
commit 223e934ba9
@@ -97,7 +97,7 @@ function createSubMenu() {
this._upClient.connect('notify::can-hibernate', Lang.bind(this, updateSuspendOrHibernate, item));
updateSuspendOrHibernate.call(this, null, null, item);
item = new PopupMenu.PopupMenuItem(_("Power off..."));
item = new PopupMenu.PopupMenuItem(_("Power Off..."));
item.connect('activate', Lang.bind(this, function() {
this._session.ShutdownRemote();
}));