$("%.2f" % torrent.progress) %
|
$_('Downloaded'): |
$fsize(torrent.total_done) |
$_('Uploaded'): |
$fsize(torrent.total_payload_upload) |
$_('Share Ratio'): |
$("%.3f" % torrent.ratio) |
$_('Next Announce'): |
$torrent.next_announce |
|
$_('Speed'): |
$fspeed(torrent.download_payload_rate) |
$_('Speed'): |
$fspeed(torrent.upload_payload_rate) |
$_('ETA'): |
$ftime(torrent.eta) |
$_('Pieces'): |
$torrent.num_pieces ($fsize(torrent.piece_length)) |
|
$_('Seeders'): |
$torrent.num_seeds ($torrent.total_seeds ) |
$_('Peers'): |
$torrent.num_peers ($torrent.total_peers ) |
$_('Availability'): |
$("%.3f" % torrent.distributed_copies) |
$_('Auto Managed'): |
$if torrent.is_auto_managed:
$_('True')
$else:
$_('False')
|
|
$_('Active time'): |
$ftime(torrent.active_time) |
$_('Seeding time'): |
$ftime(torrent.seeding_time) |
$_('Seed rank'): |
$(torrent.seed_rank) |
$_('Queue Position'): |
$if (torrent.queue == -1):
∞
$else:
$(torrent.queue + 1)
|
|