make reported latency translatable

git-svn-id: svn://localhost/ardour2/branches/3.0@13784 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2013-01-05 12:43:38 +00:00
parent 6f7b319d14
commit 84410e3e1e
1 changed files with 3 additions and 2 deletions

View File

@ -51,9 +51,10 @@ LatencyBarController::get_label (double&)
std::stringstream s;
if (nframes < (_latency_gui->sample_rate / 1000.0)) {
s << ((framepos_t) rint (nframes)) << " samples";
const framepos_t nf = (framepos_t) rint (nframes);
s << string_compose (P_("%1 sample", "%1 samples", nf), nf);
} else {
s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " msecs";
s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " ms";
}
return s.str ();