26 lines
847 B
PHP
26 lines
847 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 [
|
|
'index' => '고객그룹',
|
|
'consumption_limit' => '소비한도',
|
|
'discount_rate' => '할인율',
|
|
'reward_points_factor' => '보너스 포인트 계수',
|
|
'integral_factor' => '적분계수 사용',
|
|
|
|
'customer_groups_index' => '고객 그룹 목록',
|
|
'customer_groups_create' => '고객 그룹 만들기',
|
|
'customer_groups_show' => '고객 그룹 상세',
|
|
'customer_groups_update' => '고객 그룹 업데이트',
|
|
'customer_groups_delete' => '고객 그룹 삭제',
|
|
'default_cannot_delete' => '기본 고객 그룹은 삭제할 수 없습니다.',
|
|
];
|