mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'main' into 'feat/catalogo'
Main See merge request jjimenez/safekat!718
This commit is contained in:
0
ci4/app/Language/en/Auth.php
Normal file → Executable file
0
ci4/app/Language/en/Auth.php
Normal file → Executable file
0
ci4/app/Language/en/Chat.php
Normal file → Executable file
0
ci4/app/Language/en/Chat.php
Normal file → Executable file
0
ci4/app/Language/en/Facturas.php
Normal file → Executable file
0
ci4/app/Language/en/Facturas.php
Normal file → Executable file
0
ci4/app/Language/en/FormasPago.php
Normal file → Executable file
0
ci4/app/Language/en/FormasPago.php
Normal file → Executable file
7
ci4/app/Language/en/Imposiciones.php
Executable file
7
ci4/app/Language/en/Imposiciones.php
Executable file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
|
||||
|
||||
];
|
||||
0
ci4/app/Language/en/Pedidos.php
Normal file → Executable file
0
ci4/app/Language/en/Pedidos.php
Normal file → Executable file
0
ci4/app/Language/en/Produccion.php
Normal file → Executable file
0
ci4/app/Language/en/Produccion.php
Normal file → Executable file
0
ci4/app/Language/en/Wiki.php
Normal file → Executable file
0
ci4/app/Language/en/Wiki.php
Normal file → Executable file
@ -834,4 +834,9 @@ return [
|
||||
"menu_soporte_ticket_list" => "Mis tickets",
|
||||
"me" => "Yo",
|
||||
|
||||
"menu_maquinista" => "Maquinista",
|
||||
"menu_maquinista_maquinas" => "Máquinas",
|
||||
"menu_maquinista_colas" => "Colas",
|
||||
"menu_maquinista_mantenimiento" => "Mantenimiento",
|
||||
|
||||
];
|
||||
0
ci4/app/Language/es/Auth.php
Normal file → Executable file
0
ci4/app/Language/es/Auth.php
Normal file → Executable file
0
ci4/app/Language/es/Chat.php
Normal file → Executable file
0
ci4/app/Language/es/Chat.php
Normal file → Executable file
0
ci4/app/Language/es/ConfigVariables.php
Normal file → Executable file
0
ci4/app/Language/es/ConfigVariables.php
Normal file → Executable file
0
ci4/app/Language/es/ErrorPresupuesto.php
Normal file → Executable file
0
ci4/app/Language/es/ErrorPresupuesto.php
Normal file → Executable file
0
ci4/app/Language/es/Facturas.php
Normal file → Executable file
0
ci4/app/Language/es/Facturas.php
Normal file → Executable file
38
ci4/app/Language/es/Imposiciones.php
Executable file
38
ci4/app/Language/es/Imposiciones.php
Executable file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
"imposicionList" => "Lista imposiciones",
|
||||
"id" => "id",
|
||||
"ancho" => "Ancho",
|
||||
"alto" => "Alto",
|
||||
"unidades" => "Unidades",
|
||||
"orientacion" => "Orientación",
|
||||
"maquina" => "Máquina",
|
||||
"etiqueta" => "Etiqueta",
|
||||
"imposicion" => "Imposición",
|
||||
"btnNewImposicion" => "Nueva imposición",
|
||||
"btnNewImposicionEsquema" => "Nuevo esquema",
|
||||
"H" => "Horizontal",
|
||||
"V" => "Vertical",
|
||||
"imposicion_esquemas" => "Esquemas",
|
||||
"imposicion_esquema" => "Esquema",
|
||||
"imposicion_esquema_drawing" => "Esquema imposicion dibujo",
|
||||
"imposicion_esquema_link" => "Imposicion esquema link",
|
||||
|
||||
"validation" => [
|
||||
"alto" => [
|
||||
"required" => "Este campo es obligatorio",
|
||||
],
|
||||
"ancho" => [
|
||||
"required" => "Este campo es obligatorio",
|
||||
]
|
||||
],
|
||||
"esquema" => [
|
||||
"name" => "Nombre",
|
||||
"rows" => "Filas",
|
||||
"columns" => "Columnas",
|
||||
"rotativa" => "Rotativa",
|
||||
"cosido" => "Cosido/Grapado"
|
||||
]
|
||||
];
|
||||
0
ci4/app/Language/es/Logistica.php
Normal file → Executable file
0
ci4/app/Language/es/Logistica.php
Normal file → Executable file
0
ci4/app/Language/es/MaquinaTarea.php
Normal file → Executable file
0
ci4/app/Language/es/MaquinaTarea.php
Normal file → Executable file
0
ci4/app/Language/es/Pedidos.php
Normal file → Executable file
0
ci4/app/Language/es/Pedidos.php
Normal file → Executable file
14
ci4/app/Language/es/Produccion.php
Normal file → Executable file
14
ci4/app/Language/es/Produccion.php
Normal file → Executable file
@ -71,6 +71,7 @@ return [
|
||||
"tiempo_consumido" => "Tiempo consumido",
|
||||
"tiempo_estimado" => "Tiempo estimado",
|
||||
"finalizar_orden" => "Finalizar orden",
|
||||
"reactivar_orden" => "Reactivar",
|
||||
"comments" => "Comentarios orden trabajo",
|
||||
"preview_pdf" => "Previsualizar PDF",
|
||||
"imprimir_codigo_safekat" => "Imprimir código SAFEKAT",
|
||||
@ -105,13 +106,22 @@ return [
|
||||
"pre_codbarras" => "Revisión código barras",
|
||||
"pre_imposicion" => "Revisión imposición",
|
||||
|
||||
|
||||
"iniciada" => "Iniciada",
|
||||
"finalizada" => "Finalizada",
|
||||
"error" => "Error",
|
||||
"pendiente_material" => "Pendiente material",
|
||||
"empty" => "Vacio",
|
||||
|
||||
"errors" => [
|
||||
"date_not_exist" => "Esta fecha no existe en el modelo",
|
||||
"attr_not_exist" => "El atributo {0,string} no pertenece al modelo Pedido"
|
||||
|
||||
]
|
||||
],
|
||||
|
||||
"progress_preimpresion" => "Preimpresión",
|
||||
"progress_logistica" => "Ferro/Logística",
|
||||
"progress_impresion" => "Impresión",
|
||||
"progress_manipulado" => "Manipulado/Acabado"
|
||||
|
||||
|
||||
|
||||
|
||||
0
ci4/app/Language/es/RolesPermisos.php
Normal file → Executable file
0
ci4/app/Language/es/RolesPermisos.php
Normal file → Executable file
0
ci4/app/Language/es/SeriesFacturas.php
Normal file → Executable file
0
ci4/app/Language/es/SeriesFacturas.php
Normal file → Executable file
0
ci4/app/Language/es/Tickets.php
Normal file → Executable file
0
ci4/app/Language/es/Tickets.php
Normal file → Executable file
0
ci4/app/Language/es/Ubicaciones.php
Normal file → Executable file
0
ci4/app/Language/es/Ubicaciones.php
Normal file → Executable file
0
ci4/app/Language/es/Wiki.php
Normal file → Executable file
0
ci4/app/Language/es/Wiki.php
Normal file → Executable file
Reference in New Issue
Block a user