summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2016-12-24 06:59:17 +0000
committerJazzyNico <nicoduf@yahoo.fr>2016-12-24 06:59:17 +0000
commit7d524286a0b613a5a5126884f3fb4f674446096e (patch)
treef13f103420f7e3683abc11fa45f1e5a47b5dd62a /src/widgets
parent[Bug #1407331] Ukrainian translation update for 0.92. (diff)
downloadinkscape-7d524286a0b613a5a5126884f3fb4f674446096e.tar.gz
inkscape-7d524286a0b613a5a5126884f3fb4f674446096e.zip
i18n. Flood autogap list not correctly translated at runtime.
(bzr r15351)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/paintbucket-toolbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/paintbucket-toolbar.cpp b/src/widgets/paintbucket-toolbar.cpp
index 3d1565924..e2212b64f 100644
--- a/src/widgets/paintbucket-toolbar.cpp
+++ b/src/widgets/paintbucket-toolbar.cpp
@@ -192,7 +192,7 @@ void sp_paintbucket_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
iterator != gap_list.end(); ++iterator ) {
GtkTreeIter iter;
gtk_list_store_append( model, &iter );
- gtk_list_store_set( model, &iter, 0, _((*iterator).c_str()), 1, count, -1 );
+ gtk_list_store_set( model, &iter, 0, g_dpgettext2(NULL, "Flood autogap", (*iterator).c_str()), 1, count, -1 );
count++;
}
EgeSelectOneAction* act2 = ege_select_one_action_new( "AutoGapAction", _("Close gaps"), (""), NULL, GTK_TREE_MODEL(model) );