1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 00:20:06 +02:00

Clarify we are saving / loading a preset, not a program.

This commit is contained in:
windinthew 2014-04-07 21:41:30 +00:00
parent 700f144e8a
commit c7a82c3972

View File

@ -1198,7 +1198,7 @@ void VSTEffectDialog::OnLoad(wxCommandEvent & WXUNUSED(event))
wxString fn;
// Ask the user for the real name
fn = FileSelector(_("Load VST Program:"),
fn = FileSelector(_("Load VST Preset:"),
FileNames::DataDir(),
wxEmptyString,
wxT("xml"),
@ -1216,7 +1216,7 @@ void VSTEffectDialog::OnLoad(wxCommandEvent & WXUNUSED(event))
if (!reader.Parse(this, fn)) {
// Inform user of load failure
wxMessageBox(reader.GetErrorStr(),
_("Error Loading VST Program"),
_("Error Loading VST Preset"),
wxOK | wxCENTRE,
this);
}
@ -1232,7 +1232,7 @@ void VSTEffectDialog::OnSave(wxCommandEvent & WXUNUSED(event))
wxString fn;
// Ask the user for the real name
fn = FileSelector(_("Save VST Program As:"),
fn = FileSelector(_("Save VST Preset As:"),
FileNames::DataDir(),
mProgram->GetValue() + wxT(".xml"),
wxT("xml"),