1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-08 16:37:44 +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"), ShowErrorDialog(pParent, _("Error Exporting"),
_("You have attempted to Export a WAV file which would be greater than 4GB.\n" _("You have attempted to Export a WAV file which would be greater than 4GB.\n"
"Audacity cannot do this, the Export was abandoned."), "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 // This alternative error dialog was to cover the possibility we could not
// compute the size in advance. // compute the size in advance.
@ -416,7 +416,7 @@ void ExportPCM::ReportTooBigError(wxWindow * pParent)
ShowErrorDialog(pParent, _("Error Exporting"), ShowErrorDialog(pParent, _("Error Exporting"),
_("Your exported WAV file has been truncated as Audacity cannot export WAV\n" _("Your exported WAV file has been truncated as Audacity cannot export WAV\n"
"files bigger than 4GB."), "files bigger than 4GB."),
wxT("Error_wav_truncated")); wxT("Size_limits_for_WAV_files"));
#endif #endif
} }