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:
parent
ee2df70981
commit
5ea30516ac
5 changed files with 10 additions and 10 deletions
|
|
@ -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 += '-'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue