diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2010-09-03 20:11:22 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2010-09-03 20:11:22 +0000 |
| commit | 35af8bbed7989936e4733725c5239608bd9edc4c (patch) | |
| tree | a21ffeba60e24d2c1463c490c6d4358485099e28 /src/extension/extension.cpp | |
| parent | Extension. Fix for bug #627372 :inkscape plugin not working (sys.argv[12] wro... (diff) | |
| download | inkscape-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.cpp | 2 |
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; }; |
