From 42ca55f3752a6ded2226ceb8a75bb3195bab2f32 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 21 Nov 2025 16:49:39 -0700 Subject: [PATCH] expand active language prompt for demo-copy-went-silent notice --- gtk2_ardour/ardour_ui_engine.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/ardour_ui_engine.cc b/gtk2_ardour/ardour_ui_engine.cc index cf653f815d..f7d643bfa6 100644 --- a/gtk2_ardour/ardour_ui_engine.cc +++ b/gtk2_ardour/ardour_ui_engine.cc @@ -65,7 +65,7 @@ ARDOUR_UI::audioengine_became_silent () msg.set_title (string_compose (_("%1 is now silent"), PROGRAM_NAME)); - Gtk::Label pay_label (string_compose (_("Please consider paying for a copy of %1 - you can pay whatever you want."), PROGRAM_NAME)); + Gtk::Label pay_label (string_compose (_("Please consider paying for a copy of %1 - you can pay whatever you want.\nDownload the unrestricted build after paying..."), PROGRAM_NAME)); Gtk::Label subscribe_label (_("Better yet become a subscriber - subscriptions start at US$1 per month.")); Gtk::Button pay_button (_("Pay for a copy (via the web)")); Gtk::Button subscribe_button (_("Become a subscriber (via the web)")); @@ -80,7 +80,7 @@ ARDOUR_UI::audioengine_became_silent () pay_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (openuri), (const char*) "https://ardour.org/download"))); subscribe_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (openuri), (const char*) "https://ardour.org/subscribe"))); - + msg.get_vbox()->pack_start (pay_label); msg.get_vbox()->pack_start (pay_button_box); msg.get_vbox()->pack_start (subscribe_label);