We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01777e7 commit 77f836aCopy full SHA for 77f836a
src/application/i18n/messages/en.json
@@ -108,6 +108,7 @@
108
"title": "My notes"
109
}
110
},
111
+ "navigation": "Navigation",
112
"updated": "Updated",
113
"title": "Home",
114
"authText": "You are not logged in, log in to see your recent notes"
src/presentation/pages/Home.vue
@@ -100,7 +100,7 @@ const activeMenuItem = ref<TabId>('recents');
100
const sectionTitle = computed(() => t(tabs[activeMenuItem.value].titleKey));
101
102
const verticalMenuItems = computed<VerticalMenuItem>(() => ({
103
- title: 'Navigation',
+ title: t('home.navigation'),
104
isActive: false,
105
items: (Object.keys(tabs) as TabId[]).map(tabId => ({
106
title: t(tabs[tabId].titleKey),
0 commit comments