diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-10-02 08:32:46 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-10-02 08:32:46 +0000 |
| commit | 50a19700fb02a712803aa3623f0920d562116534 (patch) | |
| tree | 43ec67467e6b06e1703b9d6c578dfc63d7866d54 /src/ui/widget/selected-style.cpp | |
| parent | Fixing inconsistencies in the PixelArt dialog. (diff) | |
| download | inkscape-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.cpp | 6 |
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")); |
