Commit 4af393a2 authored by Michal Čihař's avatar Michal Čihař

Include fields for word counts in translation

parent b31caf72
......@@ -125,6 +125,8 @@ class Translation(models.Model, URLMixin):
translated = models.IntegerField(default=0, db_index=True)
fuzzy = models.IntegerField(default=0, db_index=True)
total = models.IntegerField(default=0, db_index=True)
translated_words = models.IntegerField(default=0)
total_words = models.IntegerField(default=0)
failing_checks = models.IntegerField(default=0, db_index=True)
have_suggestion = models.IntegerField(default=0, db_index=True)
......
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