26 lines
638 B
PHP
26 lines
638 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' => 'Edit Address',
|
|
'name' => 'Name',
|
|
'phone' => 'Phone',
|
|
'country_id' => 'Country ID',
|
|
'zone' => 'Zone',
|
|
'zone_id' => 'Zone ID',
|
|
'address_1' => 'Address 1',
|
|
'address_2' => 'Address 2',
|
|
'address' => 'Address',
|
|
'enter_city' => 'Enter city',
|
|
'post_code' => 'Zip Code',
|
|
'default' => 'Default',
|
|
];
|