mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-02 23:00:32 +01:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user