Extend time canvas to use available space to the rigt (and line up nicely).
[ardour.git] / gtk2_ardour / about.cc
index e48e08f130e7d51f42c51adb72cbad4d6f9fedc5..ccd4de1c0cb4e2ec32091a0759ced6b9dc7c5266 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #include <algorithm>
@@ -32,6 +31,7 @@
 #include "utils.h"
 #include "version.h"
 
+#include "svn_revision.h"
 #include "about.h"
 #include "rgb_macros.h"
 #include "ardour_ui.h"
@@ -139,18 +139,32 @@ static const char* authors[] = {
        N_("Per Sigmond"),
        N_("Doug Mclain"),
        N_("Petter Sundlöf"),
+       N_("Thorsten Wilms"),
+       N_("Ben Loftis"),
+       N_("Stefan Kersten"),
+       N_("Christopher George"),
+       N_("Robert Jordens"),
+       N_("Dave Robillard"),
+       N_("Hans Fugal"),
+       N_("Brian Ahr"),
+       N_("Nimal Ratnayake"),
+       N_("Mike Täht"),
+       N_("John Anderson"),
+       N_("Nedko Arnaudov"),
+       N_("Carl Hetherington"),
        0
 };
 
 static const char* translators[] = {
-       N_("French:\n\tAlain Fréhel <alain.frehel@free.fr>\n"),
-       N_("German:\n\tKarsten Petersen <kapet@kapet.de>\n"),
+       N_("French:\n\tAlain Fréhel <alain.frehel@free.fr>\n\tChristophe Combelles <ccomb@free.fr>\n"),
+       N_("German:\n\tKarsten Petersen <kapet@kapet.de>\n\tSebastian Arnold <mail@sebastian-arnold.net>\n"),
        N_("Italian:\n\tFilippo Pappalardo <filippo@email.it>\n"),
        N_("Portuguese:\n\tRui Nuno Capela <rncbc@rncbc.org>\n"),
        N_("Brazilian Portuguese:\n\tAlexander da Franca Fernandes <alexander@nautae.eti.br>\
 \n\tChris Ross <chris@tebibyte.org>\n"),
        N_("Spanish:\n\t Alex Krohn <alexkrohn@fastmail.fm>\n"),
        N_("Russian:\n\t Igor Blinov <pitstop@nm.ru>\n"),
+       N_("Greek:\n\t Klearchos Gourgourinis <muadib@in.gr>\n"),
        0
 };
 
@@ -165,7 +179,7 @@ About::About ()
        string path;
        string t;
 
-       path = find_data_file ("splash.ppm");
+       path = find_data_file ("splash.png");
 
        Glib::RefPtr<Pixbuf> pixbuf = Gdk::Pixbuf::create_from_file (path);
 
@@ -178,22 +192,17 @@ About::About ()
        }
 
        set_translator_credits (t);
-       set_copyright (_("Copyright (C) 1999-2005 Paul Davis\n"));
+       set_copyright (_("Copyright (C) 1999-2007 Paul Davis\n"));
        set_license (_("Ardour comes with ABSOLUTELY NO WARRANTY\n"
                       "This is free software, and you are welcome to redistribute it\n"
                       "under certain conditions; see the file COPYING for details.\n"));
        set_name (X_("ardour"));
        set_website (X_("http://ardour.org/"));
-       set_website_label (X_("ardour.org"));
-       set_version ((string_compose(_("%1\n(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)"), 
+       set_website_label (_("visit http://www.ardour.org/"));
+       set_version ((string_compose(_("%1\n(built from revision %2)"),
                                     VERSIONSTRING, 
-                                    gtk_ardour_major_version, 
-                                    gtk_ardour_minor_version, 
-                                    gtk_ardour_micro_version, 
-                                    libardour_major_version, 
-                                    libardour_minor_version, 
-                                    libardour_micro_version))); 
-
+                                    ardour_svn_revision)));
+       
 
 #ifdef WITH_PAYMENT_OPTIONS
        paypal_button.add (paypal_pixmap);