diff --git a/app/components/inbox/InboxList.vue b/app/components/inbox/InboxList.vue index e70fa35..f044a0d 100755 --- a/app/components/inbox/InboxList.vue +++ b/app/components/inbox/InboxList.vue @@ -709,7 +709,7 @@ useIntersectionObserver( {{ formatLocation(row.activity) }}

-
+
(() => [[{ - label: 'Actividades', - icon: 'i-lucide-calendar-days', +const links = [[{ + label: t('nav.bible_studies'), + icon: 'ph:books', to: '/actividades', + locale: locale.value, onSelect: () => { open.value = false } }, { - label: 'Conferencias', - icon: 'i-lucide-mic', + label: t("nav.conferences"), + icon: 'ph:books', to: '/conferencias', onSelect: () => { open.value = false } }, { - label: 'Mi lista', - icon: 'i-lucide-bookmark', - to: '/favoritos', - badge: favTotal.value > 0 ? String(favTotal.value) : undefined, + label: 'Sermones', + icon: 'ph:books', + to: '/sermones', onSelect: () => { open.value = false } -}]]) +}, { + label: 'Entrelineas', + icon: 'ph:list-magnifying-glass', + to: '/entrelineas', + onSelect: () => { open.value = false } +}, { + label: 'Imprenta', + icon: 'ph:printer', + to: '/imprenta', + onSelect: () => { open.value = false } +}, { + label: 'EBN', + icon: 'ph:chalkboard-teacher', + to: '/ebn', + onSelect: () => { open.value = false } +}]] satisfies NavigationMenuItem[][]