summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2013-01-09 15:05:04 +0000
committerColin Fletcher <colin.m.fletcher@googlemail.com>2013-01-09 15:05:04 +0000
commit6ed562f182edf02434685e9af62921724a38370f (patch)
tree762779211db6c523440d96df0bbcac8ef6da507e /libs
parente51cc06133cd731b3ee26047987c21d0993b751f (diff)
A few more typo fixes in libardour.
git-svn-id: svn://localhost/ardour2/branches/3.0@13813 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/ladspa_plugin.cc4
-rw-r--r--libs/ardour/midi_diskstream.cc2
-rw-r--r--libs/ardour/rc_configuration.cc2
-rw-r--r--libs/ardour/session.cc2
4 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/ladspa_plugin.cc b/libs/ardour/ladspa_plugin.cc
index be3fefdaac..cebff59771 100644
--- a/libs/ardour/ladspa_plugin.cc
+++ b/libs/ardour/ladspa_plugin.cc
@@ -293,8 +293,8 @@ LadspaPlugin::set_parameter (uint32_t which, float val)
#endif
} else {
- warning << string_compose (_("illegal parameter number used with plugin \"%1\". This may"
- "indicate a change in the plugin design, and presets may be"
+ warning << string_compose (_("illegal parameter number used with plugin \"%1\". This may "
+ "indicate a change in the plugin design, and presets may be "
"invalid"), name())
<< endmsg;
}
diff --git a/libs/ardour/midi_diskstream.cc b/libs/ardour/midi_diskstream.cc
index c151b776c2..eb4aed91c6 100644
--- a/libs/ardour/midi_diskstream.cc
+++ b/libs/ardour/midi_diskstream.cc
@@ -212,7 +212,7 @@ MidiDiskstream::find_and_use_playlist (const string& name)
}
if (!playlist) {
- error << string_compose(_("MidiDiskstream: Playlist \"%1\" isn't an midi playlist"), name) << endmsg;
+ error << string_compose(_("MidiDiskstream: Playlist \"%1\" isn't a midi playlist"), name) << endmsg;
return -1;
}
diff --git a/libs/ardour/rc_configuration.cc b/libs/ardour/rc_configuration.cc
index 972f1f2fcb..8127267975 100644
--- a/libs/ardour/rc_configuration.cc
+++ b/libs/ardour/rc_configuration.cc
@@ -103,7 +103,7 @@ RCConfiguration::load_state ()
return -1;
}
} else {
- error << string_compose (_("your system %1 configuration file is empty. This probably means that there as an error installing %1"), PROGRAM_NAME) << endmsg;
+ error << string_compose (_("Your system %1 configuration file is empty. This probably means that there was an error installing %1"), PROGRAM_NAME) << endmsg;
}
}
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 78caf7abc4..a837a40e9c 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -1694,7 +1694,7 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, boost:
catch (AudioEngine::PortRegistrationFailure& pfe) {
- error << 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) << endmsg;
+ error << string_compose (_("No more JACK ports are available. You will need to stop %1 and restart JACK with more ports if you need this many tracks."), PROGRAM_NAME) << endmsg;
goto failed;
}