{% if not block.isDecrypted %}
{% if block.inProgress %}
{% i18n "Please wait while the message is being decrypted..." %}
{% elif block.isDecryptable %}
{% i18n "Encrypted message" %}
{% else %}
{% i18n "Encrypted message (decryption not possible)" %}
{% if block.errorText %}
{% i18n "Reason: " %}{{block.errorText|safe}} {% endif %} {% endif %} |
{% if block.isDecryptable %}
{{content|safe}}
{% else %}
{% if block.noSecKey %}
{% i18n "No secret key found to encrypt the message. It is encrypted for following keys:" %}
{% for recipient in decryptedRecipients %}
{% endif %}
0x{{recipient.keyID}} {% endfor %} {% else %} {% i18n "Could not decrypt the data." %} {% endif %} |
{% i18n "End of encrypted message" %} |