mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
63 lines
1.5 KiB
PHP
63 lines
1.5 KiB
PHP
<?php
|
|
|
|
|
|
|
|
return [
|
|
'a domicilio' => 'Home delivery',
|
|
'cajas' => 'Boxes',
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'id' => 'ID',
|
|
'isDeleted' => 'Is Deleted',
|
|
'moduleTitle' => 'Weights and Costs',
|
|
'palets' => 'Pallets',
|
|
'pesoMax' => 'Max Weight',
|
|
'pesoMin' => 'Min Weight',
|
|
'precio' => 'Price',
|
|
'precioAdicional' => 'Additional Price',
|
|
'proveedorId' => 'Provider',
|
|
'tarifaEnvioId' => 'Shipping Rate',
|
|
'tarifaEnvioPrecio' => 'Weight and Cost',
|
|
'tarifaEnvioPrecioList' => 'Weights and Costs List',
|
|
'tarifasenviosprecios' => 'Weights and Costs',
|
|
'tipoEnvio' => 'Shipping type',
|
|
'updatedAt' => 'Updated At',
|
|
'userCreatedId' => 'User Created ID',
|
|
'userUpdatedId' => 'User Updated ID',
|
|
'validation' => [
|
|
'error_seleccion_zonas' => 'A line from the zones table must be selected before creating a new record.',
|
|
'peso_max' => [
|
|
'decimal' => 'The field must contain a decimal number.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'peso_min' => [
|
|
'decimal' => 'The field must contain a decimal number.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'precio' => [
|
|
'decimal' => 'The field must contain a decimal number.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'precio_adicional' => [
|
|
'decimal' => 'The field must contain a decimal number.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'tipo_envio' => [
|
|
'in_list' => 'The field must be one of the are included in the list.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |