|
| 1 | +import { defineMessages } from '@openedx/frontend-base'; |
| 2 | + |
| 3 | +const messages = defineMessages({ |
| 4 | + pageTitle: { |
| 5 | + id: 'instruct.grading.pageTitle', |
| 6 | + defaultMessage: 'Grading Tools', |
| 7 | + description: 'Title for the grading page' |
| 8 | + }, |
| 9 | + configurationAlt: { |
| 10 | + id: 'instruct.grading.configurationAlt', |
| 11 | + defaultMessage: 'Grading Configuration and Settings', |
| 12 | + description: 'Alt text for the configuration icon button' |
| 13 | + }, |
| 14 | + viewGradebook: { |
| 15 | + id: 'instruct.grading.viewGradebook', |
| 16 | + defaultMessage: 'View Gradebook', |
| 17 | + description: 'Text for the button to view the gradebook' |
| 18 | + }, |
| 19 | + singleLearner: { |
| 20 | + id: 'instruct.grading.singleLearner', |
| 21 | + defaultMessage: 'Single Learner', |
| 22 | + description: 'Single Learner button label to display corresponding grading tools' |
| 23 | + }, |
| 24 | + allLearners: { |
| 25 | + id: 'instruct.grading.allLearners', |
| 26 | + defaultMessage: 'All Learners', |
| 27 | + description: 'All learners button label to display corresponding grading tools' |
| 28 | + }, |
| 29 | + descriptionSingleLearner: { |
| 30 | + id: 'instruct.grading.descriptionSingleLearner', |
| 31 | + defaultMessage: 'These grading tools allow for grade review and adjustment for a specific learner on a specific problem.', |
| 32 | + description: 'Description for single learner grading tools' |
| 33 | + }, |
| 34 | + descriptionAllLearners: { |
| 35 | + id: 'instruct.grading.descriptionAllLearners', |
| 36 | + defaultMessage: 'These grading tools allow for grade review and adjustment all enrolled learners on a specific problem. ', |
| 37 | + description: 'Description for all learners grading tools' |
| 38 | + }, |
| 39 | + gradingConfiguration: { |
| 40 | + id: 'instruct.grading.gradingConfiguration', |
| 41 | + defaultMessage: 'Grading Configuration', |
| 42 | + description: 'Title for the grading configuration modal' |
| 43 | + }, |
| 44 | + close: { |
| 45 | + id: 'instruct.grading.modals.close', |
| 46 | + defaultMessage: 'Close', |
| 47 | + description: 'Text for the close button in the grading configuration modal' |
| 48 | + }, |
| 49 | + viewGradingConfiguration: { |
| 50 | + id: 'instruct.grading.viewGradingConfiguration', |
| 51 | + defaultMessage: 'View Grading Configuration', |
| 52 | + description: 'View grading configuration menu item label' |
| 53 | + }, |
| 54 | + viewCourseGradingSettings: { |
| 55 | + id: 'instruct.grading.viewCourseGradingSettings', |
| 56 | + defaultMessage: 'View Course Grading Settings', |
| 57 | + description: 'View course grading settings menu item label' |
| 58 | + }, |
| 59 | +}); |
| 60 | + |
| 61 | +export default messages; |
0 commit comments