1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-28 22:28:44 +02:00

rewordings per Martyn's suggestions regarding test project for bug 451, where conversion from 1.2 format says save will make it permanent and irreversible, but DirManager::ProjectFSCK() was not making it clear when choices make a Save.

This commit is contained in:
v.audacity 2011-10-28 02:29:15 +00:00
parent 04d3e77632
commit 75ab958ef9

View File

@ -1370,7 +1370,7 @@ int DirManager::ProjectFSCK(const bool bForceError, const bool bAutoRecoverMode)
wxString msg = _("Project check read faulty Sequence tags."); wxString msg = _("Project check read faulty Sequence tags.");
const wxChar *buttons[] = const wxChar *buttons[] =
{_("Close project immediately with no changes"), {_("Close project immediately with no changes"),
_("Continue with repairs noted in log, and check for more errors"), _("Continue with repairs noted in log, and check for more errors. This will save the project in its current state, unless you opt out on further error checks."),
NULL}; NULL};
wxLog::FlushActive(); // MultiDialog has "Show Log..." button, so make sure log is current. wxLog::FlushActive(); // MultiDialog has "Show Log..." button, so make sure log is current.
action = ShowMultiDialog(msg, _("Warning - Problems Reading Sequence Tags"), buttons); action = ShowMultiDialog(msg, _("Warning - Problems Reading Sequence Tags"), buttons);
@ -1421,7 +1421,7 @@ _("Project check of \"%s\" folder \
const wxChar *buttons[] = const wxChar *buttons[] =
{_("Close project immediately with no changes"), {_("Close project immediately with no changes"),
_("Treat missing audio as silence (this session only)"), _("Treat missing audio as silence (this session only)"),
_("Replace missing audio with silence (permanent immediately)"), _("Replace missing audio with silence (permanent immediately). This will save the project in its current state."),
NULL}; NULL};
wxLog::FlushActive(); // MultiDialog has "Show Log..." button, so make sure log is current. wxLog::FlushActive(); // MultiDialog has "Show Log..." button, so make sure log is current.
action = ShowMultiDialog(msg, _("Warning - Missing Aliased File(s)"), buttons); action = ShowMultiDialog(msg, _("Warning - Missing Aliased File(s)"), buttons);