28 lines
811 B
PHP
28 lines
811 B
PHP
<?php
|
|
/**
|
|
* product.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'name' => 'nome',
|
|
'sku' => 'SKU',
|
|
'price' => 'prezzo',
|
|
'origin_price' => 'prezzo originale',
|
|
'cost_price' => 'prezzo di costo',
|
|
'brand' => 'marca',
|
|
'category' => 'Classificazione',
|
|
'model' => 'modello',
|
|
'quantity' => 'disponibile',
|
|
'image' => 'immagine',
|
|
|
|
'active' => 'sul ripiano',
|
|
'inactive' => 'prendere nota',
|
|
'has_been_inactive' => 'Questo articolo è stato interrotto',
|
|
];
|