From 8640e18d1f11d1fa00fcf587b0eccd9de3d4ad56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B3nio=20Fernandes?= Date: Wed, 20 Feb 2013 18:43:13 +0000 Subject: [PATCH] backgroundMenu: Rename "System Settings" to "Settings" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- js/ui/backgroundMenu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/backgroundMenu.js b/js/ui/backgroundMenu.js index 806d89a2f..cc6c65397 100644 --- a/js/ui/backgroundMenu.js +++ b/js/ui/backgroundMenu.js @@ -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');