summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2016-11-08 07:03:44 +0000
committerJazzyNico <nicoduf@yahoo.fr>2016-11-08 07:03:44 +0000
commitc15e983de7f73151670a16162d57030ac3cf429c (patch)
tree51a8df9d9d9e1d541ec56acf7da62eda548e5f09 /src
parentreproducible builds (diff)
downloadinkscape-c15e983de7f73151670a16162d57030ac3cf429c.tar.gz
inkscape-c15e983de7f73151670a16162d57030ac3cf429c.zip
[Bug #262341] Tooltips for LPE tool modes do not show up as translated.
Fixed bugs: - https://launchpad.net/bugs/262341 (bzr r15225)
Diffstat (limited to 'src')
-rw-r--r--src/widgets/lpe-toolbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/lpe-toolbar.cpp b/src/widgets/lpe-toolbar.cpp
index 5df5fde70..c714aba10 100644
--- a/src/widgets/lpe-toolbar.cpp
+++ b/src/widgets/lpe-toolbar.cpp
@@ -302,7 +302,7 @@ void sp_lpetool_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GO
gtk_list_store_append( model, &iter );
gtk_list_store_set( model, &iter,
0, Inkscape::LivePathEffect::LPETypeConverter.get_label(type).c_str(),
- 1, Inkscape::LivePathEffect::LPETypeConverter.get_label(type).c_str(),
+ 1, _(Inkscape::LivePathEffect::LPETypeConverter.get_label(type).c_str()),
2, lpesubtools[i].icon_name,
-1 );
}