summaryrefslogtreecommitdiffstats
path: root/src/extension/extension.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2010-09-03 20:11:22 +0000
committerJazzyNico <nicoduf@yahoo.fr>2010-09-03 20:11:22 +0000
commit35af8bbed7989936e4733725c5239608bd9edc4c (patch)
treea21ffeba60e24d2c1463c490c6d4358485099e28 /src/extension/extension.cpp
parentExtension. Fix for bug #627372 :inkscape plugin not working (sys.argv[12] wro... (diff)
downloadinkscape-35af8bbed7989936e4733725c5239608bd9edc4c.tar.gz
inkscape-35af8bbed7989936e4733725c5239608bd9edc4c.zip
Extensions. Tooltips are now translatable (Bug #629726).
Fixed bugs: - https://launchpad.net/bugs/629726 (bzr r9738)
Diffstat (limited to 'src/extension/extension.cpp')
-rw-r--r--src/extension/extension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp
index b4cf06bda..3aed5a233 100644
--- a/src/extension/extension.cpp
+++ b/src/extension/extension.cpp
@@ -671,7 +671,7 @@ public:
if (widg == NULL) return;
this->pack_start(*widg, true, true, 2);
if (tooltip != NULL) {
- _tooltips.set_tip(*widg, Glib::ustring(tooltip));
+ _tooltips.set_tip(*widg, Glib::ustring(_(tooltip)));
}
return;
};