summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/flood-tool.cpp
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/ui/tools/flood-tool.cpp
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/ui/tools/flood-tool.cpp')
-rw-r--r--src/ui/tools/flood-tool.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/tools/flood-tool.cpp b/src/ui/tools/flood-tool.cpp
index b01b8ad52..1801a0ea0 100644
--- a/src/ui/tools/flood-tool.cpp
+++ b/src/ui/tools/flood-tool.cpp
@@ -89,10 +89,10 @@ Glib::ustring ch_init[8] = {
const std::vector<Glib::ustring> FloodTool::channel_list( ch_init, ch_init+8 );
Glib::ustring gap_init[4] = {
- C_("Flood autogap", "None"),
- C_("Flood autogap", "Small"),
- C_("Flood autogap", "Medium"),
- C_("Flood autogap", "Large")
+ NC_("Flood autogap", "None"),
+ NC_("Flood autogap", "Small"),
+ NC_("Flood autogap", "Medium"),
+ NC_("Flood autogap", "Large")
};
const std::vector<Glib::ustring> FloodTool::gap_list( gap_init, gap_init+4 );