1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-18 17:10:55 +02:00

Bug 2128 - Residual: One update to error messages was missed.

This commit is contained in:
James Crook 2020-04-24 20:40:14 +01:00
parent 073890a19e
commit 075fb54bbb

View File

@ -304,11 +304,11 @@ void OnTimerRecord(const CommandContext &context)
const auto existingTracks{ ProjectAudioManager::ChooseExistingRecordingTracks(project, true, rateOfSelected) }; const auto existingTracks{ ProjectAudioManager::ChooseExistingRecordingTracks(project, true, rateOfSelected) };
if (existingTracks.empty()) { if (existingTracks.empty()) {
if (numberOfSelected > 0 && rateOfSelected != settings.GetRate()) { if (numberOfSelected > 0 && rateOfSelected != settings.GetRate()) {
AudacityMessageBox(XO("TRACK SELECTION PROBLEM:\n" AudacityMessageBox(XO(
"Not enough tracks are selected for recording on non-project rate.\n" "Too few tracks are selected for recording at this sample rate.\n"
"(keep in mind that Audacity doesn\'t allow " "(Audacity requires two channels at the same sample rate for\n"
"using only one channel of a stereo track)"), "each stereo track)"),
XO("Insufficient track selection"), XO("Too Few Compatible Tracks Selected"),
wxICON_ERROR | wxCENTRE); wxICON_ERROR | wxCENTRE);
return; return;