summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-03-15 02:31:27 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-03-15 02:31:27 +0000
commit44f4b84551d36ef4103d09452768f5ba53e0002c (patch)
tree831b1ce8516b74a364196d181531079960fa42b1 /libs/ardour
parentb56ad64ee304c53063ddf67f0654ac10738efc68 (diff)
finalize PROGRAM_NAME change for ardour3
git-svn-id: svn://localhost/ardour2/branches/3.0@6759 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/audio_unit.cc6
-rw-r--r--libs/ardour/audioengine.cc2
-rw-r--r--libs/ardour/find_session.cc2
3 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/audio_unit.cc b/libs/ardour/audio_unit.cc
index 090dd49e88..4a63f66cf5 100644
--- a/libs/ardour/audio_unit.cc
+++ b/libs/ardour/audio_unit.cc
@@ -1080,7 +1080,7 @@ AUPlugin::set_state(const XMLNode& node)
return ret;
#else
if (!seen_set_state_message) {
- info << _("Restoring AudioUnit settings is not supported in this build of Ardour. Consider paying for a newer version")
+ info << string_compose (_("Restoring AudioUnit settings is not supported in this build of %1. Consider paying for a newer version", PROGRAM_NAME)
<< endmsg;
}
return 0;
@@ -1110,7 +1110,7 @@ AUPlugin::load_preset (const string& preset_label)
return ret;
#else
if (!seen_loading_message) {
- info << _("Loading AudioUnit presets is not supported in this build of Ardour. Consider paying for a newer version")
+ info << string_compose (_("Loading AudioUnit presets is not supported in this build of %1. Consider paying for a newer version", PROGRAM_NAME)
<< endmsg;
seen_loading_message = true;
}
@@ -1171,7 +1171,7 @@ AUPlugin::save_preset (string preset_name)
return ret;
#else
if (!seen_saving_message) {
- info << _("Saving AudioUnit presets is not supported in this build of Ardour. Consider paying for a newer version")
+ info << string_compose (_("Saving AudioUnit presets is not supported in this build of %1. Consider paying for a newer version"), PROGRAM_NAME)
<< endmsg;
seen_saving_message = true;
}
diff --git a/libs/ardour/audioengine.cc b/libs/ardour/audioengine.cc
index 3766f60b63..ba08e9f878 100644
--- a/libs/ardour/audioengine.cc
+++ b/libs/ardour/audioengine.cc
@@ -631,7 +631,7 @@ AudioEngine::port_registration_failure (const std::string& portname)
if (p) {
reason = string_compose (_("a port with the name \"%1\" already exists: check for duplicated track/bus names"), portname);
} else {
- reason = _("No more JACK ports are available. You will need to stop Ardour and restart JACK with ports if you need this many tracks.");
+ reason = string_compose (_("No more JACK ports are available. You will need to stop %1 and restart JACK with ports if you need this many tracks."), PROGRAM_NAME);
}
throw PortRegistrationFailure (string_compose (_("AudioEngine: cannot register port \"%1\": %2"), portname, reason).c_str());
diff --git a/libs/ardour/find_session.cc b/libs/ardour/find_session.cc
index a572a9a7a3..90a54b1390 100644
--- a/libs/ardour/find_session.cc
+++ b/libs/ardour/find_session.cc
@@ -104,7 +104,7 @@ ARDOUR::find_session (string str, string& path, string& snapshot, bool& isnew)
suffix = snapshot.find (statefile_suffix);
if (suffix == string::npos) {
- error << string_compose (_("%1 is not an Ardour snapshot file"), str) << endmsg;
+ error << string_compose (_("%1 is not a snapshot file"), str) << endmsg;
return -1;
}