summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-01-04 16:49:21 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-01-04 16:49:21 +0000
commitb938923bad16bee58847503eed1d9045a0ada099 (patch)
tree742c2e0da5cee9c65aa8a7b00c917cdb460ea502 /gtk2_ardour
parent12bd87b6ccedd122394ceff894dd14e9f878d94f (diff)
use correct plural forms
git-svn-id: svn://localhost/ardour2/branches/3.0@13772 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/ardour_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 36e4baf671..ff65a683e0 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -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;
}
}