From ed0cf64f0a1e03f47cc26a93a9e7ab5063c393a1 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sat, 1 May 2010 02:33:44 +0000 Subject: [PATCH] (trunk gtk,qt) adjust the opening dialog text. Using Comic Sans instead of Zapf Chancery due to creative differences with livings124 --- gtk/main.c | 2 +- qt/app.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/main.c b/gtk/main.c index 0b1537c38..0ed44f97a 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -728,7 +728,7 @@ appsetup( TrWindow * wind, GTK_MESSAGE_INFO, GTK_BUTTONS_NONE, "%s", - _( "Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. And of course, any content you share is your sole responsibility.\n\nYou probably knew this, so we won't tell you again." ) ); + _( "Transmission is a file-sharing program. When you run a torrent, its data will be made available to others by means of upload. You and you alone are fully responsible for exercising proper judgement and abiding by your local laws." ) ); gtk_dialog_add_button( GTK_DIALOG( w ), GTK_STOCK_QUIT, GTK_RESPONSE_REJECT ); gtk_dialog_add_button( GTK_DIALOG( w ), _( "I _Accept" ), GTK_RESPONSE_ACCEPT ); gtk_dialog_set_default_response( GTK_DIALOG( w ), GTK_RESPONSE_ACCEPT ); diff --git a/qt/app.cc b/qt/app.cc index 431bc432d..2163fbe54 100644 --- a/qt/app.cc +++ b/qt/app.cc @@ -207,7 +207,7 @@ MyApp :: MyApp( int& argc, char ** argv ): QDialog * dialog = new QDialog( myWindow ); dialog->setModal( true ); QVBoxLayout * v = new QVBoxLayout( dialog ); - QLabel * l = new QLabel( tr( "Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. And of course, any content you share is your sole responsibility.\n\nYou probably knew this, so we won't tell you again." ) ); + QLabel * l = new QLabel( tr( "Transmission is a file-sharing program. When you run a torrent, its data will be made available to others by means of upload. You and you alone are fully responsible for exercising proper judgement and abiding by your local laws." ) ); l->setWordWrap( true ); v->addWidget( l ); QDialogButtonBox * box = new QDialogButtonBox;