1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-21 23:00:06 +02:00

Fix "Can't export multiple files" warning as per -quality list 26 Sep 10 (export multiple works if the first label track is above the audio track).

Rename "Numbering after Label/Track Name" to "Numbering after File name prefix" which is what it actually does (else Manual doesn't make sense).
This commit is contained in:
windinthew 2011-01-01 11:51:24 +00:00
parent d6155a5227
commit 208398fdf4

View File

@ -172,9 +172,11 @@ void ExportMultiple::CountTracksAndLabels()
int ExportMultiple::ShowModal()
{
if (mNumWaveTracks < 2 && mNumLabels < 1) {
::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."),
::wxMessageBox(_("If you have more than one Audio Track, you can\nexport each track \
as a separate audio file.\n\nIf you have a Label Track, you can export a separate\naudio file \
for each label in that track. You can have\nmore than one Label Track, but files will only \
be\nexported for the uppermost Label 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;
@ -317,7 +319,7 @@ void ExportMultiple::PopulateOrExchange(ShuttleGui& S)
.TieRadioButton(_("Numbering before Label/Track Name"), wxT("numberBefore"));
mByNumber = S.Id(ByNumberID)
.TieRadioButton(_("Numbering after Label/Track Name"), wxT("numberAfter"));
.TieRadioButton(_("Numbering after File name prefix"), wxT("numberAfter"));
}
S.EndRadioButtonGroup();