* feat: add checklist page * fix: failing tests * fix: styling bugs * fix: lint errors * feat: add test fro CourseChecklist * fix: lint errors * feat: add ChecklistSection tests * fix: lint error * fix: missing api reply status
50 lines
1.9 KiB
JavaScript
50 lines
1.9 KiB
JavaScript
import { defineMessages } from '@edx/frontend-platform/i18n';
|
|
|
|
const messages = defineMessages({
|
|
pageTitle: {
|
|
id: 'course-authoring.export.page.title',
|
|
defaultMessage: '{headingTitle} | {courseName} | {siteName}',
|
|
},
|
|
headingTitle: {
|
|
id: 'course-authoring.course-checklist.heading.title',
|
|
defaultMessage: 'Checklists',
|
|
description: 'Header text for the Checklist page',
|
|
},
|
|
headingSubtitle: {
|
|
id: 'course-authoring.course-checklist.heading.subtitle',
|
|
defaultMessage: 'Tools',
|
|
},
|
|
launchChecklistLabel: {
|
|
id: 'launchChecklistLabel',
|
|
defaultMessage: 'Launch checklist',
|
|
description: 'Header text for a checklist that describes actions to have completed before a course should launch',
|
|
},
|
|
bestPracticesChecklistLabel: {
|
|
id: 'bestPracticesChecklistLabel',
|
|
defaultMessage: 'Best practices checklist',
|
|
description: 'Header text for a checklist that describes best practices for a course',
|
|
},
|
|
launchChecklistLoadingLabel: {
|
|
id: 'doneLoadingChecklistStatusLabel',
|
|
defaultMessage: 'Launch Checklist data is loading',
|
|
description: 'Label telling the user that the Launch Checklist is loading',
|
|
},
|
|
launchChecklistDoneLoadingLabel: {
|
|
id: 'launchChecklistDoneLoadingLabel',
|
|
defaultMessage: 'Launch Checklist data is done loading',
|
|
description: 'Label telling the user that the Launch Checklist is done loading',
|
|
},
|
|
bestPracticesChecklistLoadingLabel: {
|
|
id: 'bestPracticesChecklistLoadingLabel',
|
|
defaultMessage: 'Best Practices Checklist data is loading',
|
|
description: 'Label telling the user that the Best Practices Checklist is loading',
|
|
},
|
|
bestPracticesChecklistDoneLoadingLabel: {
|
|
id: 'bestPracticesChecklistDoneLoadingLabel',
|
|
defaultMessage: 'Best Practices Checklist data is done loading',
|
|
description: 'Label telling the user that the Best Practices Checklist is done loading',
|
|
},
|
|
});
|
|
|
|
export default messages;
|