From 63e89482fe8a4bc409a2991b73490a6dabd683fe Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Tue, 9 Nov 2010 14:38:30 -0500 Subject: [PATCH] Use Settings and not Preferences for sound menu To match the tool that it launches. --- js/ui/status/volume.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/volume.js b/js/ui/status/volume.js index 87e4bd153..09684e606 100644 --- a/js/ui/status/volume.js +++ b/js/ui/status/volume.js @@ -61,7 +61,7 @@ Indicator.prototype = { this.menu.addMenuItem(this._inputSlider); this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); - this.menu.addAction(_("Sound Preferences"), function() { + this.menu.addAction(_("Sound Settings"), function() { let p = new Shell.Process({ args: ['gnome-control-center', 'sound'] }); p.run(); });