Project

General

Profile

« Previous | Next » 

Revision fe445cb3

Added by Tamino Steinert 7 months ago

EmailJournalAttachment: Verarbeitet-Status von Anhängen anzeigen

View differences:

locale/de/all
'Private E-mail' => 'Private E-Mail',
'Private Phone' => 'Privates Tel.',
'Problem' => 'Problem',
'Processed' => 'Verarbeitet',
'Processed attachments with function \'#1\':' => 'Anhänge verarbeitet mit Funktion \'#1\':',
'Processed successfully: ' => 'Erfolgreich verarbeitet: ',
'Produce' => 'Fertigen',
locale/en/all
'Private E-mail' => '',
'Private Phone' => '',
'Problem' => '',
'Processed' => '',
'Processed attachments with function \'#1\':' => '',
'Processed successfully: ' => '',
'Produce' => '',
templates/design40_webpages/email_journal/show.html
<th>[% 'Attachment name' | $T8 %]</th>
<th>[% 'MIME type' | $T8 %]</th>
<th>[% 'Size' | $T8 %]</th>
<th>[% 'Processed' | $T8 %]</th>
</tr>
</thead>
<tbody>
......
<td>[% L.link(SELF.url_for(action="download_attachment", id=attachment.id), attachment.name) %]</td>
<td>[% HTML.escape(attachment.mime_type) %]</td>
<td>[% HTML.escape(LxERP.format_amount(attachment.content.length, 0)) %]</td>
<td>[% HTML.escape(attachment.processed_as_bool_yn) %]</td>
</tr>
[% END %]
</tbody>
templates/webpages/email_journal/show.html
<th>[% LxERP.t8("Attachment name") %]</th>
<th>[% LxERP.t8("MIME type") %]</th>
<th>[% LxERP.t8("Size") %]</th>
<th>[% LxERP.t8("Processed") %]</th>
</tr>
</thead>
......
<td>[% L.link(SELF.url_for(action="download_attachment", id=attachment.id), attachment.name) %]</td>
<td>[% HTML.escape(attachment.mime_type) %]</td>
<td>[% HTML.escape(LxERP.format_amount(attachment.content.length, 0)) %]</td>
<td>[% HTML.escape(attachment.processed_as_bool_yn) %]</td>
</tr>
[% END %]
</tbody>

Also available in: Unified diff