another plural fix from Mr Prokoudine.
authorRobin Gareus <robin@gareus.org>
Sat, 5 Jan 2013 12:30:12 +0000 (12:30 +0000)
committerRobin Gareus <robin@gareus.org>
Sat, 5 Jan 2013 12:30:12 +0000 (12:30 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13783 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/plugin_ui.cc

index c2495108636f2361c4c13de049f73478a5440336..555ffe0b2190437573755744403981c5c91576bb 100644 (file)
@@ -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));
        }