change eta from infinity to done for seeding files

This commit is contained in:
Marcos Pinto 2007-06-20 07:35:44 +00:00
parent e166b066dd
commit 82660a29cc
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ class DelugeGTK:
def time(column, cell, model, iter, data):
time = int(model.get_value(iter, data))
if time < 0 or time == 0:
time_str = _("Infinity")
time_str = _("Done")
else:
time_str = common.ftime(time)
cell.set_property('text', time_str)