akaunting/resources/lang/en-GB/invoices.php

72 lines
2.4 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
return [
2018-12-11 18:42:27 +03:00
'invoice_number' => 'Invoice Number',
'invoice_date' => 'Invoice Date',
'total_price' => 'Total Price',
'due_date' => 'Due Date',
'order_number' => 'Order Number',
'bill_to' => 'Bill To',
2017-09-14 22:21:00 +03:00
2018-12-11 18:42:27 +03:00
'quantity' => 'Quantity',
'price' => 'Price',
'sub_total' => 'Subtotal',
'discount' => 'Discount',
'tax_total' => 'Tax Total',
'total' => 'Total',
2017-09-14 22:21:00 +03:00
2018-12-11 18:42:27 +03:00
'item_name' => 'Item Name|Item Names',
2017-09-14 22:21:00 +03:00
2018-12-11 18:42:27 +03:00
'show_discount' => ':discount% Discount',
'add_discount' => 'Add Discount',
'discount_desc' => 'of subtotal',
2018-12-11 18:42:27 +03:00
'payment_due' => 'Payment Due',
'paid' => 'Paid',
'histories' => 'Histories',
'payments' => 'Payments',
'add_payment' => 'Add Payment',
'mark_paid' => 'Mark Paid',
'mark_sent' => 'Mark Sent',
'download_pdf' => 'Download PDF',
'send_mail' => 'Send Email',
'all_invoices' => 'Login to view all invoices',
'create_invoice' => 'Create Invoice',
'send_invoice' => 'Send Invoice',
'get_paid' => 'Get Paid',
2017-09-14 22:21:00 +03:00
'status' => [
2018-12-11 18:42:27 +03:00
'draft' => 'Draft',
'sent' => 'Sent',
'viewed' => 'Viewed',
'approved' => 'Approved',
'partial' => 'Partial',
'paid' => 'Paid',
2017-09-14 22:21:00 +03:00
],
2017-11-07 05:11:03 +03:00
'messages' => [
2018-12-11 18:42:27 +03:00
'email_sent' => 'Invoice email has been sent successfully!',
'marked_sent' => 'Invoice marked as sent successfully!',
'email_required' => 'No email address for this customer!',
'draft' => 'This is a <b>DRAFT</b> invoice and will be reflected to charts after it gets sent.',
2018-10-29 15:36:23 +03:00
'status' => [
2018-12-11 18:42:27 +03:00
'created' => 'Created on :date',
'send' => [
2018-10-29 15:36:23 +03:00
'draft' => 'Not sent',
2018-10-29 18:58:08 +03:00
'sent' => 'Sent on :date',
2018-10-29 15:36:23 +03:00
],
2018-12-11 18:42:27 +03:00
'paid' => [
2018-10-29 15:36:23 +03:00
'await' => 'Awaiting payment',
],
],
2017-11-07 05:11:03 +03:00
],
2017-11-16 20:27:30 +03:00
'notification' => [
2018-12-11 18:42:27 +03:00
'message' => 'You are receiving this email because you have an upcoming :amount invoice to :customer customer.',
'button' => 'Pay Now',
2017-11-16 20:27:30 +03:00
],
2017-09-14 22:21:00 +03:00
];