Changeset 10560
- Timestamp:
- May 1, 2010, 2:33:44 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/main.c
r10550 r10560 729 729 GTK_BUTTONS_NONE, 730 730 "%s", 731 _( "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." ) );731 _( "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." ) ); 732 732 gtk_dialog_add_button( GTK_DIALOG( w ), GTK_STOCK_QUIT, GTK_RESPONSE_REJECT ); 733 733 gtk_dialog_add_button( GTK_DIALOG( w ), _( "I _Accept" ), GTK_RESPONSE_ACCEPT ); -
trunk/qt/app.cc
r10532 r10560 208 208 dialog->setModal( true ); 209 209 QVBoxLayout * v = new QVBoxLayout( dialog ); 210 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." ) );210 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." ) ); 211 211 l->setWordWrap( true ); 212 212 v->addWidget( l );
Note: See TracChangeset
for help on using the changeset viewer.