fix: Fix bug for ANs that have not been checked for more that three months

This commit is contained in:
moanos [he/him] 2025-01-09 06:59:09 +01:00
parent 29f1d2f0f2
commit 0c94049e21

@ -46,20 +46,14 @@ def time_since_as_hr_string(age: datetime.timedelta) -> str:
"years": years,
}
elif months >= 3:
_("vor %(month)d Monaten") % {"month": months}
text = _("vor %(month)d Monaten") % {"month": months}
elif weeks >= 3:
text = _("vor %(weeks)d Wochen") % {"weeks": weeks}
else:
if days == 0:
text = _("Heute")
else:
text = ngettext(
"vor einem Tag",
"vor %(count)d Tagen",
days,
) % {
"count": days,
}
text = ngettext("vor einem Tag","vor %(count)d Tagen", days,) % {"count": days,}
return text