Commit 22e4b841 authored by Michal Čihař's avatar Michal Čihař

Fix adding new unit without changing translation

parent 7e09570d
......@@ -875,7 +875,8 @@ class Translation(models.Model, URLMixin):
return False, None
# Check for changes
if (unit.target == pounit.get_target()
if (not add
and unit.target == pounit.get_target()
and unit.fuzzy == pounit.is_fuzzy()):
return False, pounit
......
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