Code

* Localization for menubar tooltips, patch by Marcin Floryan (closes: #169103)
authorluca_bruno <luca_bruno@users.sourceforge.net>
Sun, 10 Feb 2008 08:53:45 +0000 (08:53 +0000)
committerluca_bruno <luca_bruno@users.sourceforge.net>
Sun, 10 Feb 2008 08:53:45 +0000 (08:53 +0000)
src/widgets/toolbox.cpp

index eb4b404e8f1a0f066a328ced7f899790ead4e093..bee1d0a83dc0d3ca7640bf842602a2eda333f681 100644 (file)
@@ -506,7 +506,7 @@ static GtkAction* create_action_for_verb( Inkscape::Verb* verb, Inkscape::UI::Vi
     GtkAction* act = 0;
 
     SPAction* targetAction = verb->get_action(view);
-    InkAction* inky = ink_action_new( verb->get_id(), verb->get_name(), verb->get_tip(), verb->get_image(), size  );
+    InkAction* inky = ink_action_new( verb->get_id(), verb->get_name(), _(verb->get_tip()), verb->get_image(), size  );
     act = GTK_ACTION(inky);
     gtk_action_set_sensitive( act, targetAction->sensitive );