47 lines
1.8 KiB
PHP
47 lines
1.8 KiB
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' => 'Price',
|
|
'origin_price' => 'Origin Price',
|
|
'cost_price' => 'Cost Price',
|
|
'brand' => 'Brand',
|
|
'category' => 'Category',
|
|
'model' => 'Model',
|
|
'quantity' => 'Quantity',
|
|
'kg' => 'Kilogram',
|
|
'g' => 'Gram',
|
|
'oz' => 'Ounce',
|
|
'lb' => 'Pound',
|
|
'video' => 'Video',
|
|
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'has_been_inactive' => 'The product has been inactive',
|
|
'minimum_order' => 'Min Order',
|
|
'minimum_order_error' => 'The purchase quantity must be greater than or equal to :num',
|
|
'unit_of_measurement' => 'Unit of measurement',
|
|
'sales_method' => 'Sales method',
|
|
'sales_method_piece' => 'Sell by piece',
|
|
'sales_method_batches' => 'Sold in batches',
|
|
'one_batch_is_equal_to' => 'one batch is equal to',
|
|
'piece' => 'piece',
|
|
'batches' => 'batches',
|
|
'pieces_per_batch' => ':num :unit per batch',
|
|
'sales_method_piece_unit' => 'Sell by :unit',
|
|
'total_num' => ':num :unit in total',
|
|
'multiple_error' => 'The purchase quantity must be a multiple of :num',
|
|
'quantity_error_mini' => 'Purchase quantity error, the total purchase quantity of [:goods_name] must be greater than or equal to [:num]',
|
|
'quantity_error_multiple' => 'Purchase quantity error, the total purchase quantity of [:goods_name] must be a multiple of [:num]',
|
|
];
|