summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2011-02-03 18:40:17 +0000
committerJazzyNico <nicoduf@yahoo.fr>2011-02-03 18:40:17 +0000
commit5aae9964808fa5447f7574c592b7049012575cca (patch)
tree5aaba45afc860cad891f62f3758fedcdbce8ea1b /src
parentthe last 2geom files I could find missing, linking issues still exist (diff)
downloadinkscape-5aae9964808fa5447f7574c592b7049012575cca.tar.gz
inkscape-5aae9964808fa5447f7574c592b7049012575cca.zip
Translations. Context removed in filter-enums (context support too complex to be added here) and replaced with context in input and toolbox where needed. inkscape.pot and fr.po updated accordingly.
(bzr r10030)
Diffstat (limited to 'src')
-rw-r--r--src/filter-enums.cpp10
-rw-r--r--src/ui/dialog/input.cpp2
-rw-r--r--src/widgets/toolbox.cpp6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/filter-enums.cpp b/src/filter-enums.cpp
index 2f6d2f64b..315b242bf 100644
--- a/src/filter-enums.cpp
+++ b/src/filter-enums.cpp
@@ -48,11 +48,11 @@ const EnumDataConverter<FilterPrimitiveInput> FPInputConverter(FPInputData, FPIN
// feBlend
const EnumData<Inkscape::Filters::FilterBlendMode> BlendModeData[Inkscape::Filters::BLEND_ENDMODE] = {
- {Inkscape::Filters::BLEND_NORMAL, C_("Filter blend mode", "Normal"), "normal"},
- {Inkscape::Filters::BLEND_MULTIPLY, C_("Filter blend mode", "Multiply"), "multiply"},
- {Inkscape::Filters::BLEND_SCREEN, C_("Filter blend mode", "Screen"), "screen"},
- {Inkscape::Filters::BLEND_DARKEN, C_("Filter blend mode", "Darken"), "darken"},
- {Inkscape::Filters::BLEND_LIGHTEN, C_("Filter blend mode", "Lighten"), "lighten"}
+ {Inkscape::Filters::BLEND_NORMAL, _("Normal"), "normal"},
+ {Inkscape::Filters::BLEND_MULTIPLY, _("Multiply"), "multiply"},
+ {Inkscape::Filters::BLEND_SCREEN, _("Screen"), "screen"},
+ {Inkscape::Filters::BLEND_DARKEN, _("Darken"), "darken"},
+ {Inkscape::Filters::BLEND_LIGHTEN, _("Lighten"), "lighten"}
};
const EnumDataConverter<Inkscape::Filters::FilterBlendMode> BlendModeConverter(BlendModeData, Inkscape::Filters::BLEND_ENDMODE);
diff --git a/src/ui/dialog/input.cpp b/src/ui/dialog/input.cpp
index 34d55a440..6869aa97b 100644
--- a/src/ui/dialog/input.cpp
+++ b/src/ui/dialog/input.cpp
@@ -347,7 +347,7 @@ static std::map<Gdk::InputMode, Glib::ustring> &getModeToString()
static std::map<Gdk::InputMode, Glib::ustring> mapping;
if (mapping.empty()) {
mapping[Gdk::MODE_DISABLED] = _("Disabled");
- mapping[Gdk::MODE_SCREEN] = _("Screen");
+ mapping[Gdk::MODE_SCREEN] = C_("Input device", "Screen");
mapping[Gdk::MODE_WINDOW] = _("Window");
}
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index d9e72fe50..da919e42e 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -7671,7 +7671,7 @@ static void sp_text_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
/* Line height */
{
// Drop down menu
- gchar const* labels[] = {_("Smaller spacing"), 0, 0, 0, 0, _("Normal"), 0, 0, 0, 0, 0, _("Larger spacing")};
+ gchar const* labels[] = {_("Smaller spacing"), 0, 0, 0, 0, C_("Text tool", "Normal"), 0, 0, 0, 0, 0, _("Larger spacing")};
gdouble values[] = { 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1,2, 1.3, 1.4, 1.5, 2.0};
EgeAdjustmentAction *eact = create_adjustment_action(
@@ -7702,7 +7702,7 @@ static void sp_text_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
/* Word spacing */
{
// Drop down menu
- gchar const* labels[] = {_("Negative spacing"), 0, 0, 0, _("Normal"), 0, 0, 0, 0, 0, 0, 0, _("Positive spacing")};
+ gchar const* labels[] = {_("Negative spacing"), 0, 0, 0, C_("Text tool", "Normal"), 0, 0, 0, 0, 0, 0, 0, _("Positive spacing")};
gdouble values[] = {-2.0, -1.5, -1.0, -0.5, 0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 4.0, 5.0};
EgeAdjustmentAction *eact = create_adjustment_action(
@@ -7733,7 +7733,7 @@ static void sp_text_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
/* Letter spacing */
{
// Drop down menu
- gchar const* labels[] = {_("Negative spacing"), 0, 0, 0, _("Normal"), 0, 0, 0, 0, 0, 0, 0, _("Positive spacing")};
+ gchar const* labels[] = {_("Negative spacing"), 0, 0, 0, C_("Text tool", "Normal"), 0, 0, 0, 0, 0, 0, 0, _("Positive spacing")};
gdouble values[] = {-2.0, -1.5, -1.0, -0.5, 0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 4.0, 5.0};
EgeAdjustmentAction *eact = create_adjustment_action(