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

54 lines
1.2 KiB
PHP
Executable File

<?php
return [
'id' => 'ID',
'moduleTitle' => 'Finish rates Lines',
'deleteLine' => 'the selected register',
'proveedor' => 'Provider',
'precioMax' => 'Max Price',
'precioMin' => 'Min Price',
'precioUnidad' => 'Price Unit',
'tiradaMax' => 'Max Printing',
'tiradaMin' => 'Min Printing',
'margen' => 'Margin',
'validation' => [
'error_tirada_overlap' => 'The range [Min Printing, Max Printing] is overlapped with another one for the selected type.',
'error_tirada_range' => 'The field Min Printing must be lower than the field Max Printing',
'precio_max' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'precio_min' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'tirada_max' => [
'integer' => 'The field must contain an integer.',
'required' => 'The field is required.',
],
'tirada_min' => [
'integer' => 'The field must contain an integer.',
'required' => 'The field is required.',
],
'margen' => [
'integer' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
],
];