26 lines
699 B
PHP
26 lines
699 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' => 'Modifica indirizzo',
|
|
'name' => 'Nome',
|
|
'phone' => 'Numero di telefono',
|
|
'country_id' => 'ID Paese',
|
|
'zone' => 'Provincia',
|
|
'zone_id' => 'ID provincia',
|
|
'address_1' => 'Indirizzo 1',
|
|
'address_2' => 'Indirizzo 2',
|
|
'address' => 'Indirizzo',
|
|
'enter_city' => 'Cnserire indirizzo',
|
|
'post_code' => 'Codice postale',
|
|
'default' => 'Indirizzo predefinito',
|
|
];
|