26 lines
648 B
PHP
26 lines
648 B
PHP
<?php
|
|
/**
|
|
* address.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-22 18:18:59
|
|
* @modified 2022-08-22 18:18:59
|
|
*/
|
|
|
|
return [
|
|
'index' => '编辑地址',
|
|
'name' => '姓名',
|
|
'phone' => '电话号码',
|
|
'country_id' => '国家ID',
|
|
'zone' => '省份',
|
|
'zone_id' => '省份ID',
|
|
'address_1' => '地址1',
|
|
'address_2' => '地址2',
|
|
'address' => '地址',
|
|
'enter_city' => '输入地址',
|
|
'post_code' => '邮编',
|
|
'default' => '默认地址',
|
|
];
|