1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-10 06:02:57 +00:00

(qt) missing colon in progresString

This commit is contained in:
Daniel Lee 2010-09-08 01:09:52 +00:00
parent 43f03f3de6
commit fb76d9dc59

View file

@ -126,7 +126,7 @@ TorrentDelegate :: progressString( const Torrent& tor ) const
%2 is how much we've uploaded,
%3 is our upload-to-download ratio,
%4 is the ratio we want to reach before we stop uploading */
str = tr( "%1, uploaded %2 (Ratio: %3 Goal %4)" )
str = tr( "%1, uploaded %2 (Ratio: %3 Goal: %4)" )
.arg( Formatter::sizeToString( haveTotal ) )
.arg( Formatter::sizeToString( tor.uploadedEver( ) ) )
.arg( Formatter::ratioToString( tor.ratio( ) ) )