Commit e290ee0b authored by Michal Čihař's avatar Michal Čihař

Fix check for recent translations

parent b77e4446
......@@ -134,7 +134,7 @@ def translate(request, project, subproject, lang):
).exclude(
user=None
)
if recent_changes.count() == 0 or True:
if not recent_changes.exists():
messages.info(
request,
_('There is currently no active translator for this translation, please consider becoming a translator as your suggestion might otherwise remain unreviewed.')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment