first upload all files
This commit is contained in:
6
Modules/Order/Resources/lang/en/mail.php
Normal file
6
Modules/Order/Resources/lang/en/mail.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'your_order_status_changed_subject' => 'Your order status is changed',
|
||||
'your_order_status_changed_text' => 'Your order #:order_id status is changed to :status.',
|
||||
];
|
||||
6
Modules/Order/Resources/lang/en/messages.php
Normal file
6
Modules/Order/Resources/lang/en/messages.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'status_updated' => 'Order status has been updated.',
|
||||
'invoice_sent' => 'Invoice has been sent to the customer.',
|
||||
];
|
||||
43
Modules/Order/Resources/lang/en/orders.php
Normal file
43
Modules/Order/Resources/lang/en/orders.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'order' => 'Order',
|
||||
'orders' => 'Orders',
|
||||
'table' => [
|
||||
'customer_name' => 'Customer Name',
|
||||
'customer_email' => 'Customer Email',
|
||||
'total' => 'Total',
|
||||
],
|
||||
'send_email' => 'Send Email',
|
||||
'print' => 'Print',
|
||||
'order_and_account_information' => 'Order & Account Information',
|
||||
'order_information' => 'Order Information',
|
||||
'order_id' => 'Order ID',
|
||||
'order_date' => 'Order Date',
|
||||
'order_status' => 'Order Status',
|
||||
'shipping_method' => 'Shipping Method',
|
||||
'payment_method' => 'Payment Method',
|
||||
'currency' => 'Currency',
|
||||
'currency_rate' => 'Currency Rate',
|
||||
'order_note' => 'Order Note',
|
||||
'account_information' => 'Account Information',
|
||||
'customer_name' => 'Customer Name',
|
||||
'customer_email' => 'Customer Email',
|
||||
'customer_phone' => 'Customer Phone',
|
||||
'customer_group' => 'Customer Group',
|
||||
'guest' => 'Guest',
|
||||
'registered' => 'Registered',
|
||||
'address_information' => 'Address Information',
|
||||
'billing_address' => 'Billing Address',
|
||||
'shipping_address' => 'Shipping Address',
|
||||
'items_ordered' => 'Items Ordered',
|
||||
'product' => 'Product',
|
||||
'unit_price' => 'Unit Price',
|
||||
'quantity' => 'Quantity',
|
||||
'line_total' => 'Line Total',
|
||||
'subtotal' => 'Subtotal',
|
||||
'shipping_method' => 'Shipping Method',
|
||||
'coupon' => 'Coupon',
|
||||
'tax' => 'Tax',
|
||||
'total' => 'Total',
|
||||
];
|
||||
7
Modules/Order/Resources/lang/en/permissions.php
Normal file
7
Modules/Order/Resources/lang/en/permissions.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'index' => 'Index Order',
|
||||
'show' => 'Show Order',
|
||||
'edit' => 'Edit Order',
|
||||
];
|
||||
20
Modules/Order/Resources/lang/en/print.php
Normal file
20
Modules/Order/Resources/lang/en/print.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'invoice' => 'INVOICE',
|
||||
'invoice_id' => 'Invoice ID',
|
||||
'date' => 'Date',
|
||||
'order_details' => 'Order Details',
|
||||
'email' => 'Email',
|
||||
'phone' => 'Phone',
|
||||
'shipping_method' => 'Shipping Method',
|
||||
'payment_method' => 'Payment Method',
|
||||
'billing_address' => 'Billing Address',
|
||||
'shipping_address' => 'Shipping Address',
|
||||
'product' => 'Product',
|
||||
'unit_price' => 'Unit Price',
|
||||
'quantity' => 'Quantity',
|
||||
'line_total' => 'Line Total',
|
||||
'subtotal' => 'Subtotal',
|
||||
'total' => 'Total',
|
||||
];
|
||||
11
Modules/Order/Resources/lang/en/statuses.php
Normal file
11
Modules/Order/Resources/lang/en/statuses.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'canceled' => 'Canceled',
|
||||
'completed' => 'Completed',
|
||||
'on_hold' => 'On Hold',
|
||||
'pending' => 'Pending',
|
||||
'pending_payment' => 'Pending Payment',
|
||||
'processing' => 'Processing',
|
||||
'refunded' => 'Refunded',
|
||||
];
|
||||
Reference in New Issue
Block a user