backgroundMenu: Rename "System Settings" to "Settings"

And reverse menu order in order to avoid it reading "Change Background… Settings"

"System Settings" shouldn't be used because it's not used to mean the control-center in any other place.

https://bugzilla.gnome.org/show_bug.cgi?id=694290
This commit is contained in:
António Fernandes 2013-02-20 18:43:13 +00:00 committed by Florian Müllner
parent 300c4d8432
commit 8640e18d1f

View File

@ -16,9 +16,9 @@ const BackgroundMenu = new Lang.Class({
_init: function(source) {
this.parent(source, 0, St.Side.TOP);
this.addSettingsAction(_("Change Background…"), 'gnome-background-panel.desktop');
this.addSettingsAction(_("Settings"), 'gnome-control-center.desktop');
this.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
this.addSettingsAction(_("System Settings"), 'gnome-control-center.desktop');
this.addSettingsAction(_("Change Background…"), 'gnome-background-panel.desktop');
this.actor.add_style_class_name('background-menu');