summaryrefslogtreecommitdiff
path: root/gtk2_ardour/latency_gui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-01-05 12:43:38 +0000
committerRobin Gareus <robin@gareus.org>2013-01-05 12:43:38 +0000
commit84410e3e1e648a1477a7c941cfa2fd0c94d81057 (patch)
tree2aef4fb547fcea7980e0d85c1c4623168ce38472 /gtk2_ardour/latency_gui.cc
parent6f7b319d143c20f5f015a04f1f1a6c173217e588 (diff)
make reported latency translatable
git-svn-id: svn://localhost/ardour2/branches/3.0@13784 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/latency_gui.cc')
-rw-r--r--gtk2_ardour/latency_gui.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/latency_gui.cc b/gtk2_ardour/latency_gui.cc
index 180af93776..d8cf8d051e 100644
--- a/gtk2_ardour/latency_gui.cc
+++ b/gtk2_ardour/latency_gui.cc
@@ -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 ();