From 60da1f4872871c75e392492ae08ee1367ff7ecec Mon Sep 17 00:00:00 2001 From: "Michael R. Fisher" Date: Mon, 15 Jul 2013 13:00:35 -0500 Subject: [PATCH] Startup BETA Mac Screen - Pull version number from VERSIONSTRING --- gtk2_ardour/startup.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc index 433b80ff92..e7edf5e995 100644 --- a/gtk2_ardour/startup.cc +++ b/gtk2_ardour/startup.cc @@ -191,15 +191,15 @@ ArdourStartup::setup_prerelease_page () { VBox* vbox = manage (new VBox); Label* label = manage (new Label); - label->set_markup (_("Welcome to this BETA release of Ardour 3.0\n\n\ -Ardour 3.0 has been released for Linux but because of the lack of testers,\n\ + label->set_markup (string_compose (_("Welcome to this BETA release of Ardour %1\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 NOT use this software with the expectation that it is stable or reliable\n\ though it may be so, depending on your workflow.\n\ 2) Please do NOT use the forums at ardour.org to report issues.\n\ 3) Please DO 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 DO use the ardour-users mailing list to discuss ideas and pass on comments.\n\ 5) Please DO 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);