mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-12 23:56:33 +01: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:
@@ -172,9 +172,11 @@ void ExportMultiple::CountTracksAndLabels()
|
|||||||
int ExportMultiple::ShowModal()
|
int ExportMultiple::ShowModal()
|
||||||
{
|
{
|
||||||
if (mNumWaveTracks < 2 && mNumLabels < 1) {
|
if (mNumWaveTracks < 2 && mNumLabels < 1) {
|
||||||
::wxMessageBox(_("If you have more than one Audio Track, you can export\neach track as a separate file. \
|
::wxMessageBox(_("If you have more than one Audio Track, you can\nexport each track \
|
||||||
If you have a Label Track\ndirectly underneath an Audio Track, you can export a\nnew file for each label in \
|
as a separate audio file.\n\nIf you have a Label Track, you can export a separate\naudio file \
|
||||||
that track.\n\nThis Project does not meet the above criteria for\nexporting multiple files."),
|
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"),
|
_("Can't export multiple files"),
|
||||||
wxOK | wxCENTRE, this);
|
wxOK | wxCENTRE, this);
|
||||||
return wxID_CANCEL;
|
return wxID_CANCEL;
|
||||||
@@ -317,7 +319,7 @@ void ExportMultiple::PopulateOrExchange(ShuttleGui& S)
|
|||||||
.TieRadioButton(_("Numbering before Label/Track Name"), wxT("numberBefore"));
|
.TieRadioButton(_("Numbering before Label/Track Name"), wxT("numberBefore"));
|
||||||
|
|
||||||
mByNumber = S.Id(ByNumberID)
|
mByNumber = S.Id(ByNumberID)
|
||||||
.TieRadioButton(_("Numbering after Label/Track Name"), wxT("numberAfter"));
|
.TieRadioButton(_("Numbering after File name prefix"), wxT("numberAfter"));
|
||||||
}
|
}
|
||||||
S.EndRadioButtonGroup();
|
S.EndRadioButtonGroup();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user