"Run plugins while recording" -> "Do not run plugins while recording"
[ardour.git] / libs / ardour / audiofilter.cc
index ab4728495f6f91fb6571d2cd625cab45b239b068..6145ef9c830a593487e67ca969a391a8853790c9 100644 (file)
@@ -41,7 +41,7 @@ AudioFilter::make_new_sources (AudioRegion& region, AudioRegion::SourceList& nsr
                string path = session.path_from_region_name (PBD::basename_nosuffix (names[i]), string (""));
 
                if (path.length() == 0) {
-                       error << compose (_("audiofilter: error creating name for new audio file based on %1"), region.name()) 
+                       error << string_compose (_("audiofilter: error creating name for new audio file based on %1"), region.name()) 
                              << endmsg;
                        return -1;
                }
@@ -51,7 +51,7 @@ AudioFilter::make_new_sources (AudioRegion& region, AudioRegion::SourceList& nsr
                } 
 
                catch (failed_constructor& err) {
-                       error << compose (_("audiofilter: error creating new audio file %1 (%2)"), path, strerror (errno)) << endmsg;
+                       error << string_compose (_("audiofilter: error creating new audio file %1 (%2)"), path, strerror (errno)) << endmsg;
                        return -1;
                }
        }