From c4276d832e561ef6ac2df051eef9b9fd44a32cce Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Wed, 16 Jan 2013 20:55:08 +0000 Subject: [PATCH] Tweak the text of the First Time User legal dialog. --- gtk/main.c | 8 ++++---- qt/app.cc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gtk/main.c b/gtk/main.c index ecb6ee876..a11adeabb 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -714,12 +714,12 @@ app_setup (GtkWindow * wind, struct cbdata * cbdata) { GtkWidget * w = gtk_message_dialog_new (GTK_WINDOW (wind), GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_MESSAGE_INFO, + GTK_MESSAGE_OTHER, 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. 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); + _("Transmission is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility.")); + gtk_dialog_add_button (GTK_DIALOG (w), GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT); + gtk_dialog_add_button (GTK_DIALOG (w), _("I _Agree"), GTK_RESPONSE_ACCEPT); gtk_dialog_set_default_response (GTK_DIALOG (w), GTK_RESPONSE_ACCEPT); switch (gtk_dialog_run (GTK_DIALOG (w))) { diff --git a/qt/app.cc b/qt/app.cc index bc67a073d..3ecb2cefe 100644 --- a/qt/app.cc +++ b/qt/app.cc @@ -225,7 +225,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. You and you alone are fully responsible for exercising proper judgement and abiding by your local laws." ) ); + 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. Any content you share is your sole responsibility.")); l->setWordWrap( true ); v->addWidget( l ); QDialogButtonBox * box = new QDialogButtonBox;