1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

Remove special treatment of late additions to 2.2.1 i18n messages

This commit is contained in:
Paul Licameli
2017-12-08 20:41:50 -05:00
parent cb363cdd99
commit a0fad21fec
2 changed files with 0 additions and 14 deletions

View File

@@ -32,16 +32,9 @@ wxString FileException::ErrorMessage() const
break;
case Cause::Write: {
auto lang = gPrefs->Read(wxT("/Locale/Language"), wxT(""));
if (lang.empty() || lang.Left(2) == wxT("en"))
// PRL: last-minute improved message for 2.2.0 RC1.
// It was too late to translate the new message, so improve it
// in English only.
// This message is more like that for failed save of a project.
format =
_("Audacity failed to write to a file.\n"
"Perhaps %s is not writable or the disk is full.");
else
format = _("Audacity failed to write to a file in %s.");
break;
}
case Cause::Rename: