28 lines
783 B
PHP
28 lines
783 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' => 'Name',
|
|
'sku' => 'SKU',
|
|
'price' => 'Preis',
|
|
'origin_price' => 'ursprünglicher Preis',
|
|
'cost_price' => 'Kostenpreis',
|
|
'brand' => 'Marke',
|
|
'category' => 'Kategorie',
|
|
'model' => 'Modell',
|
|
'quantity' => 'Lager',
|
|
'image' => 'Bild',
|
|
|
|
'active' => 'im Regal',
|
|
'inactive' => 'von der Stange',
|
|
'has_been_inactive' => 'Das Produkt wurde entfernt',
|
|
];
|