File indexing completed on 2025-01-19 04:46:49

0001 <style type="text/css">
0002 table.key {
0003   width: 100%;
0004   border: 1px solid {{ style.borderColor }};
0005 }
0006 table .keyH {
0007   background-color: {{ style.borderColor }};
0008   color: {{ style.frameTextColor }};
0009 }
0010 table .keyB {
0011 }
0012 </style>
0013 <table cellspacing="0" cellpadding="2" class="key">
0014 <tr class="keyH"><td>{% i18n "OpenPGP Key" %}</td></tr>
0015 <tr class="keyb"><td>
0016   <div style="padding: 10pt;">
0017   <p>
0018   {% i18n "This is an OpenPGP key, which can be used to sign or encrypt emails." %}
0019   </p>
0020 
0021   {% if block.showKeyDetails %}
0022     {% if block.searchRunning %}
0023         <p>{% i18n "Loading key details..." %}</p>
0024     {% endif %}
0025     {% if not block.error %}
0026       <table border="0" cellspacing="1" cellpadding="1">
0027         <tr>
0028           <td><b>{% i18n "Owner:" %}&nbsp;</b></td><td>{{ block.uid }}</td>
0029         </tr>
0030       {% if block.created %}
0031         <tr>
0032           <td><b>{% i18n "Created:" %}&nbsp;</b></td><td>{{ block.created }}</td>
0033         </tr>
0034       {% endif %}
0035       {% if block.fingerprint %}
0036         <tr>
0037           <td><b>{% i18n "Fingerprint:" %}&nbsp;</b></td><td>{{ block.fingerprint }}</td>
0038         </tr>
0039       {% endif %}
0040       </table>
0041       {% if not block.searchRunning and not block.keyUrl %}
0042           <p>{% i18n "This key is unknown, it could not be found in your local keyring. You may want to import this key." %} </p>
0043       {% endif %}
0044     {% else %}
0045         <p class="error">{% i18n "Error while loading key: %1" block.error %}</p>
0046     {% endif %}
0047     <a href="kmail:hideSignatureDetails">{% i18n "Hide key details" %}</a>
0048     {% if block.keyUrl %}
0049         | <a href="{{ block.keyUrl }}">{% i18n "Open in Kleopatra" %}</a>
0050     {% endif %}
0051   {% else %}
0052     <a href="kmail:showSignatureDetails">{% i18n "Show key details ..." %}</a>
0053   {% endif %}
0054     | <a href="{{ block.importUrl }}">{% i18n "Import key" %}</a>
0055     </div>
0056 </td></tr>
0057 <tr class="keyH"><td>&nbsp;</td></tr>
0058 </table>