* move GradesTab and BulkHistoryTab to views and control from container through redux * add data logic for view control and import success toast * add NetworkButton component for download/upload buttons * remove download button from Bulk History view and update heading and help text * add View control button to GradebookHeader if bulk management available * remove FilterMenuToggle from SearchControls * update BulkManagementControls to now include upload/download grades buttons * add Import Success toast * rename UserLabel to FilteredUsersLabel for clarity * add InterventionsReport component * update GradesView top-level component * messageing update (separate messages into per-component files) * style updates * update test plan * clean up css and add docstrings * typo fix * fix typo in bulk management view header
27 lines
889 B
JavaScript
27 lines
889 B
JavaScript
import { defineMessages } from '@edx/frontend-platform/i18n';
|
|
|
|
const messages = defineMessages({
|
|
adjustedGradeHeader: {
|
|
id: 'gradebook.GradesView.EditModal.Overrides.adjustedGradeHeader',
|
|
defaultMessage: 'Adjusted grade',
|
|
description: 'Edit Modal Override Table Adjusted grade column header',
|
|
},
|
|
dateHeader: {
|
|
id: 'gradebook.GradesView.EditModal.Overrides.dateHeader',
|
|
defaultMessage: 'Date',
|
|
description: 'Edit Modal Override Table Date column header',
|
|
},
|
|
graderHeader: {
|
|
id: 'gradebook.GradesView.EditModal.Overrides.graderHeader',
|
|
defaultMessage: 'Grader',
|
|
description: 'Edit Modal Override Table Grader column header',
|
|
},
|
|
reasonHeader: {
|
|
id: 'gradebook.GradesView.EditModal.Overrides.reasonHeader',
|
|
defaultMessage: 'Reason',
|
|
description: 'Edit Modal Override Table Reason column header',
|
|
},
|
|
});
|
|
|
|
export default messages;
|