File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
packages/main/src/components/AnalyticalTable Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ import {
4343 INVALID_TABLE ,
4444 LIST_NO_DATA ,
4545 NO_DATA_FILTERED ,
46- ROW_EXPANDED ,
47- ROW_COLLAPSED ,
4846 SELECT_ALL ,
4947 SELECT_ALL_PRESS_SPACE ,
5048 SELECT_PRESS_SPACE ,
@@ -212,8 +210,11 @@ const AnalyticalTable = forwardRef<AnalyticalTableDomRef, AnalyticalTablePropTyp
212210 groupedA11yText : i18nBundle . getText ( GROUPED ) ,
213211 selectAllA11yText : i18nBundle . getText ( SELECT_ALL_PRESS_SPACE ) ,
214212 deselectAllA11yText : i18nBundle . getText ( UNSELECT_ALL_PRESS_SPACE ) ,
215- rowExpandedAnnouncementText : i18nBundle . getText ( ROW_EXPANDED ) ,
216- rowCollapsedAnnouncementText : i18nBundle . getText ( ROW_COLLAPSED )
213+ //todo: use translations once they are available
214+ // rowExpandedAnnouncementText: i18nBundle.getText(ROW_EXPANDED),
215+ // rowCollapsedAnnouncementText: i18nBundle.getText(ROW_COLLAPSED)
216+ rowExpandedAnnouncementText : 'Row expanded' ,
217+ rowCollapsedAnnouncementText : 'Row collapsed'
217218 } ,
218219 alternateRowColor,
219220 alwaysShowSubComponent,
You can’t perform that action at this time.
0 commit comments