1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-03 13:03:50 +00:00

(trunk gtk) fix terminology of "manual announce" text in the inspector rewrite

This commit is contained in:
Charles Kerr 2009-04-25 21:53:58 +00:00
parent 114e6b3626
commit 4bccf4985f

View file

@ -1729,6 +1729,7 @@ refreshTracker( struct DetailsImpl * di, tr_torrent ** torrents, int n )
char buf[256];
const char * str;
const char * none = _("None" );
const char * nowStr = _("Now" );
const char * mixed = _( "Mixed" );
const char * noneSent = _( "None sent" );
const char * inProgress = _( "In progress" );
@ -1739,7 +1740,6 @@ refreshTracker( struct DetailsImpl * di, tr_torrent ** torrents, int n )
for( i=0; i<n; ++i )
stats[i] = tr_torrentStatCached( torrents[i] );
/* last_scrape_time_lb */
if( n<1 )
str = none;
@ -1859,7 +1859,7 @@ refreshTracker( struct DetailsImpl * di, tr_torrent ** torrents, int n )
else if( baseline<1 )
str = none;
else if( baseline<=now )
str = inProgress;
str = nowStr;
else
str = tr_strltime( buf, baseline - now, sizeof( buf ) );
}