Files
safekat/ci4/app/Language/en/TarifasEnviosPrecios.php

72 lines
1.9 KiB
PHP
Executable File

<?php
return [
'aDomicilio' => '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',
'margen' => 'Margin',
'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.',
'error_precio_overlap' => 'The range [Min Weight, Max Weight] is overlapped with another one for the selected provider and type.',
'error_precio_range' => 'The field Min Weight must be lower than the field Max Weight',
'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.',
],
'margen' => [
'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.',
],
],
];