From 32c1c8a1c76d68dfb2edb08742a308d24766b96e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 8 Dec 2011 12:05:32 +0000 Subject: [PATCH] Justify text in first welcome screen, and fix grammar (#4540). git-svn-id: svn://localhost/ardour2/branches/3.0@10941 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/startup.cc | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc index ac76449177..e5cb746a05 100644 --- a/gtk2_ardour/startup.cc +++ b/gtk2_ardour/startup.cc @@ -332,14 +332,16 @@ ArdourStartup::setup_new_user_page () Label* foomatic = manage (new Label); foomatic->set_markup (string_compose (_("\ -%1 is a digital audio workstation. You can use it to\n\ -record, edit and mix multi-track audio. You can produce your\n\ -own CDs, mix video soundtracks, or just experiment with new\n\ -ideas about music and sound.\n\ -\n\ -There are a few things that need to configured before you start\n\ -using the program.\ +%1 is a digital audio workstation. You can use it to \ +record, edit and mix multi-track audio. You can produce your \ +own CDs, mix video soundtracks, or just experiment with new \ +ideas about music and sound. \ +\n\n\ +There are a few things that need to be configured before you start \ +using the program. \ "), PROGRAM_NAME)); + foomatic->set_justify (JUSTIFY_FILL); + foomatic->set_line_wrap (); HBox* hbox = manage (new HBox); HBox* vbox = manage (new HBox);