Till Brehm
2016-01-31 4070036454731508a7caa56d19e0d5bc9e64614c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
$wb['invoices_txt'] = 'Invoices';
$wb['invoice_no_txt'] = 'Invoice No.';
$wb['amount_txt'] = 'Amount';
$wb['date_txt'] = 'Date';
$wb['invoice_status_txt'] = 'Status';
$wb['no_invoices_txt'] = 'No Invoices available.';
$wb['paid_txt'] = 'Paid';
$wb['unpaid_txt'] = 'Unpaid';
$wb['paynow_txt'] = 'pay now';
$wb['proforma_txt'] = 'Proforma';
$wb['refunded_txt'] = 'Refunded';
$wb['not_refunded_txt'] = 'Not refunded';
$wb['invoice_type_invoice_txt'] = 'Invoice';
$wb['invoice_type_proforma_txt'] = 'Proforma';
$wb['invoice_type_refund_txt'] = 'Refund';
$wb['invoice_type_reminder_txt'] = 'Reminder';
?>