From a267f86b2e50f97be9711ba100b6ade844470931 Mon Sep 17 00:00:00 2001 From: windinthew Date: Sat, 25 Sep 2010 07:45:56 +0000 Subject: [PATCH] Clarify in "Can't export multiple files" warning that the Label Track containing labels must be directly underneath the audio track. --- src/export/ExportMultiple.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/export/ExportMultiple.cpp b/src/export/ExportMultiple.cpp index dc8b22d04..e9e628002 100644 --- a/src/export/ExportMultiple.cpp +++ b/src/export/ExportMultiple.cpp @@ -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;