Changeset 13891 for trunk/qt/torrent-delegate.cc
- Timestamp:
- Jan 27, 2013, 11:05:47 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/torrent-delegate.cc
r13553 r13891 184 184 185 185 if( haveDown && haveUp ) 186 str = tr( "%1 %2, %3 %4" ).arg(downArrow).arg(downStr).arg(upArrow).arg(upStr);186 str = tr( "%1%2, %3%4" ).arg(upStr).arg(upArrow).arg(downStr).arg(downArrow); 187 187 else if( haveDown ) 188 str = tr( "%1 %2" ).arg(downArrow).arg(downStr);188 str = tr( "%1%2" ).arg(downStr).arg(downArrow); 189 189 else if( haveUp ) 190 str = tr( "%1 %2" ).arg(upArrow).arg(upStr);190 str = tr( "%1%2" ).arg(upStr).arg(upArrow); 191 191 else if( tor.isStalled( ) ) 192 192 str = tr( "Stalled" ); … … 211 211 case TR_STATUS_SEED: 212 212 if( !tor.isDownloading( ) ) 213 str = tr( "Ratio: %1," ).arg( Formatter::ratioToString( tor.ratio( ) ) );213 str = tr( "Ratio: %1, " ).arg( Formatter::ratioToString( tor.ratio( ) ) ); 214 214 str += shortTransferString( tor ); 215 215 break;
Note: See TracChangeset
for help on using the changeset viewer.