first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View 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.',
];

View File

@@ -0,0 +1,6 @@
<?php
return [
'status_updated' => 'Order status has been updated.',
'invoice_sent' => 'Invoice has been sent to the customer.',
];

View 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',
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'index' => 'Index Order',
'show' => 'Show Order',
'edit' => 'Edit Order',
];

View 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',
];

View 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',
];