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:
parent
b9aaec6919
commit
d7cc85b1e1
@ -4596,9 +4596,14 @@ void AudacityProject::OnExportMIDI(){
|
|||||||
t = iter.Next();
|
t = iter.Next();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(numNoteTracksSelected != 1){
|
if(numNoteTracksSelected > 1) {
|
||||||
wxMessageBox(wxString::Format(wxT(
|
wxMessageBox(wxString::Format(_(
|
||||||
"Please select only one MIDI track at a time.")));
|
"Please select only one Note Track at a time.")));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if(numNoteTracksSelected < 1) {
|
||||||
|
wxMessageBox(wxString::Format(_(
|
||||||
|
"Please select a Note Track.")));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user