mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
|
|
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'moduleTitle' => 'Finish rates Lines',
|
|
'deleteLine' => 'the selected register',
|
|
'precioMax' => 'Max Price',
|
|
'precioMin' => 'Min Price',
|
|
'precioUnidad' => 'Price Unit',
|
|
'tiradaMax' => 'Print Max',
|
|
'tiradaMin' => 'Print Min',
|
|
'validation' => [
|
|
'duplicated_tirada' => "Duplicated line (the couple 'Print Min' and 'Print Max' must be unique)",
|
|
'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.',
|
|
|
|
],
|
|
|
|
'precio_unidad' => [
|
|
'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.',
|
|
|
|
],
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |