Skip to content

Commit 6b40621

Browse files
committed
disable translations until they are available
1 parent 8f09dd2 commit 6b40621

File tree

1 file changed

+5
-4
lines changed
  • packages/main/src/components/AnalyticalTable

1 file changed

+5
-4
lines changed

packages/main/src/components/AnalyticalTable/index.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)