mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
96 lines
2.5 KiB
PHP
Executable File
96 lines
2.5 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
return [
|
|
'ajuste' => 'Adjustment',
|
|
'ajusteTotalPedido' => 'Order Total Adjustment',
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'formulaPrice' => 'Formula Price',
|
|
'id' => 'ID',
|
|
'moduleTitle' => 'Binding rates',
|
|
'nombre' => 'Name',
|
|
'precioMax' => 'Price Max',
|
|
'precioMin' => 'Price Min',
|
|
'precioMin' => 'Min Price',
|
|
'importeFijo' => 'Fixed amount',
|
|
'margen' => 'Margin',
|
|
'tarifaencuadernacion' => 'Binding rate',
|
|
'tarifaencuadernacionList' => 'Binding rates List',
|
|
'tarifasencuadernacion' => 'Binding rates',
|
|
'tiradaMax' => 'Print Max',
|
|
'tiradaMin' => 'Print Min',
|
|
'mostrar_en_presupuesto' => 'Show in budget',
|
|
'updatedAt' => 'Updated At',
|
|
'userCreatedId' => 'User Created ID',
|
|
'userUpdateId' => 'User Update ID',
|
|
'por_horas' => 'Hourly rate?',
|
|
'sureToChange' => 'Are you sure to change this option?',
|
|
'sureToChangePorHorasText' => 'This operation can\'t undone, and the price lines will change.',
|
|
'validation' => [
|
|
'ajuste' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'ajuste_total_pedido' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'formula_price' => [
|
|
'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.',
|
|
|
|
],
|
|
|
|
'precio_max' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'precio_min' => [
|
|
'decimal' => 'The {field} field must contain a decimal number.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'tirada_max' => [
|
|
'integer' => 'The {field} field must contain an integer.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'tirada_min' => [
|
|
'integer' => 'The {field} field must contain an integer.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'user_created_id' => [
|
|
'integer' => 'The {field} field must contain an integer.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'user_updated_id' => [
|
|
'integer' => 'The {field} field must contain an integer.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |