mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'moduleTitle' => 'Binding rates Lines',
|
|
'deleteLine' => 'the selected register',
|
|
'precioMax' => 'Max Price',
|
|
'precioMin' => 'Min Price',
|
|
'precioUnidad' => 'Price Unit',
|
|
'paginasMax' => 'Max Pages',
|
|
'paginasMin' => 'Min Pages',
|
|
'margen' => 'Margin',
|
|
'validation' => [
|
|
'error_paginas_overlap' => 'The range [Min Pages, Max Pages] is overlapped with another one for the selected type.',
|
|
'error_paginas_range' => 'The field Min Pages must be lower than the field Max Pages',
|
|
'precio_max' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'precio_min' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'paginas_max' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'paginas_min' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
'margen' => [
|
|
'integer' => 'The field must contain a decimal number.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
]; |