13
0

A few more typo fixes in libardour.

git-svn-id: svn://localhost/ardour2/branches/3.0@13813 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Colin Fletcher 2013-01-09 15:05:04 +00:00
parent e51cc06133
commit 6ed562f182
4 changed files with 5 additions and 5 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}
}

View File

@ -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;
}