summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/selected-style.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2014-10-02 08:32:46 +0000
committerJazzyNico <nicoduf@yahoo.fr>2014-10-02 08:32:46 +0000
commit50a19700fb02a712803aa3623f0920d562116534 (patch)
tree43ec67467e6b06e1703b9d6c578dfc63d7866d54 /src/ui/widget/selected-style.cpp
parentFixing inconsistencies in the PixelArt dialog. (diff)
downloadinkscape-50a19700fb02a712803aa3623f0920d562116534.tar.gz
inkscape-50a19700fb02a712803aa3623f0920d562116534.zip
i18n. Fix for Bug #380522 (strings that need to be fixed for translation).
Translations. Inkscape.pot and French translation update. Fixed bugs: - https://launchpad.net/bugs/380522 (bzr r13576)
Diffstat (limited to 'src/ui/widget/selected-style.cpp')
-rw-r--r--src/ui/widget/selected-style.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp
index 042a6614e..f01366e19 100644
--- a/src/ui/widget/selected-style.cpp
+++ b/src/ui/widget/selected-style.cpp
@@ -179,7 +179,11 @@ SelectedStyle::SelectedStyle(bool /*layout*/)
_na[i].show_all();
__na[i] = (_("Nothing selected"));
- _none[i].set_markup (C_("Fill and stroke", "<i>None</i>"));
+ if (i == SS_FILL) {
+ _none[i].set_markup (C_("Fill", "<i>None</i>"));
+ } else {
+ _none[i].set_markup (C_("Stroke", "<i>None</i>"));
+ }
sp_set_font_size_smaller (GTK_WIDGET(_none[i].gobj()));
_none[i].show_all();
__none[i] = (i == SS_FILL)? (C_("Fill and stroke", "No fill")) : (C_("Fill and stroke", "No stroke"));