diff --git a/tuhigui/drawingperspective.py b/tuhigui/drawingperspective.py index 6996dfe..bf9d923 100644 --- a/tuhigui/drawingperspective.py +++ b/tuhigui/drawingperspective.py @@ -46,7 +46,7 @@ def relative_time(seconds): days = int(seconds / DAY) return _(f'{days} days ago') if seconds > 10 * 365 * DAY: - return _('never') + return _('not yet') return _('a long time ago')