mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadida funcion clientes desde ozar
This commit is contained in:
44
ci4/app/Language/es/Provincias.php
Normal file
44
ci4/app/Language/es/Provincias.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'code' => 'Code',
|
||||
'createdAt' => 'Creado el',
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Provincias',
|
||||
'nombre' => 'Nombre',
|
||||
'paisId' => 'Pais ID',
|
||||
'provincia' => 'Provincia',
|
||||
'provinciaList' => 'Provincia List',
|
||||
'provincias' => 'Provincias',
|
||||
'updatedAt' => 'Actualizado el',
|
||||
'validation' => [
|
||||
'id' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
|
||||
],
|
||||
|
||||
'pais_id' => [
|
||||
'integer' => 'El campo {field} debe contener un número entero.',
|
||||
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'code' => [
|
||||
'is_unique' => 'The {field} field must contain a unique value',
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user