1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-20 14:47:49 +02:00

Bug 1234 - Enh: Name of Mixer Toolbar options/preferences

This commit is contained in:
James Crook 2016-07-15 10:18:19 +01:00
parent 1a478104e6
commit e056c23879

View File

@ -722,7 +722,7 @@ void Meter::OnMouse(wxMouseEvent &evt)
mi->Enable(!mActive || mMonitoring); mi->Enable(!mActive || mMonitoring);
} }
menu.Append(OnPreferencesID, _("Preferences...")); menu.Append(OnPreferencesID, _("Options..."));
if (evt.RightDown()) { if (evt.RightDown()) {
ShowMenu(evt.GetPosition()); ShowMenu(evt.GetPosition());
@ -1904,7 +1904,7 @@ void Meter::ShowMenu(const wxPoint & pos)
mi->Enable(!mActive || mMonitoring); mi->Enable(!mActive || mMonitoring);
} }
menu.Append(OnPreferencesID, _("Preferences...")); menu.Append(OnPreferencesID, _("Options..."));
mAccSilent = true; // temporarily make screen readers say (close to) nothing on focus events mAccSilent = true; // temporarily make screen readers say (close to) nothing on focus events
@ -1949,7 +1949,7 @@ void Meter::OnPreferences(wxCommandEvent & WXUNUSED(event))
wxRadioButton *vertical; wxRadioButton *vertical;
int meterRefreshRate = mMeterRefreshRate; int meterRefreshRate = mMeterRefreshRate;
wxString title(mIsInput ? _("Recording Meter Preferences") : _("Playback Meter Preferences")); wxString title(mIsInput ? _("Recording Meter Options") : _("Playback Meter Options"));
// Dialog is a child of the project, rather than of the toolbar. // Dialog is a child of the project, rather than of the toolbar.
// This determines where it pops up. // This determines where it pops up.