Fix incorrect translation

While this changes constants names, I think it is important as "accused" is
complely wrong. E-mails use the term "Read-receipts" so I chose
to go with RECEIVED.
This commit is contained in:
Laurent Bachelier 2012-02-09 19:42:12 +01:00
commit 5ea30516ac
5 changed files with 10 additions and 10 deletions

View file

@ -134,9 +134,9 @@ class MessagesListFormatter(IFormatter):
flags += 'N'
else:
flags += '-'
if message.flags & message.IS_NOT_ACCUSED:
if message.flags & message.IS_NOT_RECEIVED:
flags += 'U'
elif message.flags & message.IS_ACCUSED:
elif message.flags & message.IS_RECEIVED:
flags += 'R'
else:
flags += '-'