mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'main' into 'dev/pedidos_v1'
Main See merge request jjimenez/safekat!272
This commit is contained in:
@ -688,7 +688,8 @@ return [
|
||||
"menu_maquina_defecto" => "Maquinas por defecto",
|
||||
"menu_papelgenerico" => "Papel generico",
|
||||
"menu_papelimpresion" => "Papel impresión",
|
||||
"menu_seriefactura" => "Series facturas",
|
||||
"menu_series_facturas" => "Series facturas",
|
||||
"menu_ubicaciones" => "Ubicaciones",
|
||||
"menu_serviciocliente" => "Servicio cliente",
|
||||
"menu_tamanioformatos" => "Tamaño formatos",
|
||||
"menu_tamaniolibros" => "Tamaño libros",
|
||||
|
||||
@ -42,6 +42,8 @@ return [
|
||||
'papelImpresionSection' => 'Papel impresión',
|
||||
'usuariosSection' => 'Usuarios',
|
||||
'rolesPermisosSection' => 'Roles y permisos',
|
||||
'ubicacionesSection' => 'Ubicaciones',
|
||||
'seriesFacturasSection' => 'Series facturas',
|
||||
'ajustesSection' => 'Ajustes',
|
||||
'actividadSection' => 'Accesos',
|
||||
|
||||
|
||||
24
ci4/app/Language/es/SeriesFacturas.php
Normal file
24
ci4/app/Language/es/SeriesFacturas.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
|
||||
return [
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Series Facturas',
|
||||
'nombre' => 'Nombre',
|
||||
'tipo' => 'Tipo',
|
||||
'formato' => 'Formato',
|
||||
'next' => 'Próxima',
|
||||
'grupo' => 'Grupo',
|
||||
'validation' => [
|
||||
'id' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
21
ci4/app/Language/es/Ubicaciones.php
Normal file
21
ci4/app/Language/es/Ubicaciones.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Ubicaciones',
|
||||
'nombre' => 'Nombre',
|
||||
'validation' => [
|
||||
'id' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'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