From: dooglus Date: Sun, 13 Jan 2008 16:39:08 +0000 (+0000) Subject: Be more explicit in the History dialog about what ValueNode is being converted. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=e50f313599a0e9ed2294093394c42b3b0fc329e1;p=synfig.git Be more explicit in the History dialog about what ValueNode is being converted. git-svn-id: http://svn.voria.com/code@1346 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/synfigapp/actions/valuedescconvert.cpp b/synfig-studio/trunk/src/synfigapp/actions/valuedescconvert.cpp index 8737144..a8105db 100644 --- a/synfig-studio/trunk/src/synfigapp/actions/valuedescconvert.cpp +++ b/synfig-studio/trunk/src/synfigapp/actions/valuedescconvert.cpp @@ -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