Be more explicit in the History dialog about what ValueNode is being converted.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sun, 13 Jan 2008 16:39:08 +0000 (16:39 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sun, 13 Jan 2008 16:39:08 +0000 (16:39 +0000)
git-svn-id: http://svn.voria.com/code@1346 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/synfigapp/actions/valuedescconvert.cpp

index 8737144..a8105db 100644 (file)
@@ -77,8 +77,10 @@ Action::ValueDescConvert::ValueDescConvert()
 synfig::String
 Action::ValueDescConvert::get_local_name()const
 {
-       // TRANSLATORS: This is used in the 'history' dialog when a ValueNode is converted.  %s is the local name of the valuenode's type.
-       return strprintf(_("Convert to '%s'"), LinkableValueNode::book()[type].local_name.c_str());
+       // TRANSLATORS: This is used in the 'history' dialog when a ValueNode is converted.  The first %s is what is converted, the 2nd is the local name of the ValueNode's type.
+       return strprintf(_("Convert '%s' to ValueNode type '%s'"),
+                                        value_desc.get_description().c_str(),
+                                        LinkableValueNode::book()[type].local_name.c_str());
 }
 
 Action::ParamVocab