mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
56 lines
1.5 KiB
PHP
Executable File
56 lines
1.5 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
return [
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'id' => 'ID',
|
|
'isDeleted' => 'Is Deleted',
|
|
'maquinaId' => 'Maquina',
|
|
'maquinasTarifaImpresion' => 'Tarifa Impresion Máquinas ',
|
|
'maquinasTarifaImpresionList' => 'Lista Tarifas Impresion Máquinas',
|
|
'maquinasTarifasImpresion' => 'Tarifas Impresion Máquinas',
|
|
'maquinastarifasimpresion' => 'Tarifas Impresion Máquinas',
|
|
'moduleTitle' => 'Tarifas Impresion máquina',
|
|
'precio' => 'Precio',
|
|
'predeterminado' => 'Predeterminado',
|
|
'tipo' => 'Tipo',
|
|
'updatedAt' => 'Updated At',
|
|
'userCreatedId' => 'User Created ID',
|
|
'userUpdatedId' => 'User Updated ID',
|
|
'uso' => 'Uso',
|
|
'interior' => 'Interior',
|
|
'cubierta' => 'Cubierta',
|
|
'sobrecubierta' => 'Sobrecubierta',
|
|
'negro' => 'Negro',
|
|
'color' => 'Color',
|
|
'negrohq' => 'Negro HQ',
|
|
'colorhq' => 'Color HQ',
|
|
'bicolor' => 'Bicolor',
|
|
'validation' => [
|
|
'duplicated_uso_tipo' => "Línea duplicada (la combinación 'uso' y 'tipo' ya existe)",
|
|
'cubierta_sobrecubierta_color' => "Cubierta y sobrecubierta solo permiten tipo 'color HQ'",
|
|
'tipo' => [
|
|
'in_list' => 'El campo {field} debe contener uno de: {param}.',
|
|
'required' => 'Campo obligatorio.',
|
|
|
|
],
|
|
|
|
'precio' => [
|
|
'decimal' => 'El campo {field} debe contener un número decimal.',
|
|
'required' => 'Campo obligatorio.',
|
|
|
|
],
|
|
|
|
'uso' => [
|
|
'max_length' => 'El campo {field} no puede exceder de {param} caracteres de longitud.',
|
|
'required' => 'Campo obligatorio.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |