]> granicus.if.org Git - transmission/commitdiff
(qt) missing colon in progresString
authorDaniel Lee <Longinus00@gmail.com>
Wed, 8 Sep 2010 01:09:52 +0000 (01:09 +0000)
committerDaniel Lee <Longinus00@gmail.com>
Wed, 8 Sep 2010 01:09:52 +0000 (01:09 +0000)
qt/torrent-delegate.cc

index 680f5fcaa576c23905805f7a5ad2dd911f7e4e5d..340abf81cb2f6fcf06664f01806846ca50ad108c 100644 (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( ) ) )