mirror of
https://github.com/transmission/transmission
synced 2025-01-30 19:03:04 +00:00
(trunk qt) sync up a couple of last strings with the gtk client
This commit is contained in:
parent
0b52d3d966
commit
8809f32a7d
2 changed files with 10 additions and 7 deletions
|
@ -37,8 +37,11 @@ BUILDING
|
|||
|
||||
1. Prerequisites: Qt >= 4.x and its development packages
|
||||
2. Build Transmission as normal
|
||||
3. In the qt/ directory, type "qmake-qt4 qtr.pro"
|
||||
4. In the qt/ directory, type "make"
|
||||
5. In the qt/ directory, as root, type "INSTALL_ROOT=/usr make install"
|
||||
3. If you want to use the OS'es libevent, edit qtr.pro:
|
||||
- LIBS += $${TRANSMISSION_TOP}/third-party/libevent/.libs/libevent.a
|
||||
+ LIBS += -levent
|
||||
4. In the qt/ directory, type "qmake-qt4 qtr.pro"
|
||||
5. In the qt/ directory, type "make"
|
||||
6. In the qt/ directory, as root, type "INSTALL_ROOT=/usr make install"
|
||||
(Feel free to replace /usr with /usr/local or /opt or whatever)
|
||||
|
||||
|
|
|
@ -796,7 +796,7 @@ Details :: createInfoTab( )
|
|||
{
|
||||
HIG * hig = new HIG( this );
|
||||
|
||||
hig->addSectionTitle( tr( "Transfer" ) );
|
||||
hig->addSectionTitle( tr( "Activity" ) );
|
||||
hig->addRow( tr( "Torrent size:" ), mySizeLabel = new SqueezeLabel );
|
||||
hig->addRow( tr( "Have:" ), myHaveLabel = new SqueezeLabel );
|
||||
hig->addRow( tr( "Downloaded:" ), myDownloadedLabel = new SqueezeLabel );
|
||||
|
@ -913,7 +913,7 @@ Details :: createOptionsTab( )
|
|||
hig->addWideControl( c );
|
||||
connect( c, SIGNAL(clicked(bool)), this, SLOT(onHonorsSessionLimitsToggled(bool)) );
|
||||
|
||||
c = new QCheckBox( tr( "Limit &download speed (KB/s)" ) );
|
||||
c = new QCheckBox( tr( "Limit &download speed (KB/s):" ) );
|
||||
mySingleDownCheck = c;
|
||||
s = new QSpinBox( );
|
||||
mySingleDownSpin = s;
|
||||
|
@ -923,7 +923,7 @@ Details :: createOptionsTab( )
|
|||
connect( c, SIGNAL(clicked(bool)), this, SLOT(onDownloadLimitedToggled(bool)) );
|
||||
connect( s, SIGNAL(valueChanged(int)), this, SLOT(onDownloadLimitChanged(int)));
|
||||
|
||||
c = new QCheckBox( tr( "Limit &upload speed (KB/s)" ) );
|
||||
c = new QCheckBox( tr( "Limit &upload speed (KB/s):" ) );
|
||||
mySingleUpCheck = c;
|
||||
s = new QSpinBox( );
|
||||
mySingleUpSpin = s;
|
||||
|
@ -978,7 +978,7 @@ Details :: createOptionsTab( )
|
|||
s->setRange( 1, 300 );
|
||||
connect( s, SIGNAL(valueChanged(int)), this, SLOT(onMaxPeersChanged(int)));
|
||||
myPeerLimitSpin = s;
|
||||
hig->addRow( tr( "&Maximum Peers" ), s );
|
||||
hig->addRow( tr( "&Maximum peers:" ), s );
|
||||
|
||||
hig->finish( );
|
||||
|
||||
|
|
Loading…
Reference in a new issue