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

Fix plural unit detection for some formats

Fixes rb#577
Fixes rb#578
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 5f2a8092
......@@ -499,7 +499,7 @@ class Unit(models.Model, LoggerMixin):
"""
Checks whether message is plural.
"""
return is_plural(self.source)
return is_plural(self.source) or is_plural(self.target)
def get_source_plurals(self):
"""
......
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