From 71614aa47f732e97bc60e531647dd83159c4e5dc Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 17 Jul 2019 20:16:55 +1000 Subject: [PATCH] Swap "never" for "not yet", it's more accurate --- tuhigui/drawingperspective.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')