mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
Display --:--:-- instead of 00:00:00 as the ETA.
This commit is contained in:
parent
5718a220c1
commit
2466d6e3bc
1 changed files with 7 additions and 5 deletions
12
gtk/main.c
12
gtk/main.c
|
@ -676,8 +676,6 @@ dfname(GtkTreeViewColumn *col SHUTUP, GtkCellRenderer *rend,
|
|||
MC_SIZE, &size, MC_PROG, &prog, MC_ETA, &eta, MC_PEERS, &tpeers,
|
||||
MC_UPEERS, &upeers, MC_DPEERS, &dpeers, -1);
|
||||
|
||||
if(0 > eta)
|
||||
eta = 0;
|
||||
if(0 > tpeers)
|
||||
tpeers = 0;
|
||||
if(0 > upeers)
|
||||
|
@ -689,9 +687,13 @@ dfname(GtkTreeViewColumn *col SHUTUP, GtkCellRenderer *rend,
|
|||
|
||||
if(status & TR_STATUS_CHECK)
|
||||
top = g_strdup_printf(_("Checking existing files (%.1f%%)"), prog);
|
||||
else if(status & TR_STATUS_DOWNLOAD)
|
||||
top = g_strdup_printf(_("Finishing in %02i:%02i:%02i (%.1f%%)"),
|
||||
eta / 60 / 60, eta / 60 % 60, eta % 60, prog);
|
||||
else if(status & TR_STATUS_DOWNLOAD) {
|
||||
if(0 > eta)
|
||||
top = g_strdup_printf(_("Finishing in --:--:-- (%.1f%%)"), prog);
|
||||
else
|
||||
top = g_strdup_printf(_("Finishing in %02i:%02i:%02i (%.1f%%)"),
|
||||
eta / 60 / 60, eta / 60 % 60, eta % 60, prog);
|
||||
}
|
||||
else if(status & TR_STATUS_SEED)
|
||||
top = g_strdup_printf(ngettext("Seeding, uploading to %d of %d peer",
|
||||
"Seeding, uploading to %d of %d peers",
|
||||
|
|
Loading…
Reference in a new issue