1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-21 16:11:11 +01:00

Simplify messages.

This commit is contained in:
v.audacity
2013-01-07 05:35:34 +00:00
parent 8d8e008b45
commit f73f03aff4
2 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ as a separate audio file.\n\nIf you have a Label Track, you can export a separat
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\nMuted tracks will not be exported.\n\nThis \
Project does not meet the above criteria for\nexporting multiple files."),
_("Cannot Export Multiple Files"),
_("Cannot Export"),
wxOK | wxCENTRE, this);
return wxID_CANCEL;
}
@@ -185,7 +185,7 @@ Project does not meet the above criteria for\nexporting multiple files."),
// Cannot export if all audio tracks are muted.
if (mNumWaveTracks == 0) {
::wxMessageBox(_("All the audio is muted."),
_("Cannot Export Multiple Files"),
_("Cannot Export"),
wxOK | wxCENTRE, this);
return wxID_CANCEL;
}