22 lines
550 B
PHP
22 lines
550 B
PHP
<?php
|
|
/**
|
|
* zone.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-08-29 17:21:38
|
|
* @modified 2022-08-29 17:21:38
|
|
*/
|
|
return [
|
|
'zone_name' => '省份名称',
|
|
'country_of_origin' => '所属国家',
|
|
|
|
'zones_index' => '省份列表',
|
|
'zones_create' => '创建省份',
|
|
'zones_update' => '更新省份',
|
|
'zones_delete' => '删除省份',
|
|
|
|
'error_country' => '请选择国家',
|
|
];
|