1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 17:11:20 +01:00

Change wording: Now "Manage Plug-ins" and "Manage Macros" for those two dialogs.

This commit is contained in:
James Crook
2018-03-05 20:10:01 +00:00
parent 8b68864ddb
commit 4617b0b1a8
2 changed files with 5 additions and 5 deletions

View File

@@ -527,9 +527,9 @@ MacrosWindow::MacrosWindow(wxWindow * parent, bool bExpanded):
ApplyMacroDialog(parent, true)
{
mbExpanded = bExpanded;
SetLabel(_("Edit Macros")); // Provide visual label
SetName(_("Edit Macros")); // Provide audible label
SetTitle(_("Edit Macros"));
SetLabel(_("Manage Macros")); // Provide visual label
SetName(_("Manage Macros")); // Provide audible label
SetTitle(_("Manage Macros"));
mChanged = false;
mSelectedCommand = 0;
@@ -742,7 +742,7 @@ void MacrosWindow::UpdateDisplay( bool bExpanded )
SetPosition( p );
mResize->SetFocus();
wxString Title = mbExpanded ? _("Edit Macros") : _("Apply Macro");
wxString Title = mbExpanded ? _("Manage Macros") : _("Apply Macro");
SetLabel( Title ); // Provide visual label
SetName( Title ); // Provide audible label
SetTitle( Title );