diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js index 41c556dc80..6328c8f5d3 100644 --- a/src/i18n/es/index.js +++ b/src/i18n/es/index.js @@ -398,8 +398,8 @@ export default { notificationsManager: { activeNotifications: 'Notificaciones activas', availableNotifications: 'Notificaciones disponibles', - subscribed: 'Te has suscrito a la notificación', - unsubscribed: 'Te has dado de baja de la notificación', + subscribed: 'Se ha suscrito a la notificación', + unsubscribed: 'Se ha dado de baja de la notificación', }, imageNotFound: 'No se ha encontrado la imagen', }, diff --git a/src/pages/Worker/Card/WorkerNotificationsManager.vue b/src/pages/Worker/Card/WorkerNotificationsManager.vue index 37a0bb5c6a..511144ff0a 100644 --- a/src/pages/Worker/Card/WorkerNotificationsManager.vue +++ b/src/pages/Worker/Card/WorkerNotificationsManager.vue @@ -1,10 +1,9 @@ diff --git a/src/router/modules/worker.js b/src/router/modules/worker.js index b6abd7c7e5..17a937c64d 100644 --- a/src/router/modules/worker.js +++ b/src/router/modules/worker.js @@ -11,7 +11,7 @@ export default { redirect: { name: 'WorkerMain' }, menus: { main: ['WorkerList'], - card: [], + card: ['WorkerNotificationsManager'], }, children: [ { @@ -42,6 +42,7 @@ export default { path: 'summary', meta: { title: 'summary', + icon: 'launch', }, component: () => import('src/pages/Worker/Card/WorkerSummary.vue'), }, @@ -50,6 +51,7 @@ export default { path: 'notifications', meta: { title: 'notifications', + icon: 'notifications', }, component: () => import('src/pages/Worker/Card/WorkerNotificationsManager.vue'), },