16 lines
572 B
PHP
16 lines
572 B
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Invoices',
|
|
'subtitle' => 'The invoices issued to you, as a PDF whenever you need one.',
|
|
'col_no' => 'Number',
|
|
'col_date' => 'Date',
|
|
'col_net' => 'Net',
|
|
'col_gross' => 'Gross',
|
|
'pdf' => 'PDF',
|
|
// A cancellation invoice: its own document with its own number, taking the
|
|
// original back in full — which is why its amounts are negative.
|
|
'storno' => 'Cancellation',
|
|
'empty' => 'No invoices yet. You will get the first one by email as soon as your payment is recorded, and it will appear here too.',
|
|
];
|