X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fabout.cc;h=e3e02ade67878232f5f920be3a7888091916f3ec;hb=6180c5a5fc9a663858d12c31a6783e12f02bfcba;hp=01eab82b88b8f8b3e1212546248ff8070806545a;hpb=10d11e0544dca39c8a2683cef099fdaf3e83e680;p=ardour.git diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index 01eab82b88..e3e02ade67 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -36,7 +36,7 @@ #include "configinfo.h" #include "rgb_macros.h" -#include "i18n.h" +#include "pbd/i18n.h" #ifdef WAF_BUILD #include "gtk2ardour-version.h" @@ -133,6 +133,7 @@ static const char* authors[] = { N_("Ben Bell"), N_("Sakari Bergen"), N_("Christian Borss"), + N_("Thomas Brand"), N_("Chris Cannam"), N_("Jeremy Carter"), N_("Jesse Chappell"), @@ -174,6 +175,7 @@ static const char* authors[] = { N_("André Nusser"), N_("Bent Bisballe Nyeng"), N_("Jack O'Quin"), + N_("Len Ovens"), N_("Pavel Potocek"), N_("Nimal Ratnayake"), N_("Julien Rivaud"), @@ -183,10 +185,12 @@ static const char* authors[] = { N_("Andreas Ruge"), N_("Sampo Savolainen"), N_("Rodrigo Severo"), + N_("Daniel Sheeler"), N_("Per Sigmond"), N_("Lincoln Spiteri"), N_("Mike Start"), N_("Mark Stewart"), + N_("Nathan Stewart"), N_("Roland Stigge"), N_("Petter Sundlöf"), N_("Mike Täht"), @@ -198,7 +202,7 @@ static const char* authors[] = { }; static const char* translators[] = { - N_("French:\n\tAlain Fréhel \n\tChristophe Combelles \n\tMartin Blanchard\n\tRomain Arnaud \n"), + N_("French:\n\tAlain Fréhel \n\tChristophe Combelles \n\tMartin Blanchard\n\tRomain Arnaud \n\tOlivier Humbert \n"), N_("German:\n\tKarsten Petersen \ \n\tSebastian Arnold \ \n\tRobert Schwede \ @@ -219,6 +223,7 @@ static const char* translators[] = { N_("Czech:\n\t Pavel Fric \n"), N_("Norwegian:\n\t Eivind Ødegård\n"), N_("Chinese:\n\t Rui-huai Zhang \n"), + N_("Japanese:\n\t Hiroki Inagaki \n"), 0 }; @@ -583,8 +588,9 @@ About::About () std::string splash_file; Searchpath spath(ardour_data_search_path()); + spath.add_subdirectory_to_paths ("resources"); - if (find_file (spath, "splash.png", splash_file)) { + if (find_file (spath, PROGRAM_NAME "-splash.png", splash_file)) { set_logo (Gdk::Pixbuf::create_from_file (splash_file)); } else { error << "Could not find splash file" << endmsg; @@ -622,7 +628,7 @@ About::About () #endif set_translator_credits (t); - set_copyright (_("Copyright (C) 1999-2015 Paul Davis\n")); + set_copyright (_("Copyright (C) 1999-2017 Paul Davis\n")); set_license (gpl); set_name (X_("Ardour")); set_website (X_("http://ardour.org/"));