From 2433b3059f89cea9336b4f1a4fead44c65e8287d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 7 Jul 2021 19:40:47 +0200 Subject: [PATCH] Tweak missing plugin dialog wording --- gtk2_ardour/missing_plugin_dialog.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/missing_plugin_dialog.cc b/gtk2_ardour/missing_plugin_dialog.cc index ad47a1dda2..14925b2c24 100644 --- a/gtk2_ardour/missing_plugin_dialog.cc +++ b/gtk2_ardour/missing_plugin_dialog.cc @@ -45,14 +45,14 @@ MissingPluginDialog::MissingPluginDialog (Gtk::Window& parent, Session* s, list< for (list::const_iterator i = plugins.begin(); i != plugins.end(); ++i) { t << *i << "\n"; } - t << _("\nThose plugins will be replaced with inactive stubs.\n"); + t << _("\nThose plugins will be replaced with inactive stubs until the session is reloaded.\n"); if (cache_valid) { add_button (_("OK"), RESPONSE_OK); set_default_response (RESPONSE_OK); t << _("It is recommended that you install the missing plugins and re-load the session.\n"); } else { - t << _("Third party plugins have not yet been indexed.\n"); + t << _("Third party plugins have not yet been indexed.") << "\n"; t << string_compose (_("Scan %1 plugins now?"), #ifdef __APPLE__ _("AudioUnit and VST")