From de0eaad53addcf0ee4845d87406187a34dea09f7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 2 Apr 2015 14:18:58 -0400 Subject: [PATCH] use plural form for menu item --- gtk2_ardour/automation_controller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/automation_controller.cc b/gtk2_ardour/automation_controller.cc index 30ff656314..e1e16a7848 100644 --- a/gtk2_ardour/automation_controller.cc +++ b/gtk2_ardour/automation_controller.cc @@ -304,7 +304,7 @@ AutomationController::on_button_release(GdkEventButton* ev) } if (is_low) { for (int beats = 1; beats <= 16; ++beats) { - items.push_back(MenuElem(string_compose(_("Set to %1 beat(s)"), (int)beats), + items.push_back(MenuElem (string_compose(P_("Set to %1 beat", "Set to %1 beats", beats), beats), sigc::bind(sigc::mem_fun(*this, &AutomationController::set_freq_beats), (double)beats))); }