Changeset 9706 for trunk/gtk/details.c
- Timestamp:
- Dec 10, 2009, 9:49:46 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/details.c
r9695 r9706 1715 1715 case TR_TRACKER_WAITING: 1716 1716 g_string_append_c( gstr, '\n' ); 1717 tr_strltime_rounded( timebuf, now - st->lastScrapeStartTime, sizeof( timebuf ) );1718 g_string_append_printf( gstr, _( "Asking for peer counts now... <small>%s</small>" ), timebuf );1717 tr_strltime_rounded( timebuf, st->nextScrapeTime - now, sizeof( timebuf ) ); 1718 g_string_append_printf( gstr, _( "Asking for peer counts in %s" ), timebuf ); 1719 1719 break; 1720 1720 case TR_TRACKER_QUEUED: … … 1724 1724 case TR_TRACKER_ACTIVE: 1725 1725 g_string_append_c( gstr, '\n' ); 1726 tr_strltime_rounded( timebuf, st->nextScrapeTime - now, sizeof( timebuf ) );1727 g_string_append_printf( gstr, _( "Asking for peer counts in %s" ), timebuf );1726 tr_strltime_rounded( timebuf, now - st->lastScrapeStartTime, sizeof( timebuf ) ); 1727 g_string_append_printf( gstr, _( "Asking for peer counts now... <small>%s</small>" ), timebuf ); 1728 1728 break; 1729 1729 }
Note: See TracChangeset
for help on using the changeset viewer.