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

53 lines
1.2 KiB
PHP

<?php
return [
'id' => 'ID',
'moduleTitle' => 'Finish 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 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.',
],
'paginas_max' => [
'integer' => 'The field must contain an integer.',
'required' => 'The field is required.',
],
'paginas_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.',
],
],
];