Startup BETA Mac Screen - Pull version number from VERSIONSTRING
authorMichael R. Fisher <mfisher@bketech.com>
Mon, 15 Jul 2013 18:00:35 +0000 (13:00 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 8 Aug 2013 19:23:09 +0000 (15:23 -0400)
gtk2_ardour/startup.cc

index 433b80ff92974f9a3ea7a9e0e58982788a078c81..e7edf5e995be9f2b5a1b0ab76af7a222678c10dd 100644 (file)
@@ -191,15 +191,15 @@ ArdourStartup::setup_prerelease_page ()
 {
        VBox* vbox = manage (new VBox);
        Label* label = manage (new Label);
-       label->set_markup (_("<b>Welcome to this BETA release of Ardour 3.0</b>\n\n\
-Ardour 3.0 has been released for Linux but because of the lack of testers,\n\
+       label->set_markup (string_compose (_("<b>Welcome to this BETA release of Ardour %1</b>\n\n\
+Ardour %1 has been released for Linux but because of the lack of testers,\n\
 it is still at the beta stage on OS X. So, a few guidelines:\n\
 \n\
 1) Please do <b>NOT</b> use this software with the expectation that it is stable or reliable\n\
    though it may be so, depending on your workflow.\n\
 2) <b>Please do NOT use the forums at ardour.org to report issues</b>.\n\
 3) Please <b>DO</b> use the bugtracker at http://tracker.ardour.org/ to report issues\n\
-   making sure to note the product version number as 3.0-beta.\n\
+   making sure to note the product version number as %1-beta.\n\
 4) Please <b>DO</b> use the ardour-users mailing list to discuss ideas and pass on comments.\n\
 5) Please <b>DO</b> join us on IRC for real time discussions about ardour3. You\n\
    can get there directly from Ardour via the Help->Chat menu option.\n\
@@ -207,7 +207,7 @@ it is still at the beta stage on OS X. So, a few guidelines:\n\
 Full information on all the above can be found on the support page at\n\
 \n\
                 http://ardour.org/support\n\
-"));
+"), VERSIONSTRING));
 
        vbox->set_border_width (12);
        vbox->pack_start (*label, false, false, 12);