1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-15 15:50:54 +02:00

Clarify in "Can't export multiple files" warning that the Label Track containing labels must be directly underneath the audio track.

This commit is contained in:
windinthew 2010-09-25 07:45:56 +00:00
parent 48e04173b1
commit a267f86b2e

View File

@ -172,7 +172,9 @@ void ExportMultiple::CountTracksAndLabels()
int ExportMultiple::ShowModal()
{
if (mNumWaveTracks < 2 && mNumLabels < 1) {
::wxMessageBox(_("If you have more than one Audio Track, you can export each track as a separate file,\nor if you have a Label Track, you can export a new file for each label.\n\nThis project does not have multiple tracks or a Label Track, so you cannot export multiple files."),
::wxMessageBox(_("If you have more than one Audio Track, you can export\neach track as a separate file. \
If you have a Label Track\ndirectly underneath an Audio Track, you can export a\nnew file for each label in \
that track.\n\nThis Project does not meet the above criteria for\nexporting multiple files."),
_("Can't export multiple files"),
wxOK | wxCENTRE, this);
return wxID_CANCEL;