Changeset 13795
- Timestamp:
- Jan 16, 2013, 8:55:08 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/main.c
r13763 r13795 715 715 GtkWidget * w = gtk_message_dialog_new (GTK_WINDOW (wind), 716 716 GTK_DIALOG_DESTROY_WITH_PARENT, 717 GTK_MESSAGE_ INFO,717 GTK_MESSAGE_OTHER, 718 718 GTK_BUTTONS_NONE, 719 719 "%s", 720 _("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."));721 gtk_dialog_add_button (GTK_DIALOG (w), GTK_STOCK_ QUIT, GTK_RESPONSE_REJECT);722 gtk_dialog_add_button (GTK_DIALOG (w), _("I _A ccept"), GTK_RESPONSE_ACCEPT);720 _("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.")); 721 gtk_dialog_add_button (GTK_DIALOG (w), GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT); 722 gtk_dialog_add_button (GTK_DIALOG (w), _("I _Agree"), GTK_RESPONSE_ACCEPT); 723 723 gtk_dialog_set_default_response (GTK_DIALOG (w), GTK_RESPONSE_ACCEPT); 724 724 switch (gtk_dialog_run (GTK_DIALOG (w))) -
trunk/qt/app.cc
r13725 r13795 226 226 dialog->setModal( true ); 227 227 QVBoxLayout * v = new QVBoxLayout( dialog ); 228 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." ));228 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.")); 229 229 l->setWordWrap( true ); 230 230 v->addWidget( l );
Note: See TracChangeset
for help on using the changeset viewer.