X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fabout.cc;h=5ecc075c30d15789798db33bb6ed5819b4ae512c;hb=6ee23029a338951705c589be6c61ab52099758b6;hp=26c093cd9d10b222eaf40d9efc22d998a2e4f0ca;hpb=572b6e6275736ce7c2f7bbbf27592fac1097a846;p=ardour.git diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index 26c093cd9d..5ecc075c30 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -131,9 +131,11 @@ static const char* authors[] = { N_("Jesse Chappell"), N_("Thomas Charbonnel"), N_("Sam Chessman"), + N_("André Colomb"), N_("Paul Davis"), N_("Gerard van Dongen"), N_("Colin Fletcher"), + N_("Dave Flick"), N_("Hans Fugal"), N_("Robin Gareus"), N_("Christopher George"), @@ -150,6 +152,7 @@ static const char* authors[] = { N_("Stefan Kersten"), N_("Armand Klenk"), N_("Matt Krai"), + N_("Nick Lanham"), N_("Colin Law"), N_("Joshua Leach"), N_("Ben Loftis"), @@ -164,6 +167,7 @@ static const char* authors[] = { N_("Sampo Savolainen"), N_("Per Sigmond"), N_("Lincoln Spiteri"), + N_("Mike Start"), N_("Mark Stewart"), N_("Roland Stigge"), N_("Petter Sundlöf"), @@ -174,16 +178,20 @@ static const char* authors[] = { }; static const char* translators[] = { - N_("French:\n\tAlain Fréhel \n\tChristophe Combelles \n\tMartin Blanchard\n"), + N_("French:\n\tAlain Fréhel \n\tChristophe Combelles \n\tMartin Blanchard\n\tRomain Arnaud \n"), N_("German:\n\tKarsten Petersen \ \n\tSebastian Arnold \ -\n\tRobert Schwede\n"), - N_("Italian:\n\tFilippo Pappalardo \n"), +\n\tRobert Schwede \ +\n\tBenjamin Scherrer \ +\n\tEdgar Aichinger \ +\n\tRichard Oax \n"), + N_("Italian:\n\tFilippo Pappalardo \n\tRaffaele Morelli \n"), N_("Portuguese:\n\tRui Nuno Capela \n"), N_("Brazilian Portuguese:\n\tAlexander da Franca Fernandes \ \n\tChris Ross \n"), - N_("Spanish:\n\t Alex Krohn \n"), - N_("Russian:\n\t Igor Blinov \n"), + N_("Spanish:\n\t Alex Krohn \n\tPablo Fernández \n"), + N_("Russian:\n\t Igor Blinov \ +\n\tAlexandre Prokoudine \n"), N_("Greek:\n\t Klearchos Gourgourinis \n"), N_("Swedish:\n\t Petter Sundlöf \n"), N_("Polish:\n\t Piotr Zaryk \n"), @@ -551,7 +559,7 @@ About::About () sys::path splash_file; - SearchPath spath(ardour_search_path() + system_data_search_path()); + SearchPath spath(ardour_data_search_path()); if (find_file_in_search_path (spath, "splash.png", splash_file)) { set_logo (Gdk::Pixbuf::create_from_file (splash_file.to_string())); @@ -567,7 +575,7 @@ About::About () } set_translator_credits (t); - set_copyright (_("Copyright (C) 1999-2011 Paul Davis\n")); + set_copyright (_("Copyright (C) 1999-2012 Paul Davis\n")); set_license (gpl); set_name (X_("Ardour")); set_website (X_("http://ardour.org/")); @@ -595,6 +603,7 @@ About::show_config_info () config_info = new ConfigInfoDialog; } - config_info->present (); + config_info->run (); + config_info->hide (); }