@@ -69,27 +69,31 @@ const MENU_ITEMS_INFO = {
69
69
} ,
70
70
SUMMARY : {
71
71
title : i18n . t ( "layout:nav-drawer.menu-item-project-summary" ) ,
72
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.project-summary" ) ,
72
73
id : "navSummary" ,
73
74
orderIndex : 2 ,
74
75
iconfn : ( iconProps ) => < SummaryIcon { ...iconProps } /> ,
75
76
getPath : ( params = { } ) => generatePath ( ROUTES . MAIN . PROJECT_SUMMARY . path , { ...params } ) ,
76
77
} ,
77
78
DATAMANAGER : {
78
79
title : i18n . t ( "layout:nav-drawer.menu-item-data-manager" ) ,
80
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.data-manager" ) ,
79
81
id : "navDataManager" ,
80
82
orderIndex : 3 ,
81
83
iconfn : ( iconProps ) => < StorageIcon { ...iconProps } /> ,
82
84
getPath : ( params = { } ) => generatePath ( ROUTES . MAIN . DATA_MANAGER . path , { ...params } ) ,
83
85
} ,
84
86
PRERARE_DATA : {
85
87
title : i18n . t ( "layout:nav-drawer.menu-item-queries" ) ,
88
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.queries" ) ,
86
89
id : "navPrepareData" ,
87
90
orderIndex : 4 ,
88
91
iconfn : ( iconProps ) => < PollOutlinedIcon { ...iconProps } /> ,
89
92
getPath : ( params = { } ) => generatePath ( ROUTES . MAIN . DATA_EXPLORER . path , { ...params } ) ,
90
93
} ,
91
94
BUILD_MODEL : {
92
95
title : i18n . t ( "layout:nav-drawer.menu-item-build-model" ) ,
96
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.pipelines" ) ,
93
97
id : "navBuildModel" ,
94
98
orderIndex : 5 ,
95
99
iconfn : ( iconProps ) => < BuildIcon { ...iconProps } /> ,
@@ -98,7 +102,7 @@ const MENU_ITEMS_INFO = {
98
102
subItems : [
99
103
{
100
104
title : i18n . t ( "layout:nav-drawer.menu-item-feature-extractor" ) ,
101
- tooltip : i18n . t ( "layout:nav-drawer.menu-item- pipeline-fe-tooltip " ) ,
105
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips. pipeline-fe" ) ,
102
106
id : "navFeatureExtractor" ,
103
107
orderIndex : 1 ,
104
108
iconfn : ( iconProps ) => < FilterAltOutlinedIcon { ...iconProps } /> ,
@@ -107,7 +111,7 @@ const MENU_ITEMS_INFO = {
107
111
} ,
108
112
{
109
113
title : i18n . t ( "layout:nav-drawer.menu-item-pipeline-custom" ) ,
110
- tooltip : i18n . t ( "layout:nav-drawer.menu-item- pipeline-custom-tooltip " ) ,
114
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips. pipeline-custom" ) ,
111
115
id : "navPipelineCustom" ,
112
116
orderIndex : 3 ,
113
117
iconfn : ( iconProps ) => < ModelTrainingOutlinedIcon { ...iconProps } fontSize = "medium" /> ,
@@ -118,7 +122,7 @@ const MENU_ITEMS_INFO = {
118
122
} ,
119
123
{
120
124
title : i18n . t ( "layout:nav-drawer.menu-item-pipeline-automl" ) ,
121
- tooltip : i18n . t ( "layout:nav-drawer.menu-item- pipeline-automl-tooltip " ) ,
125
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips. pipeline-automl" ) ,
122
126
id : "navPipelineAutoML" ,
123
127
orderIndex : 2 ,
124
128
iconfn : ( iconProps ) => < AutoModeOutlinedIcon { ...iconProps } /> ,
@@ -131,27 +135,31 @@ const MENU_ITEMS_INFO = {
131
135
} ,
132
136
MODELS : {
133
137
title : i18n . t ( "layout:nav-drawer.menu-item-models" ) ,
138
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.models" ) ,
134
139
id : "navOpenModel" ,
135
140
orderIndex : 6 ,
136
141
iconfn : ( iconProps ) => < DataObjectOutlinedIcon { ...iconProps } /> ,
137
142
getPath : ( params = { } ) => generatePath ( ROUTES . MAIN . MODEL_SELECT . path , { ...params } ) ,
138
143
subItems : [
139
144
{
140
145
title : i18n . t ( "layout:nav-drawer.menu-item-explore-model" ) ,
146
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.explore-model" ) ,
141
147
id : "navExploreModel" ,
142
148
orderIndex : 7 ,
143
149
iconfn : ( iconProps ) => < ExploreIcon { ...iconProps } /> ,
144
150
getPath : ( params = { } ) => generatePath ( ROUTES . MAIN . MODEL_EXPLORE . path , { ...params } ) ,
145
151
} ,
146
152
{
147
153
title : i18n . t ( "layout:nav-drawer.menu-item-test-model" ) ,
154
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.test-model" ) ,
148
155
id : "navTestModel" ,
149
156
orderIndex : 8 ,
150
157
iconfn : ( iconProps ) => < PlaylistAddCheckIcon { ...iconProps } /> ,
151
158
getPath : ( params = { } ) => generatePath ( ROUTES . MAIN . MODEL_TEST . path , { ...params } ) ,
152
159
} ,
153
160
{
154
161
title : i18n . t ( "layout:nav-drawer.menu-item-download-model" ) ,
162
+ tooltip : i18n . t ( "layout:nav-drawer-tooltips.download-model" ) ,
155
163
id : "navDownloadModel" ,
156
164
orderIndex : 9 ,
157
165
iconfn : ( iconProps ) => < CloudDownloadIcon { ...iconProps } /> ,
0 commit comments