Bug 858: Update recording error message too

Also remove redundant 'while' in the messages
This commit is contained in:
windinthew 2016-07-27 16:48:30 +01:00
parent 8f016b0c1c
commit e24d6d825f
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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);