26 lines
677 B
PHP
26 lines
677 B
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 [
|
|
'product_total' => 'Product Total',
|
|
'customer_view' => 'Benutzerbesuche',
|
|
'order_total' => 'Bestellmenge',
|
|
'customer_new' => 'Benutzer hinzufügen',
|
|
'order_amount' => 'Umsatz',
|
|
'yesterday' => 'gestern',
|
|
'day_before' => 'einen Tag vorher',
|
|
|
|
'order_report' => 'Bestellstatistik',
|
|
'latest_month' => 'Monat',
|
|
'latest_week' => 'Woche',
|
|
'latest_year' => 'ein Jahr',
|
|
];
|