From 8ce618f650f0754f14c5116fa4307f671f86b268 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 22 Jul 2021 09:50:20 -0500 Subject: [PATCH] Prefer the term Ignorelist (Ign, in the plugin manager) over blacklist --- gtk2_ardour/plugin_manager_ui.cc | 2 +- gtk2_ardour/rc_option_editor.cc | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gtk2_ardour/plugin_manager_ui.cc b/gtk2_ardour/plugin_manager_ui.cc index b271fd8239..194c1500c1 100644 --- a/gtk2_ardour/plugin_manager_ui.cc +++ b/gtk2_ardour/plugin_manager_ui.cc @@ -108,7 +108,7 @@ PluginManagerUI::PluginManagerUI () } ci[] = { /* clang-format off */ {ALIGN_LEFT, false, _("Status"), _("Plugin Scan Result") }, - {ALIGN_CENTER, false, S_("Ignore|Ign"), _("Blacklist the plugin-set, ignore all plugins in a bundle.") }, + {ALIGN_CENTER, false, S_("Ignore|Ign"), _("Ignore this plugin (and others that are loaded in the same file)") }, {ALIGN_CENTER, false, S_("Favorite|Fav"), _("Add this plugin to to the favorite list") }, {ALIGN_CENTER, false, _("Hide"), _("Hide this plugin in the plugin-selector") }, {ALIGN_CENTER, false, _("Type"), _("Plugin standard") }, diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index cacdf13e52..eedb521ccb 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -1165,7 +1165,7 @@ public: _hscale.add_mark(3000, Gtk::POS_TOP, _("5 mins")); Gtkmm2ext::UI::instance()->set_tip(_hscale, - _("Specify the default timeout for plugin instantiation. Plugins that require more time to load will be blacklisted. A value of 0 disables the timeout.")); + _("Specify the default timeout for plugin instantiation. Plugins that require more time to load will be ignored. A value of 0 disables the timeout.")); } }; @@ -3760,7 +3760,7 @@ These settings will only take effect after %1 is restarted.\n\ add_option (_("Plugins/VST"), new RcActionButton (_("Clear"), sigc::mem_fun (*this, &RCOptionEditor::clear_vst2_blacklist), - _("VST 2 Blacklist:"))); + _("VST 2 Ignorelist:"))); #endif #endif @@ -3812,7 +3812,7 @@ These settings will only take effect after %1 is restarted.\n\ add_option (_("Plugins/VST"), new RcActionButton (_("Clear"), sigc::mem_fun (*this, &RCOptionEditor::clear_vst3_blacklist), - _("VST 3 Blacklist:"))); + _("VST 3 Ignorelist:"))); RcActionButton* vst3_path = new RcActionButton (_("Edit"), @@ -3877,7 +3877,7 @@ These settings will only take effect after %1 is restarted.\n\ add_option (_("Plugins/Audio Unit"), new RcActionButton (_("Clear"), sigc::mem_fun (*this, &RCOptionEditor::clear_au_blacklist), - _("AU Blacklist:"))); + _("AU Ignorelist:"))); #endif add_option (_("Plugins"), new OptionEditorHeading (_("LV1/LV2")));