From 6f7b319d143c20f5f015a04f1f1a6c173217e588 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 5 Jan 2013 12:30:12 +0000 Subject: [PATCH] another plural fix from Mr Prokoudine. git-svn-id: svn://localhost/ardour2/branches/3.0@13783 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/plugin_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/plugin_ui.cc b/gtk2_ardour/plugin_ui.cc index c249510863..555ffe0b21 100644 --- a/gtk2_ardour/plugin_ui.cc +++ b/gtk2_ardour/plugin_ui.cc @@ -546,7 +546,7 @@ PlugUIBase::set_latency_label () string t; if (l < sr / 1000) { - t = string_compose (_("latency (%1 samples)"), l); + t = string_compose (P_("latency (%1 sample)", "latency (%1 samples)", l), l); } else { t = string_compose (_("latency (%1 ms)"), (float) l / ((float) sr / 1000.0f)); }