4774-traducciones #853

Open
carlossa wants to merge 34 commits from 4774-traducciones into dev
4 changed files with 21 additions and 1 deletions
Showing only changes of commit 74da17c8e2 - Show all commits

View File

@ -774,6 +774,7 @@ export default {
notifications: 'Notifications', notifications: 'Notifications',
workerCreate: 'New worker', workerCreate: 'New worker',
department: 'Department', department: 'Department',
TraductionsVn: 'Traductions',
}, },
list: { list: {
name: 'Name', name: 'Name',

View File

@ -774,6 +774,7 @@ export default {
notifications: 'Notificaciones', notifications: 'Notificaciones',
workerCreate: 'Nuevo trabajador', workerCreate: 'Nuevo trabajador',
department: 'Departamentos', department: 'Departamentos',
TraductionsVn: 'Traducciones',
}, },
list: { list: {
name: 'Nombre', name: 'Nombre',

View File

@ -0,0 +1,9 @@
<script setup></script>
<template>
<QTable> </QTable>
</template>
<i18n>
</i18n>

View File

@ -10,7 +10,7 @@ export default {
component: RouterView, component: RouterView,
redirect: { name: 'WorkerMain' }, redirect: { name: 'WorkerMain' },
menus: { menus: {
main: ['WorkerList', 'WorkerDepartment'], main: ['WorkerList', 'WorkerDepartment', 'TraductionsVn'],
card: ['WorkerNotificationsManager'], card: ['WorkerNotificationsManager'],
departmentCard: ['BasicData'], departmentCard: ['BasicData'],
}, },
@ -39,6 +39,15 @@ export default {
}, },
component: () => import('src/pages/Worker/WorkerDepartment.vue'), component: () => import('src/pages/Worker/WorkerDepartment.vue'),
}, },
{
path: 'traductionsVn',
name: 'TraductionsVn',
meta: {
title: 'TraductionsVn',
icon: 'history_edu',
},
component: () => import('src/pages/Worker/TraductionsVn.vue'),
},
{ {
path: 'create', path: 'create',
name: 'WorkerCreate', name: 'WorkerCreate',