diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index 3853e3ab6..3eb464937 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -830,7 +830,7 @@ worker: calendar: Calendar timeControl: Time control locker: Locker - + formation: Formation list: name: Name email: Email diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index a8b9ecd51..652fb7e6e 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -828,6 +828,7 @@ worker: calendar: Calendario timeControl: Control de horario locker: Taquilla + formation: FormaciĆ³n list: name: Nombre email: Email diff --git a/src/router/modules/worker.js b/src/router/modules/worker.js index 384978d13..281ee08a0 100644 --- a/src/router/modules/worker.js +++ b/src/router/modules/worker.js @@ -23,6 +23,7 @@ export default { 'WorkerDms', 'WorkerTimeControl', 'WorkerLocker', + 'WorkerFormation', ], departmentCard: ['BasicData'], }, @@ -177,6 +178,15 @@ export default { }, component: () => import('src/pages/Worker/Card/WorkerLocker.vue'), }, + { + name: 'WorkerFormation', + path: 'formation', + meta: { + title: 'formation', + icon: 'clinical_notes', + }, + component: () => import('src/pages/Worker/Card/WorkerFormation.vue'), + }, ], }, ],