mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
24 lines
553 B
PHP
24 lines
553 B
PHP
<?php
|
|
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'moduleTitle' => 'Series Facturas',
|
|
'nombre' => 'Nombre',
|
|
'tipo' => 'Tipo',
|
|
'formato' => 'Formato',
|
|
'next' => 'Próxima',
|
|
'grupo' => 'Grupo',
|
|
'validation' => [
|
|
'id' => [
|
|
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
|
],
|
|
|
|
'nombre' => [
|
|
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
|
'required' => 'El campo {field} es obligatorio.',
|
|
],
|
|
|
|
],
|
|
|
|
]; |