mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 14:20:06 +02:00
Clarify we are saving / loading a preset, not a program.
This commit is contained in:
parent
700f144e8a
commit
c7a82c3972
@ -1198,7 +1198,7 @@ void VSTEffectDialog::OnLoad(wxCommandEvent & WXUNUSED(event))
|
|||||||
wxString fn;
|
wxString fn;
|
||||||
|
|
||||||
// Ask the user for the real name
|
// Ask the user for the real name
|
||||||
fn = FileSelector(_("Load VST Program:"),
|
fn = FileSelector(_("Load VST Preset:"),
|
||||||
FileNames::DataDir(),
|
FileNames::DataDir(),
|
||||||
wxEmptyString,
|
wxEmptyString,
|
||||||
wxT("xml"),
|
wxT("xml"),
|
||||||
@ -1216,7 +1216,7 @@ void VSTEffectDialog::OnLoad(wxCommandEvent & WXUNUSED(event))
|
|||||||
if (!reader.Parse(this, fn)) {
|
if (!reader.Parse(this, fn)) {
|
||||||
// Inform user of load failure
|
// Inform user of load failure
|
||||||
wxMessageBox(reader.GetErrorStr(),
|
wxMessageBox(reader.GetErrorStr(),
|
||||||
_("Error Loading VST Program"),
|
_("Error Loading VST Preset"),
|
||||||
wxOK | wxCENTRE,
|
wxOK | wxCENTRE,
|
||||||
this);
|
this);
|
||||||
}
|
}
|
||||||
@ -1232,7 +1232,7 @@ void VSTEffectDialog::OnSave(wxCommandEvent & WXUNUSED(event))
|
|||||||
wxString fn;
|
wxString fn;
|
||||||
|
|
||||||
// Ask the user for the real name
|
// Ask the user for the real name
|
||||||
fn = FileSelector(_("Save VST Program As:"),
|
fn = FileSelector(_("Save VST Preset As:"),
|
||||||
FileNames::DataDir(),
|
FileNames::DataDir(),
|
||||||
mProgram->GetValue() + wxT(".xml"),
|
mProgram->GetValue() + wxT(".xml"),
|
||||||
wxT("xml"),
|
wxT("xml"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user