summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-02-10 02:44:44 +0000
committerCarl Hetherington <carl@carlh.net>2011-02-10 02:44:44 +0000
commit8ca49536e78b67c190036bcd17c0f26214ae36ff (patch)
tree01d01a558eb33e574ed19bb6bfe3817044a98844 /gtk2_ardour/processor_box.cc
parentd9770ba4ccac352fa2d16ff40c5e626e20fba32e (diff)
Tidy up weird plugin dialogue slightly.
git-svn-id: svn://localhost/ardour2/branches/3.0@8815 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/processor_box.cc')
-rw-r--r--gtk2_ardour/processor_box.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index 7dc2f4f25f..c5454d59aa 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -949,14 +949,14 @@ ProcessorBox::weird_plugin_dialog (Plugin& p, Route::ProcessorStreams streams)
text += _("\nThis plugin has:\n");
if (has_midi) {
uint32_t const n = p.get_info()->n_inputs.n_midi ();
- text += string_compose (ngettext ("\t%1 MIDI input", "\t%1 MIDI inputs", n), n);
+ text += string_compose (ngettext ("\t%1 MIDI input\n", "\t%1 MIDI inputs\n", n), n);
}
if (has_audio) {
uint32_t const n = p.get_info()->n_inputs.n_audio ();
- text += string_compose (ngettext ("\t%1 audio input", "\t%1 audio inputs", n), n);
+ text += string_compose (ngettext ("\t%1 audio input\n", "\t%1 audio inputs\n", n), n);
}
- text += _("\nBut at the insertion point, there are:\n");
+ text += _("\nbut at the insertion point, there are:\n");
if (has_midi) {
uint32_t const n = streams.count.n_midi ();
text += string_compose (ngettext ("\t%1 MIDI channel\n", "\t%1 MIDI channels\n", n), n);