Merged with trunk R1141
[ardour.git] / gtk2_ardour / about.cc
index 033b5c460413e0b4fd305f5953bc359b72e72bbd..959830725e02187eeaa879d01365cd7c761da373 100644 (file)
@@ -32,6 +32,7 @@
 #include "utils.h"
 #include "version.h"
 
+#include "svn_revision.h"
 #include "about.h"
 #include "rgb_macros.h"
 #include "ardour_ui.h"
@@ -139,11 +140,16 @@ 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"),
        0
 };
 
 static const char* translators[] = {
-       N_("French:\n\tAlain Fréhel <alain.frehel@free.fr>\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"),
        N_("Italian:\n\tFilippo Pappalardo <filippo@email.it>\n"),
        N_("Portuguese:\n\tRui Nuno Capela <rncbc@rncbc.org>\n"),
@@ -165,7 +171,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 +184,17 @@ About::About ()
        }
 
        set_translator_credits (t);
-       set_copyright (_("Copyright (C) 1999-2005 Paul Davis\n"));
+       set_copyright (_("Copyright (C) 1999-2006 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)"), 
-                             VERSIONSTRING, 
-                             gtk_ardour_major_version, 
-                             gtk_ardour_minor_version, 
-                             gtk_ardour_micro_version, 
-                             libardour_major_version, 
-                             libardour_minor_version, 
-                             libardour_micro_version))); 
-
+       set_website_label (_("visit http://www.ardour.org/"));
+       set_version ((string_compose(_("%1\n(built from revision %2)"),
+                                    VERSIONSTRING, 
+                                    ardour_svn_revision)));
+       
 
 #ifdef WITH_PAYMENT_OPTIONS
        paypal_button.add (paypal_pixmap);