Code

naming: avoid unintentional double-meanings (part 2)
authormental <mental@users.sourceforge.net>
Sun, 19 Aug 2007 03:53:09 +0000 (03:53 +0000)
committermental <mental@users.sourceforge.net>
Sun, 19 Aug 2007 03:53:09 +0000 (03:53 +0000)
src/tweak-context.cpp
src/verbs.cpp
src/widgets/toolbox.cpp

index 677bfe8a3165c05c2ebf1907b2e9950e1c993a87..253f9af7d5702de1728df566e71d714220fe3599 100644 (file)
@@ -540,7 +540,7 @@ sp_tweak_context_root_handler(SPEventContext *event_context,
                            break;
                         case TWEAK_MODE_INFLATE:
                            tc->_message_context->setF(Inkscape::NORMAL_MESSAGE,
-                                                      _("<b>Blowing %d</b> selected object(s)"), num);
+                                                      _("<b>Inflating %d</b> selected object(s)"), num);
                            break;
                         case TWEAK_MODE_ROUGHEN:
                            tc->_message_context->setF(Inkscape::NORMAL_MESSAGE,
@@ -582,7 +582,7 @@ sp_tweak_context_root_handler(SPEventContext *event_context,
             tc->has_dilated = false;
             sp_document_done(sp_desktop_document(SP_EVENT_CONTEXT(tc)->desktop), 
                          SP_VERB_CONTEXT_TWEAK,
-                             (tc->mode==TWEAK_MODE_INFLATE ? _("Blow tweak") : (tc->mode==TWEAK_MODE_MELT ? _("Melt tweak") : (tc->mode==TWEAK_MODE_PUSH ? _("Push tweak") : _("Roughen tweak")))));
+                             (tc->mode==TWEAK_MODE_INFLATE ? _("Inflate tweak") : (tc->mode==TWEAK_MODE_MELT ? _("Melt tweak") : (tc->mode==TWEAK_MODE_PUSH ? _("Push tweak") : _("Roughen tweak")))));
             ret = TRUE;
 
         } 
index ac350de3a27c41e0fbad95f659aa16cd52c4a51e..5f7b51a0303c33b9914e18781cb3b1c40ef4e365 100644 (file)
@@ -2378,7 +2378,7 @@ Verb *Verb::_base_verbs[] = {
     new ContextVerb(SP_VERB_CONTEXT_NODE, "ToolNode", N_("Node Edit"),
                     N_("Edit path nodes or control handles"), "draw_node"),
     new ContextVerb(SP_VERB_CONTEXT_TWEAK, "ToolTweak", N_("Tweak"),
-                    N_("Tweak paths by pushing, melting, blowing, or roughening"), "draw_tweak"),
+                    N_("Tweak paths by pushing, melting, inflating, or roughening"), "draw_tweak"),
     new ContextVerb(SP_VERB_CONTEXT_RECT, "ToolRect", N_("Rectangle"),
                     N_("Create rectangles and squares"), "draw_rect"),
     new ContextVerb(SP_VERB_CONTEXT_3DBOX, "Tool3DBox", N_("3D Box"),
index 9801c9f48876c056fe53b0370b611d9275d45c09..01d9fd71d95dd6ad3c3f89111494a6421ba83ebe 100644 (file)
@@ -2516,9 +2516,9 @@ static void sp_tweak_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainAction
 
         gtk_list_store_append( model, &iter );
         gtk_list_store_set( model, &iter,
-                            0, _("Blow mode"),
-                            1, _("Switch to Blow mode"),
-                            2, "tweak_blow_mode",
+                            0, _("Inflate mode"),
+                            1, _("Switch to Inflate mode"),
+                            2, "tweak_inflate_mode",
                             -1 );
 
         gtk_list_store_append( model, &iter );