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

Update export warnings

Attempt to reduce confusion (as reported on the forum) re these messages.
This commit is contained in:
Steve Daulton 2018-05-04 10:22:04 +01:00 committed by GitHub
parent 0d5fb01c97
commit 705fc96208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -785,14 +785,14 @@ bool Exporter::CheckMix()
if (exportedChannels == 1) {
if (ShowWarningDialog(mProject,
wxT("MixMono"),
_("Your tracks will be mixed down to a single mono channel in the exported file."),
_("Your tracks will be mixed down and exported as one mono file."),
true) == wxID_CANCEL)
return false;
}
else if (exportedChannels == 2) {
if (ShowWarningDialog(mProject,
wxT("MixStereo"),
_("Your tracks will be mixed down to two stereo channels in the exported file."),
_("Your tracks will be mixed down and exported as one stereo file."),
true) == wxID_CANCEL)
return false;
}