summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/automation_controller.cc2
1 files changed, 1 insertions, 1 deletions
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)));
}