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

Log found duplicate strings

Issue #693
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 08f88b9e
......@@ -150,7 +150,7 @@ class Change(models.Model):
ACTION_NEW_SOURCE = 13
ACTION_LOCK = 14
ACTION_UNLOCK = 15
ACTION_FOUND_DUPLICATE = 16
ACTION_DUPLICATE_STRING = 16
ACTION_CHOICES = (
(ACTION_UPDATE, ugettext_lazy('Resource update')),
......@@ -169,7 +169,7 @@ class Change(models.Model):
(ACTION_NEW_SOURCE, ugettext_lazy('New source string')),
(ACTION_LOCK, ugettext_lazy('Component locked')),
(ACTION_UNLOCK, ugettext_lazy('Component unlocked')),
(ACTION_FOUND_DUPLICATE, ugettext_lazy('Detected duplicate string')),
(ACTION_DUPLICATE_STRING, ugettext_lazy('Detected duplicate string')),
)
unit = models.ForeignKey('Unit', null=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