Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / valuedescconvert.cpp
index 2d894a3..2230cf9 100644 (file)
@@ -6,6 +6,7 @@
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2007, 2008 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
@@ -54,8 +55,8 @@ using namespace Action;
 
 /* === M A C R O S ========================================================= */
 
-ACTION_INIT(Action::ValueDescConvert);
-ACTION_SET_NAME(Action::ValueDescConvert,"value_desc_convert");
+ACTION_INIT_NO_GET_LOCAL_NAME(Action::ValueDescConvert);
+ACTION_SET_NAME(Action::ValueDescConvert,"ValueDescConvert");
 ACTION_SET_LOCAL_NAME(Action::ValueDescConvert,N_("Convert"));
 ACTION_SET_TASK(Action::ValueDescConvert,"convert");
 ACTION_SET_CATEGORY(Action::ValueDescConvert,Action::CATEGORY_VALUEDESC);
@@ -74,6 +75,15 @@ Action::ValueDescConvert::ValueDescConvert()
        time=(Time::begin()-1);
 }
 
+synfig::String
+Action::ValueDescConvert::get_local_name()const
+{
+       // 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
 Action::ValueDescConvert::get_param_vocab()
 {