|
12 | 12 | :label="$t('leftDrawer.home.main')" |
13 | 13 | to="/" |
14 | 14 | icon="home" |
15 | | - caption="Start Here" |
| 15 | + :caption="$t('leftDrawer.home.sub')" |
16 | 16 | /> |
17 | 17 |
|
18 | 18 | <left-menu-link |
19 | | - label="About" |
| 19 | + :label="$t('leftDrawer.about.main')" |
20 | 20 | to="/about" |
21 | 21 | icon="info" |
22 | | - caption="About this site" |
| 22 | + :caption="$t('leftDrawer.about.sub')" |
23 | 23 | /> |
24 | 24 |
|
25 | 25 | <left-menu-link |
26 | | - label="Protected" |
| 26 | + :label="$t('leftDrawer.protected.main')" |
27 | 27 | to="/protected" |
28 | 28 | icon="lock" |
29 | | - caption="This page is private" |
| 29 | + :caption="$t('leftDrawer.protected.sub')" |
30 | 30 | /> |
31 | 31 |
|
32 | 32 | <left-menu-link |
33 | | - label="To-Do" |
| 33 | + :label="$t('leftDrawer.toDo.main')" |
34 | 34 | to="/to-do" |
35 | 35 | icon="check" |
36 | | - caption="Site To-Do List" |
| 36 | + :caption="$t('leftDrawer.toDo.sub')" |
37 | 37 | /> |
38 | 38 |
|
39 | 39 | <left-menu-link |
40 | 40 | v-if="$store.getters.isAuthenticated" |
41 | | - label="Services" |
| 41 | + :label="$t('leftDrawer.services.main')" |
42 | 42 | to="/services" |
43 | 43 | icon="insert_chart_outlined" |
44 | | - caption="Monitoring, admin, metadata" |
| 44 | + :caption="$t('leftDrawer.services.sub')" |
45 | 45 | /> |
46 | 46 | <q-expansion-item |
47 | 47 | :content-inset-level="0.5" |
48 | 48 | v-if="$store.getters.isAuthenticated" |
49 | 49 | expand-separator |
50 | 50 | icon="perm_identity" |
51 | | - label="Examples" |
52 | | - caption="REST, Websockets, " |
| 51 | + :label="$t('leftDrawer.examples.main')" |
| 52 | + :caption="$t('leftDrawer.tests.sub')" |
53 | 53 | > |
54 | 54 | <left-menu-link |
55 | | - label="Services" |
| 55 | + :label="$t('leftDrawer.examples.websockets.main')" |
56 | 56 | to="/examples/websockets" |
57 | 57 | icon="offline_bolt" |
58 | | - caption="How to use websockets" |
| 58 | + :caption="$t('leftDrawer.examples.websockets.sub')" |
59 | 59 | /> |
60 | 60 | </q-expansion-item> |
61 | 61 | <q-expansion-item |
62 | 62 | :content-inset-level="0.5" |
63 | 63 | v-if="$store.getters.isAuthenticated" |
64 | 64 | expand-separator |
65 | 65 | icon="check_circle" |
66 | | - label="Tests" |
67 | | - caption="Debug Tests" |
| 66 | + :label="$t('leftDrawer.tests.main')" |
| 67 | + :caption="$t('leftDrawer.tests.main')" |
68 | 68 | > |
69 | 69 | <left-menu-link |
70 | | - label="Redis" |
| 70 | + :label="$t('leftDrawer.tests.redis.main')" |
71 | 71 | to="/examples/redis" |
72 | 72 | icon="offline_bolt" |
73 | | - caption="Test redis connection" |
| 73 | + :caption="$t('leftDrawer.tests.redis.sub')" |
74 | 74 | /> |
75 | 75 | </q-expansion-item> |
76 | 76 | <left-menu-link |
77 | | - label="Environment Variables" |
| 77 | + :label="$t('leftDrawer.environment.main')" |
78 | 78 | to="/debug/environment-variables" |
79 | 79 | icon="offline_bolt" |
80 | | - caption="Displays Environment Variables for Debug Purposes" |
| 80 | + :caption="$t('leftDrawer.environment.main')" |
81 | 81 | /> |
82 | 82 | </q-list> |
83 | 83 | </q-drawer> |
|
0 commit comments