po: remove fuzzy flag when an entry is modified
offlate/systems/entry.py
| 34 | 34 | ||
| 35 | 35 | def update(self, index, content): | |
| 36 | 36 | Entry.update(self, index, content) | |
| 37 | + | self.fuzzy = False | |
| 38 | + | self.entry.flags = [x for x in self.entry.flags if x != 'fuzzy'] | |
| 37 | 39 | if 0 in self.entry.msgstr_plural: | |
| 38 | 40 | self.entry.msgstr_plural[index] = content | |
| 39 | 41 | else: |