1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

Bug 2075 - Change link to manual to Size_limits_for_WAV_files

This commit is contained in:
James Crook 2019-04-25 20:44:34 +01:00
parent 4e89d6b0fa
commit 410746b3d2

View File

@ -408,7 +408,7 @@ void ExportPCM::ReportTooBigError(wxWindow * pParent)
ShowErrorDialog(pParent, _("Error Exporting"),
_("You have attempted to Export a WAV file which would be greater than 4GB.\n"
"Audacity cannot do this, the Export was abandoned."),
wxT("Error_wav_too_big"));
wxT("Size_limits_for_WAV_files"));
// This alternative error dialog was to cover the possibility we could not
// compute the size in advance.
@ -416,7 +416,7 @@ void ExportPCM::ReportTooBigError(wxWindow * pParent)
ShowErrorDialog(pParent, _("Error Exporting"),
_("Your exported WAV file has been truncated as Audacity cannot export WAV\n"
"files bigger than 4GB."),
wxT("Error_wav_truncated"));
wxT("Size_limits_for_WAV_files"));
#endif
}