Show a very simple message in the console on start-up so as not to scare people when...
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Fri, 1 Feb 2008 22:54:42 +0000 (22:54 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Fri, 1 Feb 2008 22:54:42 +0000 (22:54 +0000)
git-svn-id: http://svn.voria.com/code@1554 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/gtkmm/main.cpp

index 15dc9d6..dba3d0e 100644 (file)
@@ -69,6 +69,10 @@ int main(int argc, char **argv)
                SmartFILE file(IPC::make_connection());
                if(file)
                {
+                       cout << endl;
+                       cout << "   " << _("synfig studio is already running") << endl << endl;
+                       cout << "   " << _("the existing process will be used") << endl << endl;;
+
                        fprintf(file.get(),"F\n");
 
                        // Hey, another copy of us is open!
@@ -89,6 +93,9 @@ int main(int argc, char **argv)
                }
        }
 
+       cout << endl;
+       cout << "   " << _("synfig studio -- starting up application...") << endl << endl;
+
        try
        {
                studio::App app(&argc, &argv);