* fix: downgrade jest to avoid a date bug * chore: add paragon icons and components to mocks * chore: top-level formatDate util * chore: redux transform hooks * chore: add top-level data selectors * chore: redux hooks * refactor: update GradebookHeader component * refactor: update GradebookFilters components * refactor: update BulkManagementControls * refactor: update EditModal component * refactor: update FilterMenuToggle * refactor: update FilteredUsersLabel; * refactor: update GradebookTable * refactor: update ImportSuccessToast * refactor: update PageButtons * refactor: update FilterBadges * refactor: update ScoreViewInput * refactor: update InterventionsReport * refactor: update SearchControls * refactor: update StatusAlerts * chore: fix text name * refactor: update SpinnerIcon * chore: remove stale component * refactor: update GradesView top component * chore: remove old snapshots * chore: update package-lock to node 18
22 lines
876 B
JavaScript
22 lines
876 B
JavaScript
import { defineMessages } from '@edx/frontend-platform/i18n';
|
|
|
|
const messages = defineMessages({
|
|
title: {
|
|
id: 'gradebook.GradesView.InterventionsReport.title',
|
|
defaultMessage: 'Interventions Report',
|
|
description: 'The title for the Intervention report subsection',
|
|
},
|
|
description: {
|
|
id: 'gradebook.GradesView.InterventionsReport.description',
|
|
defaultMessage: 'Need to find students who may be falling behind? Download the interventions report to obtain engagement metrics such as section attempts and visits.',
|
|
description: 'The description for the Intervention report subsection',
|
|
},
|
|
downloadBtn: {
|
|
id: 'gradebook.GradesView.InterventionsReport.downloadBtn',
|
|
defaultMessage: 'Download Interventions',
|
|
description: 'The labeled button to download the Intervention report from the Grades View',
|
|
},
|
|
});
|
|
|
|
export default messages;
|