27 lines
878 B
PHP
27 lines
878 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 [
|
|
'list' => '注文リスト',
|
|
|
|
'order_quantity' => '注文数量',
|
|
'order_amount' => '注文金額',
|
|
'orders_index' => '注文リスト',
|
|
'orders_create' => '注文を作成',
|
|
'orders_show' => '注文の詳細',
|
|
'orders_export' => '輸出注文',
|
|
'orders_update' => '注文を更新',
|
|
'notify' => '通知するかどうか',
|
|
'orders_delete' => '注文を削除',
|
|
'orders_update_status' => '更新ステータス',
|
|
'error_status' => 'ステータスを選択してください',
|
|
];
|