summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-17 14:44:22 +0100
committerRobin Gareus <robin@gareus.org>2016-02-17 14:44:22 +0100
commit90efd9f0100d191668b8e320664768499ade88df (patch)
treec2b06ae5995400d359efb5ce1194d780dd7f954e
parent9c5bdc6cf5cc6710bb5a81c0fe3010035a399d38 (diff)
translatable missing plugin message
-rw-r--r--gtk2_ardour/missing_plugin_dialog.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/missing_plugin_dialog.cc b/gtk2_ardour/missing_plugin_dialog.cc
index b40b09bf3c..1e216c349f 100644
--- a/gtk2_ardour/missing_plugin_dialog.cc
+++ b/gtk2_ardour/missing_plugin_dialog.cc
@@ -39,15 +39,15 @@ MissingPluginDialog::MissingPluginDialog (Session * s, list<string> const & plug
Label* m = manage (new Label);
stringstream t;
- t << "This session contains the following plugins that cannot be found on this system:\n\n";
+ t << _("This session contains the following plugins that cannot be found on this system:\n\n");
for (list<string>::const_iterator i = plugins.begin(); i != plugins.end(); ++i) {
t << *i << "\n";
}
- t << "\nThose plugins will be replaced with inactive stubs.\n";
- t << "It is recommended that you install the missing plugins and re-load the session.\n";
- t << "(also check the blacklist, Window > Log and Preferences > Plugins)\n";
+ t << _("\nThose plugins will be replaced with inactive stubs.\n"
+ "It is recommended that you install the missing plugins and re-load the session.\n"
+ "(also check the blacklist, Window > Log and Preferences > Plugins)");
m->set_markup (t.str ());
get_vbox()->pack_start (*m, false, false);