summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-14 13:05:35 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-14 13:05:35 +0000
commita571b28dd4507aea892c04c9675ebe67359c8b39 (patch)
tree427c7e5e58e8b88caa5a9c221bbe17270b7e5cfc /gtk2_ardour/processor_box.cc
parentbb92cf3b2434fbeb547fb8df88ade0d1688ff823 (diff)
Fix some gettext plural forms. Should fix #3604.
git-svn-id: svn://localhost/ardour2/branches/3.0@8268 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/processor_box.cc')
-rw-r--r--gtk2_ardour/processor_box.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index bc5b78e28f..5db759ce85 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -767,18 +767,22 @@ ProcessorBox::weird_plugin_dialog (Plugin& p, Route::ProcessorStreams streams)
text += _("\nThis plugin has:\n");
if (has_midi) {
- text += string_compose("\t%1 ", p.get_info()->n_inputs.n_midi()) + _("MIDI input(s)\n");
+ 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);
}
if (has_audio) {
- text += string_compose("\t%1 ", p.get_info()->n_inputs.n_audio()) + _("audio input(s)\n");
+ 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 += _("\nBut at the insertion point, there are:\n");
if (has_midi) {
- text += string_compose("\t%1 ", streams.count.n_midi()) + _("MIDI channel(s)\n");
+ uint32_t const n = streams.count.n_midi ();
+ text += string_compose (ngettext ("\t%1 MIDI channel\n", "\t%1 MIDI channels\n", n), n);
}
if (has_audio) {
- text += string_compose("\t%1 ", streams.count.n_audio()) + _("audio channel(s)\n");
+ uint32_t const n = streams.count.n_audio ();
+ text += string_compose (ngettext ("\t%1 audio channel\n", "\t%1 audio channels\n", n), n);
}
text += string_compose (_("\n%1 is unable to insert this plugin here.\n"), PROGRAM_NAME);