summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/spin-slider.cpp
diff options
context:
space:
mode:
authorMarcin Floryan <mfloryan@mm.waw.pl>2008-04-12 23:22:47 +0000
committermfloryan <mfloryan@users.sourceforge.net>2008-04-12 23:22:47 +0000
commit28233a0b816fed22fa313c0689b3d2be6802ab9e (patch)
treec04e506170ec569f0858be6962550848ac2caf9a /src/ui/widget/spin-slider.cpp
parentMake gnome_canvas_bpath_def_closepath merge two nearly equal endpoints to pre... (diff)
downloadinkscape-28233a0b816fed22fa313c0689b3d2be6802ab9e.tar.gz
inkscape-28233a0b816fed22fa313c0689b3d2be6802ab9e.zip
Several different i18n issues fixed following report from a_b (adresses bug #215387, but still 2 more issues need to be fixed before it can be closed) and minor other issues fixed as spotted. Some changes could be ported to 0.46 branch.
(bzr r5412)
Diffstat (limited to 'src/ui/widget/spin-slider.cpp')
-rw-r--r--src/ui/widget/spin-slider.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/widget/spin-slider.cpp b/src/ui/widget/spin-slider.cpp
index c4c78dd85..b90895df8 100644
--- a/src/ui/widget/spin-slider.cpp
+++ b/src/ui/widget/spin-slider.cpp
@@ -114,7 +114,8 @@ DualSpinSlider::DualSpinSlider(double value, double lower, double upper, double
: AttrWidget(a),
_s1(value, lower, upper, step_inc, climb_rate, digits, SP_ATTR_INVALID, tip_text1),
_s2(value, lower, upper, step_inc, climb_rate, digits, SP_ATTR_INVALID, tip_text2),
- _link(_("Link"))
+ //TRANSLATORS: Only translate the word "Link" - means to _link_ two sliders together
+ _link(Q_("sliders|Link"))
{
signal_value_changed().connect(signal_attr_changed().make_slot());