13
0

another plural fix from Mr Prokoudine.

git-svn-id: svn://localhost/ardour2/branches/3.0@13783 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2013-01-05 12:30:12 +00:00
parent 9a60d79c17
commit 6f7b319d14

View 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));
}