26 lines
711 B
PHP
26 lines
711 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' => 'Modifier l\'adresse',
|
|
'name' => 'Nom',
|
|
'phone' => 'numéro de téléphone',
|
|
'country_id' => 'Identifiant du pays',
|
|
'zone' => 'Province',
|
|
'zone_id' => 'Identifiant provincial',
|
|
'address_1' => 'Adresse 1',
|
|
'address_2' => 'Adresse 2',
|
|
'address' => 'adresse',
|
|
'enter_city' => 'entrer l\'adresse',
|
|
'post_code' => 'code postal',
|
|
'default' => 'Adresse par défaut',
|
|
];
|