Fix indentation mistakenly included in user-visible string...

... Introduced at aa5ffe9

That commit made the same mistake in other places too, but those other places
have been fixed already.
This commit is contained in:
Paul Licameli 2019-12-17 14:10:15 -05:00
parent 826e50b366
commit 0338c3e0cc
1 changed files with 5 additions and 4 deletions

View File

@ -752,10 +752,11 @@ bool Exporter::GetFilename()
if (mFilename.GetFullPath() == aliasedFile.mFileName.GetFullPath() &&
!mFilename.FileExists()) {
// Warn and return to the dialog
AudacityMessageBox(_("You are attempting to overwrite an aliased file that is missing.\n\
The file cannot be written because the path is needed to restore the original audio to the project.\n\
Choose Help > Diagnostics > Check Dependencies to view the locations of all missing files.\n\
If you still wish to export, please choose a different filename or folder."));
AudacityMessageBox(_(
"You are attempting to overwrite an aliased file that is missing.\n\
The file cannot be written because the path is needed to restore the original audio to the project.\n\
Choose Help > Diagnostics > Check Dependencies to view the locations of all missing files.\n\
If you still wish to export, please choose a different filename or folder."));
overwritingMissingAliasFiles = true;
}
}