26 lines
619 B
PHP
26 lines
619 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' => '기본 주소',
|
|
];
|