summaryrefslogtreecommitdiff
path: root/gtk2_ardour/stereo_panner.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-02-05 18:24:41 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-02-05 18:24:41 +0000
commita9c711d488e467e24c6f30c49e5fe464b0f4abf1 (patch)
tree4380f03c560f702c7233223e257e6f98fc93f858 /gtk2_ardour/stereo_panner.cc
parent241a9edd3eecf7d5062818ca391a2352500f9a01 (diff)
i18n fixes from alexandre
git-svn-id: svn://localhost/ardour2/branches/3.0@14051 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/stereo_panner.cc')
-rw-r--r--gtk2_ardour/stereo_panner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/stereo_panner.cc b/gtk2_ardour/stereo_panner.cc
index fca4377d1e..721567bf10 100644
--- a/gtk2_ardour/stereo_panner.cc
+++ b/gtk2_ardour/stereo_panner.cc
@@ -105,7 +105,7 @@ StereoPanner::set_tooltip ()
*/
char buf[64];
- snprintf (buf, sizeof (buf), "L:%3d R:%3d Width:%d%%", (int) rint (100.0 * (1.0 - pos)),
+ snprintf (buf, sizeof (buf), _("L:%3d R:%3d Width:%d%%"), (int) rint (100.0 * (1.0 - pos)),
(int) rint (100.0 * pos),
(int) floor (100.0 * width_control->get_value()));
_tooltip.set_tip (buf);