From 705fc96208a5bdcfac18d328ed9b50d5f1ded8db Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Fri, 4 May 2018 10:22:04 +0100 Subject: [PATCH] Update export warnings Attempt to reduce confusion (as reported on the forum) re these messages. --- src/export/Export.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/export/Export.cpp b/src/export/Export.cpp index 554ea0f9b..a6c470118 100644 --- a/src/export/Export.cpp +++ b/src/export/Export.cpp @@ -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; }