Security fix: mod_ffmpeg target used popen to run ffmpeg, change it to use pipe,...
[synfig.git] / synfig-studio / trunk / src / synfigapp / action.cpp
index b5533a2..a1fdd69 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file action.cpp
 **     \brief Template File
 **
-**     $Id: action.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 
 #include "canvasinterface.h"
 
+#include "general.h"
+
 #endif
 
 using namespace std;
@@ -128,7 +130,7 @@ synfigapp::Action::Book *book_;
 
 #define ADD_ACTION(x) { BookEntry &be(book()[x::name__]); \
        be.name=x::name__; \
-       be.local_name=x::local_name__; \
+       be.local_name=gettext(x::local_name__); \
        be.version=x::version__; \
        be.task=x::task__; \
        be.priority=x::priority__; \