i18n 'Error handling incoming message'

// FREEBIE
This commit is contained in:
2-4601 2016-04-23 21:18:22 +03:00 committed by lilia
parent 60fe1e2cea
commit b9ecdbf402
2 changed files with 4 additions and 1 deletions

View file

@ -45,6 +45,9 @@
"incomingKeyConflict": { "incomingKeyConflict": {
"message": "Received message with unknown identity key. Click to process and display." "message": "Received message with unknown identity key. Click to process and display."
}, },
"incomingError": {
"message": "Error handling incoming message."
},
"unsupportedAttachment": { "unsupportedAttachment": {
"message": "Unsupported attachment type. Click to save.", "message": "Unsupported attachment type. Click to save.",
"description": "Displayed for incoming unsupported attachment" "description": "Displayed for incoming unsupported attachment"

View file

@ -62,7 +62,7 @@
return i18n('incomingKeyConflict'); return i18n('incomingKeyConflict');
} }
if (this.isIncoming() && this.hasErrors()) { if (this.isIncoming() && this.hasErrors()) {
return 'Error handling incoming message.'; return i18n('incomingError');
} }
return this.get('body'); return this.get('body');