48 lines
1.7 KiB
PHP
48 lines
1.7 KiB
PHP
<?php
|
||
|
||
return [
|
||
'title' => 'Invoice',
|
||
'number' => 'Invoice no.',
|
||
'date' => 'Date',
|
||
'due' => 'Due',
|
||
'customer_number' => 'Customer',
|
||
'customer_vat' => 'VAT ID',
|
||
// Our own VAT number in the footer. It sat there bare between the register
|
||
// number and the court: anybody scanning the document for "UID" found the
|
||
// recipient's and not the issuer's.
|
||
'issuer_vat' => 'VAT ID',
|
||
'page' => 'Page',
|
||
|
||
'col_pos' => 'Pos',
|
||
'col_description' => 'Description',
|
||
'col_quantity' => 'Qty',
|
||
'col_unit_net' => 'Unit price net',
|
||
'col_total_net' => 'Total net',
|
||
'col_total_gross' => 'Total gross',
|
||
|
||
'discount' => 'Discount',
|
||
'surcharge' => 'Surcharge',
|
||
'col_unit_gross' => 'Unit price gross',
|
||
'subtotal' => 'Subtotal',
|
||
'adjustment' => 'Discount',
|
||
'net' => 'Net amount',
|
||
'tax' => 'VAT :rate %',
|
||
'gross' => 'Total',
|
||
|
||
'line_recurring' => 'monthly',
|
||
'line_once' => 'one-off',
|
||
'line_period' => 'Service period :from – :to',
|
||
'line_prorated' => 'charged pro rata for the remainder of the period',
|
||
'line_unnamed' => 'Service as billed by the payment provider',
|
||
'salutation' => 'Dear Sir or Madam,',
|
||
'intro' => 'we are pleased to invoice the services listed below.',
|
||
'payment_default' => 'Payable in full within :days days to the account shown below.',
|
||
'reverse_charge' => 'Reverse charge: VAT is to be accounted for by the recipient of the service.',
|
||
'payment_title' => 'Payment terms',
|
||
|
||
// A cancellation. Its own document with its own number — an issued invoice
|
||
// is never edited and never deleted.
|
||
'cancellation_title' => 'Cancellation invoice',
|
||
'cancellation_intro' => 'we hereby cancel invoice :number in full.',
|
||
];
|