diff --git a/src/effects/BassTreble.cpp b/src/effects/BassTreble.cpp index e4af3da5f..fcc6604f5 100644 --- a/src/effects/BassTreble.cpp +++ b/src/effects/BassTreble.cpp @@ -215,7 +215,7 @@ void EffectBassTreble::PopulateOrExchange(ShuttleGui & S) // Bass control FloatingPointValidator vldBass(1, &mBass); vldBass.SetRange(MIN_Bass, MAX_Bass); - mBassT = S.Id(ID_Bass).AddTextBox(_("&Bass (dB):"), wxT(""), 10); + mBassT = S.Id(ID_Bass).AddTextBox(_("Ba&ss (dB):"), wxT(""), 10); mBassT->SetName(_("Bass (dB):")); mBassT->SetValidator(vldBass); @@ -258,7 +258,7 @@ void EffectBassTreble::PopulateOrExchange(ShuttleGui & S) S.StartMultiColumn(2, wxCENTER); { // Link checkbox - mLinkCheckBox = S.Id(ID_Link).AddCheckBox(_("Link Volume control to Tone controls"), + mLinkCheckBox = S.Id(ID_Link).AddCheckBox(_("&Link Volume control to Tone controls"), DEF_Link ? wxT("true") : wxT("false")); } S.EndMultiColumn(); diff --git a/src/effects/Phaser.cpp b/src/effects/Phaser.cpp index e8f759a68..20e237b53 100644 --- a/src/effects/Phaser.cpp +++ b/src/effects/Phaser.cpp @@ -244,7 +244,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) IntegerValidator vldStages(&mStages); vldStages.SetRange(MIN_Stages, MAX_Stages); - mStagesT = S.Id(ID_Stages).AddTextBox(_("Stages:"), wxT(""), 15); + mStagesT = S.Id(ID_Stages).AddTextBox(_("&Stages:"), wxT(""), 15); mStagesT->SetValidator(vldStages); S.SetStyle(wxSL_HORIZONTAL); @@ -255,7 +255,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) IntegerValidator vldDryWet(&mDryWet); vldDryWet.SetRange(MIN_DryWet, MAX_DryWet); - mDryWetT = S.Id(ID_DryWet).AddTextBox(_("Dry/Wet:"), wxT(""), 15); + mDryWetT = S.Id(ID_DryWet).AddTextBox(_("&Dry/Wet:"), wxT(""), 15); mDryWetT->SetValidator(vldDryWet); S.SetStyle(wxSL_HORIZONTAL); @@ -265,7 +265,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldFreq(5, &mFreq, NUM_VAL_ONE_TRAILING_ZERO); vldFreq.SetRange(MIN_Freq, MAX_Freq); - mFreqT = S.Id(ID_Freq).AddTextBox(_("LFO Frequency (Hz):"), wxT(""), 15); + mFreqT = S.Id(ID_Freq).AddTextBox(_("LFO Freq&uency (Hz):"), wxT(""), 15); mFreqT->SetValidator(vldFreq); S.SetStyle(wxSL_HORIZONTAL); @@ -275,7 +275,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldPhase(1, &mPhase); vldPhase.SetRange(MIN_Phase, MAX_Phase); - mPhaseT = S.Id(ID_Phase).AddTextBox(_("LFO Start Phase (deg.):"), wxT(""), 15); + mPhaseT = S.Id(ID_Phase).AddTextBox(_("LFO Sta&rt Phase (deg.):"), wxT(""), 15); mPhaseT->SetValidator(vldPhase); S.SetStyle(wxSL_HORIZONTAL); @@ -286,7 +286,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) IntegerValidator vldDepth(&mDepth); vldDepth.SetRange(MIN_Depth, MAX_Depth); - mDepthT = S.Id(ID_Depth).AddTextBox(_("Depth:"), wxT(""), 15); + mDepthT = S.Id(ID_Depth).AddTextBox(_("Dept&h:"), wxT(""), 15); mDepthT->SetValidator(vldDepth); S.SetStyle(wxSL_HORIZONTAL); @@ -296,7 +296,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) IntegerValidator vldFeedback(&mFeedback); vldFeedback.SetRange(MIN_Feedback, MAX_Feedback); - mFeedbackT = S.Id(ID_Feedback).AddTextBox(_("Feedback (%):"), wxT(""), 15); + mFeedbackT = S.Id(ID_Feedback).AddTextBox(_("Feedbac&k (%):"), wxT(""), 15); mFeedbackT->SetValidator(vldFeedback); S.SetStyle(wxSL_HORIZONTAL); @@ -307,7 +307,7 @@ void EffectPhaser::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldoutgain(1, &mOutGain); vldoutgain.SetRange(MIN_OutGain, MAX_OutGain); - mOutGainT = S.Id(ID_OutGain).AddTextBox(_("Output gain (dB):"), wxT(""), 12); + mOutGainT = S.Id(ID_OutGain).AddTextBox(_("&Output gain (dB):"), wxT(""), 12); mOutGainT->SetValidator(vldoutgain); S.SetStyle(wxSL_HORIZONTAL); diff --git a/src/effects/Wahwah.cpp b/src/effects/Wahwah.cpp index c60a548dd..73c27f29d 100644 --- a/src/effects/Wahwah.cpp +++ b/src/effects/Wahwah.cpp @@ -228,7 +228,7 @@ void EffectWahwah::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldfreq(5, &mFreq, NUM_VAL_ONE_TRAILING_ZERO); vldfreq.SetRange(MIN_Freq, MAX_Freq); - mFreqT = S.Id(ID_Freq).AddTextBox(_("LFO Frequency (Hz):"), wxT(""), 12); + mFreqT = S.Id(ID_Freq).AddTextBox(_("LFO Freq&uency (Hz):"), wxT(""), 12); mFreqT->SetValidator(vldfreq); S.SetStyle(wxSL_HORIZONTAL); @@ -238,7 +238,7 @@ void EffectWahwah::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldphase(1, &mPhase); vldphase.SetRange(MIN_Phase, MAX_Phase); - mPhaseT = S.Id(ID_Phase).AddTextBox(_("LFO Start Phase (deg.):"), wxT(""), 12); + mPhaseT = S.Id(ID_Phase).AddTextBox(_("LFO Sta&rt Phase (deg.):"), wxT(""), 12); mPhaseT->SetValidator(vldphase); S.SetStyle(wxSL_HORIZONTAL); @@ -249,7 +249,7 @@ void EffectWahwah::PopulateOrExchange(ShuttleGui & S) IntegerValidator vlddepth(&mDepth); vlddepth.SetRange(MIN_Depth, MAX_Depth); - mDepthT = S.Id(ID_Depth).AddTextBox(_("Depth (%):"), wxT(""), 12); + mDepthT = S.Id(ID_Depth).AddTextBox(_("Dept&h (%):"), wxT(""), 12); mDepthT->SetValidator(vlddepth); S.SetStyle(wxSL_HORIZONTAL); @@ -259,7 +259,7 @@ void EffectWahwah::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldres(1, &mRes); vldres.SetRange(MIN_Res, MAX_Res); - mResT = S.Id(ID_Res).AddTextBox(_("Resonance:"), wxT(""), 12); + mResT = S.Id(ID_Res).AddTextBox(_("Reso&nance:"), wxT(""), 12); mResT->SetValidator(vldres); S.SetStyle(wxSL_HORIZONTAL); @@ -269,7 +269,7 @@ void EffectWahwah::PopulateOrExchange(ShuttleGui & S) IntegerValidator vldfreqoffset(&mFreqOfs); vldfreqoffset.SetRange(MIN_FreqOfs, MAX_FreqOfs); - mFreqOfsT = S.Id(ID_FreqOfs).AddTextBox(_("Wah Frequency Offset (%):"), wxT(""), 12); + mFreqOfsT = S.Id(ID_FreqOfs).AddTextBox(_("Wah Frequency Offse&t (%):"), wxT(""), 12); mFreqOfsT->SetValidator(vldfreqoffset); S.SetStyle(wxSL_HORIZONTAL); @@ -279,7 +279,7 @@ void EffectWahwah::PopulateOrExchange(ShuttleGui & S) FloatingPointValidator vldoutgain(1, &mOutGain); vldoutgain.SetRange(MIN_OutGain, MAX_OutGain); - mOutGainT = S.Id(ID_OutGain).AddTextBox(_("Output gain (dB):"), wxT(""), 12); + mOutGainT = S.Id(ID_OutGain).AddTextBox(_("&Output gain (dB):"), wxT(""), 12); mOutGainT->SetValidator(vldoutgain); S.SetStyle(wxSL_HORIZONTAL);