1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Fix an untranslated string, change "Midi track" to "Note Track"

This commit is contained in:
Paul Licameli 2017-09-04 14:09:56 -04:00
parent b9aaec6919
commit d7cc85b1e1

View File

@ -4596,9 +4596,14 @@ void AudacityProject::OnExportMIDI(){
t = iter.Next();
}
if(numNoteTracksSelected != 1){
wxMessageBox(wxString::Format(wxT(
"Please select only one MIDI track at a time.")));
if(numNoteTracksSelected > 1) {
wxMessageBox(wxString::Format(_(
"Please select only one Note Track at a time.")));
return;
}
else if(numNoteTracksSelected < 1) {
wxMessageBox(wxString::Format(_(
"Please select a Note Track.")));
return;
}