From 75ab958ef95617bc83d6bb8cc8369fb440d620a1 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Fri, 28 Oct 2011 02:29:15 +0000 Subject: [PATCH] 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. --- src/DirManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DirManager.cpp b/src/DirManager.cpp index 7de37ce21..b744ba16b 100644 --- a/src/DirManager.cpp +++ b/src/DirManager.cpp @@ -1370,7 +1370,7 @@ int DirManager::ProjectFSCK(const bool bForceError, const bool bAutoRecoverMode) wxString msg = _("Project check read faulty Sequence tags."); const wxChar *buttons[] = {_("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}; wxLog::FlushActive(); // MultiDialog has "Show Log..." button, so make sure log is current. action = ShowMultiDialog(msg, _("Warning - Problems Reading Sequence Tags"), buttons); @@ -1421,7 +1421,7 @@ _("Project check of \"%s\" folder \ const wxChar *buttons[] = {_("Close project immediately with no changes"), _("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}; wxLog::FlushActive(); // MultiDialog has "Show Log..." button, so make sure log is current. action = ShowMultiDialog(msg, _("Warning - Missing Aliased File(s)"), buttons);