13
0

use correct plural forms

git-svn-id: svn://localhost/ardour2/branches/3.0@13772 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-01-04 16:49:21 +00:00
parent 12bd87b6cc
commit b938923bad

View File

@ -1436,7 +1436,7 @@ ARDOUR_UI::session_add_audio_route (
tracks = _session->new_audio_track (input_channels, output_channels, mode, route_group, how_many, name_template);
if (tracks.size() != how_many) {
error << string_compose (P_("could not create new audio track", "could not create %1 new audio tracks", how_many), how_many)
error << string_compose (P_("could not create %1 new audio track", "could not create %1 new audio tracks", how_many), how_many)
<< endmsg;
}
@ -1445,7 +1445,7 @@ ARDOUR_UI::session_add_audio_route (
routes = _session->new_audio_route (input_channels, output_channels, route_group, how_many, name_template);
if (routes.size() != how_many) {
error << string_compose (P_("could not create new audio bus", "could not create %1 new audio busses", how_many), how_many)
error << string_compose (P_("could not create %1 new audio bus", "could not create %1 new audio busses", how_many), how_many)
<< endmsg;
}
}