Swap "never" for "not yet", it's more accurate
This commit is contained in:
parent
efabaf3aaa
commit
71614aa47f
|
@ -46,7 +46,7 @@ def relative_time(seconds):
|
||||||
days = int(seconds / DAY)
|
days = int(seconds / DAY)
|
||||||
return _(f'{days} days ago')
|
return _(f'{days} days ago')
|
||||||
if seconds > 10 * 365 * DAY:
|
if seconds > 10 * 365 * DAY:
|
||||||
return _('never')
|
return _('not yet')
|
||||||
|
|
||||||
return _('a long time ago')
|
return _('a long time ago')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue