From f15229e831a40d84ba3d35dcce5d31171b92cf5e Mon Sep 17 00:00:00 2001 From: Sanel Zukan Date: Thu, 20 Oct 2011 09:17:08 +0000 Subject: [PATCH] Added translation part --- tools/create-project | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/create-project b/tools/create-project index 9c1ee9c..4e4f9fa 100755 --- a/tools/create-project +++ b/tools/create-project @@ -49,8 +49,9 @@ EOF #endif #include -#include #include +#include +#include #include #include @@ -61,7 +62,7 @@ int main(int argc, char** argv) { EdeWindow *win = new EdeWindow(300, 100); win->label("$name sample"); - new Fl_Box(1, 1, 299, 99, "Hola from $name"); + new Fl_Box(1, 1, 299, 99, _("Hola from $name")); win->end(); win->show(argc, argv);