summaryrefslogtreecommitdiffstats
path: root/src/extension/effect.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2013-11-18 11:59:40 +0000
committerJazzyNico <nicoduf@yahoo.fr>2013-11-18 11:59:40 +0000
commit43762b687409942c663ed1ab327247f37ec226bc (patch)
tree8bfcc3063d091823e7ba165ea7f0c63634190196 /src/extension/effect.cpp
parentadhere to Python "convention" of using double underscore to indicate class pr... (diff)
downloadinkscape-43762b687409942c663ed1ab327247f37ec226bc.tar.gz
inkscape-43762b687409942c663ed1ab327247f37ec226bc.zip
i18n. Fix for Bug #1252229 (As for the verb name XXX (No preferences), XXX are not localized.).
Fixed bugs: - https://launchpad.net/bugs/1252229 (bzr r12820)
Diffstat (limited to 'src/extension/effect.cpp')
-rw-r--r--src/extension/effect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp
index 1575c2b10..3c8ee5844 100644
--- a/src/extension/effect.cpp
+++ b/src/extension/effect.cpp
@@ -38,7 +38,7 @@ Inkscape::XML::Node * Effect::_filters_list = NULL;
Effect::Effect (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp)
: Extension(in_repr, in_imp),
_id_noprefs(Glib::ustring(get_id()) + ".noprefs"),
- _name_noprefs(Glib::ustring(get_name()) + _(" (No preferences)")),
+ _name_noprefs(Glib::ustring(_(get_name())) + _(" (No preferences)")),
_verb(get_id(), get_name(), NULL, NULL, this, true),
_verb_nopref(_id_noprefs.c_str(), _name_noprefs.c_str(), NULL, NULL, this, false),
_menu_node(NULL), _workingDialog(true),