From: buliabyak Date: Thu, 25 Oct 2007 22:23:34 +0000 (+0000) Subject: punctuation X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=67b3de5ab2520aa51aa191e58d9cb5b8f111ddf0;p=inkscape.git punctuation --- diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 613fa977d..3c996f665 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -1263,13 +1263,13 @@ RotateableSwatch::do_motion(double by, guint modifier) { sp_document_maybe_done (sp_desktop_document(parent->getDesktop()), undokey, 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); + 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")); 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); + 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); } }