23 lines
824 B
PHP
23 lines
824 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' => '属性组',
|
||
'create_at_groups' => '创建属性组',
|
||
'error_cannot_delete_attribute_used' => '属性组不能删除,由于该属性组被属性(属性ID: :attributes)使用',
|
||
|
||
'attribute_groups_index' => '属性组列表',
|
||
'attribute_groups_create' => '创建属性组',
|
||
'attribute_groups_show' => '属性组详情',
|
||
'attribute_groups_update' => '更新属性组',
|
||
'attribute_groups_delete' => '删除属性组',
|
||
];
|