mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-19 15:11:23 +01:00
Bug 858: Update recording error message too
Also remove redundant 'while' in the messages
This commit is contained in:
@@ -2667,7 +2667,7 @@ void Effect::Preview(bool dryOnly)
|
||||
}
|
||||
}
|
||||
else {
|
||||
wxMessageBox(_("Error while opening sound device. Try changing the audio host, playback device and the project sample rate."),
|
||||
wxMessageBox(_("Error opening sound device. Try changing the audio host, playback device and the project sample rate."),
|
||||
_("Error"), wxOK | wxICON_EXCLAMATION, FocusDialog);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -675,7 +675,7 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion,
|
||||
else {
|
||||
// msmeyer: Show error message if stream could not be opened
|
||||
wxMessageBox(
|
||||
_("Error while opening sound device. "
|
||||
_("Error opening sound device. "
|
||||
"Try changing the audio host, playback device and the project sample rate."),
|
||||
_("Error"), wxOK | wxICON_EXCLAMATION, this);
|
||||
}
|
||||
@@ -1089,7 +1089,7 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt)
|
||||
}
|
||||
|
||||
// msmeyer: Show error message if stream could not be opened
|
||||
wxMessageBox(_("Error while opening sound device. Please check the recording device settings and the project sample rate."),
|
||||
wxMessageBox(_("Error opening sound device. Try changing the audio host, recording device and the project sample rate"),
|
||||
_("Error"), wxOK | wxICON_EXCLAMATION, this);
|
||||
|
||||
SetPlay(false);
|
||||
|
||||
Reference in New Issue
Block a user