26 lines
639 B
PHP
26 lines
639 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' => 'デフォルトの住所',
|
||
];
|