From e236c2ab0f5c31f2a7de70b8a8336193c43584ef Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 4 Mar 2021 22:09:17 +0100 Subject: [PATCH] s/Plugin Manager/Plugin Selector/ The GUI allows to select and add plugins. Managing plugins will be something different. --- gtk2_ardour/plugin_selector.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc index bb40174718..7577454682 100644 --- a/gtk2_ardour/plugin_selector.cc +++ b/gtk2_ardour/plugin_selector.cc @@ -70,7 +70,7 @@ using namespace ARDOUR_PLUGIN_UTILS; static const uint32_t MAX_CREATOR_LEN = 24; PluginSelector::PluginSelector (PluginManager& mgr) - : ArdourDialog (_("Plugin Manager"), true, false) + : ArdourDialog (_("Plugin Selector"), true, false) , search_clear_button (Stock::CLEAR) , manager (mgr) , _need_tag_save (false) @@ -967,7 +967,7 @@ PluginSelector::build_plugin_menu () Gtk::Menu* favs = create_favs_menu(all_plugs); items.push_back (MenuElem (_("Favorites"), *manage (favs))); - items.push_back (MenuElem (_("Plugin Manager..."), sigc::mem_fun (*this, &PluginSelector::show_manager))); + items.push_back (MenuElem (_("Plugin Selector..."), sigc::mem_fun (*this, &PluginSelector::show_manager))); items.push_back (SeparatorElem ()); Menu* charts = create_charts_menu(all_plugs);