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

@ -202,9 +202,9 @@ class AuMBackend(BaseBackend, ICapMessages, ICapMessagesPost, ICapDating, ICapCh
if int(mail['id_from']) == self.browser.my_id:
if int(mails['remoteStatus']) == 0 and msg is None:
flags |= Message.IS_NOT_ACCUSED
flags |= Message.IS_NOT_RECEIVED
else:
flags |= Message.IS_ACCUSED
flags |= Message.IS_RECEIVED
signature = u''
if mail.get('src', None):