presupuestos direcciones!

This commit is contained in:
Jaime Jiménez
2023-12-18 15:29:10 +01:00
parent c435ba5a9f
commit 01d27ec480
13 changed files with 297 additions and 82 deletions

View File

@ -0,0 +1,27 @@
<?php
return [
'nuevaTitle' => 'New address',
'alias' => 'Alias',
'att' => 'Attn.',
'email' => 'Email',
'direccion' => 'Address',
'cp' => 'Zip Code',
'municipio' => 'Town',
'provincia' => 'City',
'ccaa' => 'Region',
'pais' => 'Country',
'telefono' => 'Phone',
'peso' => 'Weight',
'cantidad' => 'Quantity',
'precio' => 'Price',
'validation' => [
'max_length' => 'Max. length ',
'required' => 'Field required'
'valid_email' => 'The email is not valid',
],
'selectPais' => 'Select a country',
];

View File

@ -180,6 +180,8 @@ return [
// Envios
'envios' => 'Envios',
'recogerEnTaller' => 'Recoger en taller',
'cantidad' => 'Cantidad',
@ -335,7 +337,7 @@ return [
'presupuesto' => 'Presupuesto',
'presupuestoList' => 'Presupuesto List',
'presupuestos' => 'Presupuestos',
'recogerEnTaller' => 'Recoger EN Taller',
'referenciaCliente' => 'Referencia Cliente',
'responsable' => 'Responsable',
'serieId' => 'Serie ID',

View File

@ -0,0 +1,30 @@
<?php
return [
'nuevaTitle' => 'Añadir nueva dirección',
'alias' => 'Alias',
'att' => 'Att.',
'email' => 'Email',
'direccion' => 'Direccion',
'cp' => 'CP',
'municipio' => 'Ciudad',
'provincia' => 'Provincia',
'ccaa' => 'CCAA',
'pais' => 'País',
'telefono' => 'Teléfono',
'peso' => 'Peso',
'cantidad' => 'Cantidad',
'precio' => 'Precio',
'validation' => [
'max_length' => 'Max. valor caracteres alcanzado',
'required' => 'Campo obligatorio',
'valid_email' => 'El email introducido no es válido',
],
'selectPais' => 'Seleccione País',
'selectCcaa' => 'Seleccione CCAA',
'selectProvincia' => 'Seleccione Provincia',
'selectMunicipio' => 'Seleccione Municipio',
];