From 3240a76756a3a60b58cf18b370103d351e4ea783 Mon Sep 17 00:00:00 2001 From: prokoudine Date: Wed, 31 Oct 2007 02:14:37 +0000 Subject: [PATCH] marked three messages from color gestures for translation --- src/ui/widget/selected-style.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 6db4cb45c..0d7f04d7d 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -1260,19 +1260,19 @@ RotateableSwatch::do_motion(double by, guint modifier) { } else if (modifier == 2) { // saturation sp_document_maybe_done (sp_desktop_document(parent->getDesktop()), undokey, - SP_VERB_DIALOG_FILL_STROKE, ("Adjust saturation")); + SP_VERB_DIALOG_FILL_STROKE, (_("Adjust saturation"))); double ch = hsl[1]; parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting saturation: was %.3g, now %.3g (diff %.3g); without modifiers to adjust hue, with Ctrl to adjust lightness"), ch - diff, ch, diff); } else if (modifier == 1) { // lightness sp_document_maybe_done (sp_desktop_document(parent->getDesktop()), undokey, - SP_VERB_DIALOG_FILL_STROKE, ("Adjust lightness")); + SP_VERB_DIALOG_FILL_STROKE, (_("Adjust lightness"))); double ch = hsl[2]; parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting lightness: was %.3g, now %.3g (diff %.3g); without modifiers to adjust hue, with Shift to adjust saturation"), ch - diff, ch, diff); } else { // hue sp_document_maybe_done (sp_desktop_document(parent->getDesktop()), undokey, - SP_VERB_DIALOG_FILL_STROKE, ("Adjust hue")); + SP_VERB_DIALOG_FILL_STROKE, (_("Adjust hue"))); double ch = hsl[0]; parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Ctrl to adjust lightness"), ch - diff, ch, diff); } -- 2.30.2