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;