Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ export const MigrationDashboardsTable: React.FC<MigrationDashboardsTableProps> =
</EuiFlexGroup>
<EuiSpacer size="m" />
<EuiBasicTable<DashboardMigrationDashboard>
tableCaption={i18n.DASHBOARDS_MIGRATION_TABLE_CAPTION}
loading={false}
items={migrationDashboards}
pagination={pagination}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,10 @@ export const NOT_TRANSLATED_DASHBOARD_TOOLTIP = i18n.translate(
defaultMessage: 'Not translated migration dashboard',
}
);

export const DASHBOARDS_MIGRATION_TABLE_CAPTION = i18n.translate(
'xpack.securitySolution.siemMigrations.dashboards.table.caption',
{
defaultMessage: 'Dashboards migration status',
}
);
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ const TranslationResultsTable = React.memo<{
items={items}
columns={columns}
compressed
tableCaption={i18n.DASHBOARD_MIGRATION_SUMMARY_TITLE}
/>
);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ const TranslationResultsTable = React.memo<{
data-test-subj="translatedResultsTable"
items={items}
columns={columns}
tableCaption={i18n.RULE_MIGRATION_SUMMARY_TITLE}
compressed
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ export const MigrationRulesTable: React.FC<MigrationRulesTableProps> = React.mem
itemId={'id'}
data-test-subj={'rules-translation-table'}
columns={rulesColumns}
tableCaption={i18n.RULES_MIGRATION_TABLE_CAPTION}
/>
</>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@

import { i18n } from '@kbn/i18n';

export const RULES_MIGRATION_TABLE_CAPTION = i18n.translate(
'xpack.securitySolution.siemMigrations.rules.table.caption',
{
defaultMessage: 'Rules migration status',
}
);

export const ALREADY_TRANSLATED_RULE_TOOLTIP = i18n.translate(
'xpack.securitySolution.siemMigrations.rules.table.alreadyTranslatedTooltip',
{
Expand Down