55 lines
1.9 KiB
PHP
55 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'nummer' => 'Bestellnummer',
|
|
'customer_name' => 'Kundenname',
|
|
'payment_method' => 'Zahlungsmethode',
|
|
'email' => 'E-Mail',
|
|
'telephone' => 'Telefon kontaktieren',
|
|
'created_at' => 'Erstellungszeit',
|
|
'updated_at' => 'aktualisierte Zeit',
|
|
'status' => 'Status',
|
|
'status_format' => 'status',
|
|
'total' => 'Bestellsumme',
|
|
'express_number' => 'Express-Bestellnummer',
|
|
'express_company' => 'express company',
|
|
'order_shipments' => 'Sendungsinformationen',
|
|
|
|
'address_info' => 'Adressinformationen',
|
|
'shipping_address' => 'Lieferadresse',
|
|
'payment_address' => 'Rechnungsadresse',
|
|
'order_status' => 'Bestellstatus',
|
|
'current_status' => 'aktueller Status',
|
|
'change_to_status' => 'Status ändern',
|
|
'comment' => 'remark information',
|
|
'submit_status' => 'Status aktualisieren',
|
|
|
|
'product_info' => 'Produktinformationen',
|
|
'product_name' => 'name',
|
|
'product_price' => 'Preis',
|
|
'product_sub_price' => 'Zwischensumme',
|
|
'product_quantity' => 'Menge',
|
|
'product_sku' => 'SKU',
|
|
|
|
'action_history' => 'Betriebsprotokoll',
|
|
'history_status' => 'status',
|
|
'history_comment' => 'Bemerkungen',
|
|
'history_created_at' => 'Aktualisierungsdatum',
|
|
|
|
'unpaid' => 'zu bezahlen',
|
|
'paid' => 'bezahlt',
|
|
'shipped' => 'versandt',
|
|
'completed' => 'abgeschlossen',
|
|
'cancelled' => 'Storniert',
|
|
];
|