mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Falta testear funcionamiento completo. Edit no funciona
This commit is contained in:
85
ci4/app/Language/en/Proveedores.php
Normal file
85
ci4/app/Language/en/Proveedores.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'cif' => 'CIF',
|
||||
'ciudad' => 'City',
|
||||
'cp' => 'Postal code',
|
||||
'createdAt' => 'Created At',
|
||||
'deletedAt' => 'Deleted At',
|
||||
'direccion' => 'Address',
|
||||
'email' => 'Email',
|
||||
'id' => 'ID',
|
||||
'isDeleted' => 'Is Deleted',
|
||||
'moduleTitle' => 'Suppliers',
|
||||
'nombre' => 'Name',
|
||||
'paisId' => 'Country',
|
||||
'personaContacto' => 'Contact Person',
|
||||
'propiedades' => 'Properties',
|
||||
'proveedor' => 'Supplier',
|
||||
'proveedorList' => 'Suppliers List',
|
||||
'proveedores' => 'Suppliers',
|
||||
'provinciaId' => 'Region',
|
||||
'razonSocial' => 'Business Name',
|
||||
'telefono' => 'Phone',
|
||||
'tipoId' => 'Type',
|
||||
'updatedAt' => 'Updated At',
|
||||
'validation' => [
|
||||
'cif' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'ciudad' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'cp' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'direccion' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'persona_contacto' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'razon_social' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'telefono' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'email' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'valid_email' => 'The {field} field must contain a valid email address.',
|
||||
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tipo' => [
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user