AU: install latency listener
[ardour.git] / gtk2_ardour / about.cc
index 047f295b4f86f556b3dc1a758edff8c646ddd96a..72bccfd2d43008ff53b7c9a37b5fdda4fe7051f3 100644 (file)
@@ -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"
@@ -124,6 +124,7 @@ static const gchar * paypal_xpm[] = {
 #endif
 
 static const char* authors[] = {
+       N_("Fons Adriaensen"),
        N_("Brian Ahr"),
        N_("John Anderson"),
        N_("Marcus Andersson"),
@@ -173,7 +174,9 @@ static const char* authors[] = {
        N_("AndrĂ© Nusser"),
        N_("Bent Bisballe Nyeng"),
        N_("Jack O'Quin"),
+       N_("Pavel Potocek"),
        N_("Nimal Ratnayake"),
+       N_("Julien Rivaud"),
        N_("David Robillard"),
        N_("Julien Roger"),
        N_("Taybin Rutkin"),
@@ -612,16 +615,22 @@ About::About ()
                codename = "";
        }
 
+#ifndef NDEBUG
+       const std::string suffix = _(" - debug");
+#else
+       const std::string suffix = "";
+#endif
+
        set_translator_credits (t);
        set_copyright (_("Copyright (C) 1999-2015 Paul Davis\n"));
        set_license (gpl);
        set_name (X_("Ardour"));
        set_website (X_("http://ardour.org/"));
        set_website_label (_("http://ardour.org/"));
-       set_version ((string_compose(_("%1%2\n(built from revision %3)\n%4"),
+       set_version ((string_compose(_("%1%2\n(rev %3)\n%4%5"),
                                     VERSIONSTRING,
                                     codename,
-                                    revision, cpu_arch)));
+                                    revision, cpu_arch, suffix)));
 
        Gtk::Button* config_button = manage (new Button (_("Config")));