mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
papel generico terminado. papel impresion a falta de maquinas y tipologias
This commit is contained in:
@ -682,6 +682,7 @@ return [
|
||||
"menu_imposiciones" => "Impositions",
|
||||
"menu_maquina" => "Machines",
|
||||
"menu_papelgenerico" => "Generic paper",
|
||||
"menu_papelimpresion" => "Printing paper",
|
||||
"menu_seriefactura" => "Billing series",
|
||||
"menu_serviciocliente" => "Customer service",
|
||||
"menu_tamanioformatos" => "Format size",
|
||||
|
||||
@ -17,6 +17,9 @@ return [
|
||||
'papelesGenericos' => 'Generic Paper',
|
||||
'showInClient' => 'Show in Client',
|
||||
'updatedAt' => 'Updated At',
|
||||
|
||||
'Form_acordion_title' => 'Print papers associated',
|
||||
|
||||
'validation' => [
|
||||
'code' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
117
ci4/app/Language/en/PapelImpresion.php
Normal file
117
ci4/app/Language/en/PapelImpresion.php
Normal file
@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'alto' => 'Height',
|
||||
'ancho' => 'Width',
|
||||
'bn' => 'B/N',
|
||||
'color' => 'Colour',
|
||||
'createdAt' => 'Created At',
|
||||
'cubierta' => 'Cover',
|
||||
'defecto' => 'Default',
|
||||
'deletedAt' => 'Deleted At',
|
||||
'espesor' => 'Thickness',
|
||||
'gramaje' => 'Grammage',
|
||||
'id' => 'ID',
|
||||
'isDeleted' => 'Is Deleted',
|
||||
'mano' => 'Hand',
|
||||
'margen' => 'Margin',
|
||||
'moduleTitle' => 'Print papers',
|
||||
'nombre' => 'Name',
|
||||
'papelGenericoId' => 'Generic paper',
|
||||
'papelImpresion' => 'Print paper',
|
||||
'papelImpresionList' => 'Print Paper List',
|
||||
'papelesImpresion' => 'Print papers',
|
||||
'papelesimpresion' => 'Print papers',
|
||||
'pesoPorPliego' => 'Weight per sheet',
|
||||
'portada' => 'Cover',
|
||||
'precioPliego' => 'Sheet price',
|
||||
'precioTonelada' => 'Ton price',
|
||||
'referencia' => 'Reference',
|
||||
'rotativa' => 'Rotary',
|
||||
'updatedAt' => 'Updated At',
|
||||
'userUpdateId' => 'User Update ID',
|
||||
'validation' => [
|
||||
'espesor_update' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
|
||||
],
|
||||
|
||||
'alto' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'ancho' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'espesor' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'gramaje' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'mano' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'margen' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'papel_generico_id' => [
|
||||
'integer' => 'The {field} field must contain an integer.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'peso_por_pliego' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'precio_pliego' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'precio_tonelada' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'referencia' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
@ -682,6 +682,7 @@ return [
|
||||
"menu_imposiciones" => "Imposiciones",
|
||||
"menu_maquina" => "Maquinas",
|
||||
"menu_papelgenerico" => "Papel generico",
|
||||
"menu_papelimpresion" => "Papel impresión",
|
||||
"menu_seriefactura" => "Series facturas",
|
||||
"menu_serviciocliente" => "Servicio cliente",
|
||||
"menu_tamanioformatos" => "Tamaño formatos",
|
||||
|
||||
@ -17,6 +17,9 @@ return [
|
||||
'papelesGenericos' => 'Papeles Genéricos',
|
||||
'showInClient' => 'Mostrar en cliente',
|
||||
'updatedAt' => 'Updated At',
|
||||
|
||||
'Form_acordion_title' => 'Papeles impresion asociados',
|
||||
|
||||
'validation' => [
|
||||
'code' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
|
||||
117
ci4/app/Language/es/PapelImpresion.php
Normal file
117
ci4/app/Language/es/PapelImpresion.php
Normal file
@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'alto' => 'Alto',
|
||||
'ancho' => 'Ancho',
|
||||
'bn' => 'B/N',
|
||||
'color' => 'Color',
|
||||
'createdAt' => 'Creado en',
|
||||
'cubierta' => 'Cubierta',
|
||||
'defecto' => 'Por defecto',
|
||||
'deletedAt' => 'Borrado en',
|
||||
'espesor' => 'Espesor',
|
||||
'gramaje' => 'Gramaje',
|
||||
'id' => 'ID',
|
||||
'isDeleted' => 'Borrado',
|
||||
'mano' => 'Mano',
|
||||
'margen' => 'Margen',
|
||||
'moduleTitle' => 'Papeles Impresion',
|
||||
'nombre' => 'Nombre',
|
||||
'papelGenericoId' => 'Papel Generico',
|
||||
'papelImpresion' => 'Papel Impresion',
|
||||
'papelImpresionList' => 'Lista Papel Impresion',
|
||||
'papelesImpresion' => 'Papeles Impresion',
|
||||
'papelesimpresion' => 'Papeles Impresion',
|
||||
'pesoPorPliego' => 'Peso Por Pliego',
|
||||
'portada' => 'Portada',
|
||||
'precioPliego' => 'Precio Pliego',
|
||||
'precioTonelada' => 'Precio Tonelada',
|
||||
'referencia' => 'Referencia',
|
||||
'rotativa' => 'Rotativa',
|
||||
'updatedAt' => 'Actualizado en',
|
||||
'userUpdateId' => 'ID usuario actualización',
|
||||
'validation' => [
|
||||
'espesor_update' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
|
||||
],
|
||||
|
||||
'alto' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'ancho' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'espesor' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'gramaje' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'mano' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'margen' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'papel_generico_id' => [
|
||||
'integer' => 'The {field} field must contain an integer.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'peso_por_pliego' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'precio_pliego' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'precio_tonelada' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'referencia' => [
|
||||
'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