17 lines
579 B
PHP
17 lines
579 B
PHP
<?php
|
|
|
|
// The delivery register. A row means the mail server accepted the message —
|
|
// which is the strongest thing an application can honestly claim.
|
|
return [
|
|
'title' => 'Mail sent',
|
|
'subtitle' => 'Every mail this installation has sent — when, to whom, with what subject. A row means the mail server accepted it.',
|
|
'search' => 'Search',
|
|
'search_hint' => 'Address or subject',
|
|
'empty' => 'Nothing has been sent yet.',
|
|
'col_when' => 'When',
|
|
'col_to' => 'To',
|
|
'col_subject' => 'Subject',
|
|
'col_kind' => 'Kind',
|
|
'by_hand' => 'By hand',
|
|
];
|